/*
=================================================================================
 CÓDIGO ATUALIZADO com a "Luz" interativa no hover
=================================================================================
*/

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    background-color: #000000; 
    color: #E0E0E0;
    overflow: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Configuração do Container de Links */
.container {
    max-width: 600px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    margin: 20px auto;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    .footer b {
    color: #0087ad; /* Cor dos triângulos */
    font-weight: 600; /* Garante que o negrito seja visível */
}
    
    /* ============================================================= */
    /* A MUDANÇA #1 ESTÁ AQUI                                        */
    /* ============================================================= */
    /* No estado padrão, definimos apenas a sombra preta de profundidade. */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    
    /* E adicionamos uma transição para que a mudança da sombra seja suave. */
    transition: box-shadow 0.4s ease-out;
}

/* ================================================================= */
/* A MUDANÇA #2 ESTÁ AQUI                                            */
/* ================================================================= */
/* Esta nova regra define o que acontece quando o mouse está EM CIMA. */
.container:hover {
    /* Mantemos a sombra preta e ADICIONAMOS a luz na cor dos triângulos.
       - A cor rgba(0, 135, 173) é o equivalente a #0087ad dos triângulos.
       - A opacidade de 0.4 deixa o brilho sutil. */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0px 0px 35px 0px rgba(0, 135, 173, 0.4);
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Estilos do seu conteúdo (logo, botões, etc.) --- */
.logo { border-radius: 0; width: 250px; height: auto; border: none; margin-bottom: 20px; }
.name { font-size: 2.5em; font-weight: 700; margin-bottom: 8px; }
.bio { font-size: 1.1em; color: #A0A0A0; margin-bottom: 30px; line-height: 1.5; }
.links-list { list-style: none; padding: 0; margin: 0; }
.links-list li { margin-bottom: 18px; }
.link-button { display: flex; justify-content: center; align-items: center; padding: 15px 25px; background-color: #0087ad; color: #FFFFFF; text-decoration: none; border-radius: 12px; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); transition: all 0.3s ease-in-out; font-weight: 600; font-size: 1.1em; border: none; cursor: pointer; width: 100%; box-sizing: border-box; }
.link-button:hover { background-color: #007bff; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5); }
.footer { margin-top: 40px; font-size: 0.9em; color: #A0A0A0; opacity: 0.8; }

/* --- Mídia Queries para responsividade --- */
@media (max-width: 768px) { .logo { width: 200px; } .name { font-size: 2em; } }
@media (max-width: 480px) { .container { padding: 25px 15px; margin: 15px; } .logo { width: 150px; } .name { font-size: 1.8em; } }