/* Variáveis de Cores (A Paleta do Poder) */
:root {
    --bg-color: #050505;
    --surface-color: #121212;
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.4);
    --text-light: #F5EBDD;
    --text-muted: #888;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lora', serif; /* Usando Lora para corpo de texto dá um ar de livro antigo */
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: radial-gradient(circle at center, #1a150b 0%, var(--bg-color) 70%);
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 2s ease-out forwards;
}

.kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0px 4px 20px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    font-style: italic;
}

/* Indicador de rolagem animado */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.scroll-indicator .line {
    width: 2px;
    height: 70px;
    background-color: var(--gold);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- TITULOS DAS SEÇÕES --- */
.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* --- GALERIA HORIZONTAL (DOCK EFFECT) --- */
.gallery-section {
    padding: 4rem 0;
    overflow: hidden; /* Impede que o site fique com rolagem lateral quebrando o layout */
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 400;
}

.section-title01 {
    font-family: var(--font-serif);
    font-size: 100 px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 400;
}

.gallery-container {
    display: flex;
    /* Aumentamos o espaçamento (gap) entre as imagens significativamente */
    gap: 6rem; 
    padding: 4rem 0; /* Espaço em cima e embaixo para a imagem ter espaço para crescer */
    overflow-x: hidden; /* Escondemos a barra de rolagem, o JS vai mover sozinho */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    align-items: center;
}

.gallery-item {
    flex: 0 0 240px; /* Largura base das imagens */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* Otimização para a placa de vídeo processar a animação suavemente: */
    will-change: transform, opacity; 
}

.gallery-item img {
    width: 100%;
    height: 450px; /* Altura um pouco menor para dar margem ao crescimento */
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--gold-dim);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.gallery-item p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-light);
    font-size: 1.2rem;
    text-align: center;
}
/* --- CITAÇÕES --- */
.quotes-section {
    padding: 6rem 2rem;
    background-color: var(--surface-color);
    text-align: center;
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
}

.quote-box i {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.quote-box blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.quote-box cite {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-style: normal;
}

/* --- PLAYER DE ÁUDIO CUSTOMIZADO --- */
.audio-section {
    padding: 6rem 2rem;
    text-align: center;
}

.audio-desc {
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.custom-player {
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--gold-dim);
    border-radius: 50px;
    padding: 10px 20px 10px 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--bg-color);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.player-info {
    flex: 1;
    text-align: left;
}

.track-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.progress-container {
    width: 100%;
    height: 3px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 2px;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--gold);
    position: relative;
}
.progress-bar::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 9px;
    height: 9px;
    background: var(--text-light);
    border-radius: 50%;
}

/* --- BOTÃO CTA OUSADO --- */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(to top, var(--surface-color), var(--bg-color));
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Estética do Botão: Bordas cortadas (Oblique) */
.btn-oblique {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* O Segredo da forma ousada */
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.btn-oblique::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-oblique:hover {
    color: var(--bg-color);
    font-weight: bold;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-oblique:hover::before {
    left: 0;
}

.btn-arrow {
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.btn-oblique:hover .btn-arrow {
    transform: translateX(10px);
}

/* --- RODAPÉ --- */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

footer p {
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.5;
    max-width: 600px;
    margin: 0 auto;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04; /* Quase invisível, mas o cérebro percebe a textura */
   
}

/* 2. REVELAÇÃO CINEMATOGRÁFICA (SCROLL) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 3. MOUSE BESPOKE (ESCONDE O MOUSE PADRÃO) */
/* Esconde o ponteiro padrão no PC para mostrar o de ouro */
@media (pointer: fine) {
    body, a, button, .progress-container {
        cursor: none !important; 
    }
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none; /* Para não atrapalhar o clique real */
}

/* O ponto denso no meio */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
}

/* O anel fantasma que segue o ponto com atraso elegante */
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Quando passa por cima de um botão, o anel encolhe e fica sólido */
.cursor-outline.hovering {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

/* 🔥 ESTILO DAS MÃOS DIVINAS (O FANTASMA DOURADO - SEU CÓDIGO ORIGINAL) 🔥 */
.hero-bg-hands {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 100vw;
    height: 100vh;
    object-fit: cover; 
    
    z-index: 1; 
    opacity: 0.35; 
    
    filter: grayscale(100%) brightness(80%) sepia(50%) hue-rotate(-10deg); 
    mix-blend-mode: screen; 

    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 80%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 80%);
    
    pointer-events: none;
}

/* 🔥 O AJUSTE INTELIGENTE PARA CELULARES 🔥 */
@media (max-width: 768px) {
    .hero-bg-hands {
        /* No celular, reduzimos a altura pela metade e mudamos a forma de encaixe */
        height: 50vh; 
        top: 45%; /* Subimos um pouquinho para o centro exato da tela do celular */
        object-fit: contain; /* Força as mãos a aparecerem sem o zoom exagerado */
        
        /* Deixamos a máscara um pouco mais "apertada" para o celular */
        -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 70%);
        mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 70%);
    }
}

