/* Usando variáveis para facilitar a customização de cores */
:root {
    --primary-color: #00ff99; /* Verde neon psicodélico */
    --background-color: #000D08; /* Verde reduzido em 50%, muito mais próximo do preto */
    --text-color: #e0e0e0;
    --card-color: #000000; /* Fundo das caixas em preto puro */
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* --- ESTILO PARA O FUNDO COM VÍDEO --- */

#background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

#background-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.05;
    mix-blend-mode: multiply; 
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: contrast(1.2) saturate(1.2); 
}

/* --- FIM DAS ALTERAÇÕES --- */

/* Container que segura o conteúdo principal */
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent; 
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.hero { 
    background-image: url('../images/header-image.png'); 
    height: 40vh; 
    min-height: 360px; 
    background-size: contain; 
    background-position: center center; 
    background-repeat: no-repeat; 
    margin-bottom: 0px; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: none; 
    border-radius: 0; 
    background-color: transparent; 
    animation: header-pulse-glow 5s ease-in-out infinite;
}

.artist-photo-container { text-align: center; margin: -50px 0 40px 0; position: relative; z-index: 10; }
.artist-photo { 
    max-width: 300px; 
    width: 70%; 
    height: auto; 
    border-radius: 50%; 
    object-fit: cover; 
    transition: transform 0.3s ease-in-out; 
    animation: photo-pulse 6s ease-in-out infinite;
}
.artist-photo:hover { transform: scale(1.05); }

section { 
    background-color: var(--card-color); 
    padding: 25px; 
    margin-bottom: 30px; 
    border-radius: 8px; 
    border-left: 5px solid var(--primary-color); 
}
#about { background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../images/bio-fractal.jpg'); background-size: cover; background-position: center center; position: relative; }
#about p { color: #ffffff; position: relative; z-index: 2; animation: pulse-glow 4s ease-in-out infinite; }

@keyframes pulse-glow { 
    0% { text-shadow: 0 0 5px #000, 0 0 8px #000, 0 0 7px var(--primary-color); transform: scale(1); } 
    50% { text-shadow: 0 0 5px #000, 0 0 8px #000, 0 0 15px var(--primary-color), 0 0 25px var(--primary-color); transform: scale(1.02); } 
    100% { text-shadow: 0 0 5px #000, 0 0 8px #000, 0 0 7px var(--primary-color); transform: scale(1); } 
}

@keyframes header-pulse-glow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 7px var(--primary-color));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 10px var(--primary-color)) drop-shadow(0 0 15px var(--primary-color));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 7px var(--primary-color));
    }
}

@keyframes photo-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

h2 { color: var(--primary-color); border-bottom: 2px solid #333; padding-bottom: 10px; margin-bottom: 15px;  }
h2:not(:first-of-type) { margin-top: 50px; }
.player-box { margin-bottom: 0; }
iframe { border: none; width: 100%; display: block; }
.platform-box { text-align: center; }
.platform-logo { height: 50px; width: auto; margin-top: 15px; transition: transform 0.3s ease-in-out; }
.platform-logo:hover { transform: scale(1.1); filter: drop-shadow(0 0 8px var(--primary-color)); }

.contact-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.contact-button { 
    display: inline-flex; 
    align-items: center;
    justify-content: center; /* Garante a centralização interna */
    gap: 10px; 
    padding: 12px 25px; 
    color: #000; 
    font-weight: bold; 
    text-decoration: none; 
    border-radius: 5px; 
    transition: all 0.3s; 
    cursor: pointer;
    box-sizing: border-box;
}

.contact-button.email {
    background-color: var(--primary-color);
}
.contact-button.whatsapp { 
    background-color: var(--primary-color); 
}
.contact-button:hover { 
    filter: brightness(1.2); 
    transform: scale(1.05);
}

.contact-button i {
    font-size: 1.2rem;
}

.email-address {
    padding-left: 0.25em;
}

.downloads { text-align: center; margin-top: 30px; }
.download-icon { width: 80px; transition: transform 0.3s; }
.download-icon:hover { transform: scale(1.1); }

/* ESTILO PARA A IMAGEM DO ESTÚDIO */
#studio-image-section {
    padding: 0;
    background-color: transparent;
    border: none;
    margin-bottom: 50px;
}

#studio-image-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ESTILO PARA ÍCONES SOCIAIS */
#social-links {
    padding: 20px 25px;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-wrap: wrap; 
    gap: 25px; 
}

.social-icon {
    height: 35px;
    width: auto;
    transition: all 0.3s ease-in-out; 
}

.social-icon:hover {
    transform: scale(1.2); 
    filter: drop-shadow(0 0 8px var(--primary-color)); 
}

.white-filter-icon {
    filter: brightness(0) invert(1); 
}

.white-filter-icon:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--primary-color));
}

.email-button-wrapper {
    position: relative;
    display: inline-block;
}

.copy-tooltip {
    position: absolute;
    bottom: 100%; 
    left: 50%;
    transform: translateX(-50%);
    
    background-color: var(--card-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    margin-bottom: 10px;
    
    pointer-events: none;
    
    animation: fade-in-out 4s ease-in-out infinite;
}

@keyframes fade-in-out {
    0% { opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; }
}

.translation-container {
    text-align: center;
    margin-bottom: 40px;
}

.translate-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.translate-button:hover {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
}

#materials {
    text-align: center;
    padding: 25px;
}

.password-notice {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.download-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: auto;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.download-button:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
    box-shadow: 0 0 15px var(--primary-color);
}

.download-button i {
    font-size: 1.5rem;
}

#materials {
    border-left: none;
}

footer { 
    text-align: center; 
    padding-top: 40px;
    padding-bottom: 20px;
    border-top: 1px solid #333; 
    margin-top: 50px;
}

.footer-logo {
    height: 166px; 
    width: auto;
    margin-bottom: 20px;
    opacity: 0.8;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

#video-feature {
    padding: 0;
    aspect-ratio: 16 / 9;
}

#video-feature .player-box {
    height: 100%;
    margin-bottom: 0;
}

/* --- ESTILOS PARA DISPOSITIVOS MÓVEIS --- */
@media (max-width: 768px) {
    .desktop-video { display: none; }
    .mobile-video { display: block; }

    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
    }

    .hero {
        min-height: 250px;
    }

    .artist-photo {
        width: 50%;
        max-width: 200px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .contact-button {
        padding: 12px 15px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .contact-button.email #email-button-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
    }

    .email-address {
        font-size: 0.75rem;
    }

    #music iframe[src*="spotify"] {
        height: 152px;
    }

    .download-button {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .download-button i {
        font-size: 1.2rem;
    }

    .footer-logo {
        height: 120px;
    }

    #about p {
        font-size: 0.8rem;
        line-height: 1.4;
        animation: none;
        text-shadow: 0 0 5px #000;
    }

    #about {
        background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../images/bio-fractal-vertical.png');
    }
    
    /* --- CORREÇÃO FINAL E DEFINITIVA PARA A SEÇÃO DE CONTATO --- */
    #contact {
        text-align: center; /* Centraliza todo o conteúdo da seção */
    }

    .contact-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .copy-tooltip {
        display: none;
    }

    .email-button-wrapper::before {
        content: "Clique para copiar o E-mail";
        display: block;
        color: var(--primary-color);
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 15px;
        animation: fade-in-out 4s ease-in-out infinite;
    }

    .contact-button.email {
        min-width: 240px;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .desktop-video { display: block; }
    .mobile-video { display: none; }
}