/* =========================================
   1. VARIÁVEIS & CONFIGURAÇÕES GERAIS (V1)
   ========================================= */
:root {
    /* Paleta de Cores: Dark Burgundy & Gold V1 */
    --bg-deep: #1a0505;       /* Fundo quase preto */
    --bg-rich: #2e0808;       /* Fundo vinho profundo */
    
    /* Gradiente Dourado Metálico */
    --gold-start: #bf953f;
    --gold-mid: #fcf6ba;      /* O brilho principal */
    --gold-end: #b38728;
    
    /* Elementos de Vidro */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(212, 175, 55, 0.3);
    
    /* Fontes Oficiais */
    --font-heading: 'Cinzel', serif;      /* Luxo / Romano */
    --font-body: 'Montserrat', sans-serif; /* Leitura Moderna */
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-deep);
    /* Fundo com "Spotlight" no topo */
    background: radial-gradient(circle at center top, var(--bg-rich), var(--bg-deep) 80%);
    color: #f5f5f5;
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* =========================================
   2. PRELOADER (TELA DE CARREGAMENTO)
   ========================================= */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 1s ease;
}
.loader-content { text-align: center; }
.rose-icon-load {
    font-size: 3rem; color: var(--gold-start);
    animation: pulse 2s infinite; margin-bottom: 15px;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; text-shadow: 0 0 20px var(--gold-start); }
    100% { transform: scale(1); opacity: 0.7; }
}

/* =========================================
   3. TIPOGRAFIA & UTILITÁRIOS
   ========================================= */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }

/* Texto Dourado com Brilho */
.text-gold {
    background: linear-gradient(to right, var(--gold-start), var(--gold-mid), var(--gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
}

/* =========================================
   4. HEADER DE VIDRO (V1)
   ========================================= */
header {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    transition: 0.4s ease;
}

header.scrolled {
    background: rgba(26, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    padding: 15px 5%; border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-container {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-heading); color: var(--gold-mid);
    letter-spacing: 2px; font-size: 1.2rem;
}
.rose-logo { color: var(--gold-start); font-size: 1.4rem; }

.desktop-nav a {
    color: #e0e0e0; text-decoration: none; margin-left: 30px;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    transition: 0.3s; position: relative;
}
.desktop-nav a:hover { color: var(--gold-mid); text-shadow: 0 0 8px rgba(191,149,63,0.6); }

/* Menu Hamburguer Mobile */
.mobile-menu-icon { display: none; color: var(--gold-mid); font-size: 1.5rem; cursor: pointer; }

/* =========================================
   5. HERO SECTION (CAPA COM ANIMAÇÃO)
   ========================================= */
#hero {
    height: 100vh; position: relative;
    display: flex; justify-content: center; align-items: center; text-align: center;
    overflow: hidden; padding: 0 20px;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle, transparent 30%, #000 100%); z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

/* Animação da Rosa Dourada Flutuante */
.hero-rose-anim {
    font-size: 4.5rem;
    background: linear-gradient(to bottom, var(--gold-mid), var(--gold-end));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 25px; display: inline-block;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: floatRose 5s ease-in-out infinite;
}
@keyframes floatRose {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-tag {
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 4px;
    color: var(--gold-start); margin-bottom: 20px; opacity: 0.9;
}

.main-title {
    font-size: 3.5rem; line-height: 1.2; margin-bottom: 25px;
    letter-spacing: 3px;
}

.subtitle {
    font-size: 1.2rem; color: #ccc; margin-bottom: 45px;
    font-weight: 300; max-width: 700px; margin-left: auto; margin-right: auto;
}

/* =========================================
   6. BOTÕES DE LUXO (V1)
   ========================================= */
.cta-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn {
    padding: 16px 40px; border-radius: 50px; text-decoration: none;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s; display: flex; align-items: center; gap: 10px;
    border: none; cursor: pointer; font-family: var(--font-body);
}

.btn-gold {
    background: linear-gradient(45deg, var(--gold-start), var(--gold-end));
    color: var(--bg-deep);
    box-shadow: 0 0 25px rgba(191, 149, 63, 0.3);
}
.btn-gold:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(191, 149, 63, 0.6); color: #000; }

.btn-glass {
    background: rgba(255,255,255,0.05); border: 1px solid var(--gold-start);
    color: var(--gold-mid); backdrop-filter: blur(5px);
}
.btn-glass:hover { background: rgba(191, 149, 63, 0.2); color: #fff; }

/* =========================================
   7. SEÇÕES GERAIS
   ========================================= */
.section-padding { padding: 90px 5%; }
.title-wrapper { text-align: center; margin-bottom: 60px; }

.section-title {
    font-size: 2.8rem; color: var(--gold-mid); margin-bottom: 15px;
    letter-spacing: 3px; display: flex; align-items: center; justify-content: center;
}
.line-gold {
    display: block; height: 1px; width: 60px; background: var(--gold-start); margin: 0 20px;
}
.section-desc { color: #aaa; font-size: 1.1rem; }

/* =========================================
   8. CARDS PROSPERAFLIX (NETFLIX STYLE)
   ========================================= */
.netflix-carousel { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }

.netflix-card {
    width: 320px; height: 180px; position: relative; border-radius: 8px;
    overflow: hidden; cursor: pointer; border: 1px solid transparent;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px #000;
}
.netflix-card:hover {
    transform: scale(1.1); z-index: 10; border-color: var(--gold-start);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.card-image {
    width: 100%; height: 100%; background-size: cover; background-position: center;
    filter: brightness(0.6); transition: 0.4s;
}
.netflix-card:hover .card-image { filter: brightness(1); }

.card-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px;
    background: linear-gradient(to top, #000 10%, transparent);
    opacity: 0; transition: 0.3s; transform: translateY(10px);
}
.netflix-card:hover .card-info { opacity: 1; transform: translateY(0); }

.card-info h3 { font-size: 1.1rem; color: var(--gold-mid); margin-bottom: 5px; }
.card-info p { font-size: 0.8rem; color: #ddd; margin-bottom: 10px; }

.btn-sm {
    font-size: 0.7rem; padding: 6px 12px; background: #fff; color: #000;
    border-radius: 4px; text-decoration: none; font-weight: bold; text-transform: uppercase;
}

/* =========================================
   9. LOJA DA DEUSA (LAYOUT V2 + VISUAL V1)
   ========================================= */
.bg-texture {
    background-color: #0f0202; position: relative;
}
.bg-texture::before {
    content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(circle, rgba(191, 149, 63, 0.05), transparent 70%);
    pointer-events: none;
}

.content-split {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1100px; margin: 0 auto; gap: 60px;
}
.text-side { flex: 1; }
.image-side { flex: 1; display: flex; justify-content: center; }

.align-left { justify-content: flex-start; margin-left: 0; text-align: left; }
.align-left .line-gold { display: none; } /* Remove linhas no titulo alinhado a esquerda */

.highlight-text {
    font-size: 1.6rem; color: #fff; margin-bottom: 30px; line-height: 1.4;
    border-left: 4px solid var(--gold-start); padding-left: 20px;
}
.mt-30 { margin-top: 30px; display: inline-flex; }

/* Caderno Flutuante */
.floating-book img {
    max-width: 350px; border-radius: 5px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    animation: floatBook 6s ease-in-out infinite;
}
@keyframes floatBook {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* =========================================
   10. AGENDA & EVENTOS
   ========================================= */
.agenda-list { max-width: 800px; margin: 0 auto; }

.agenda-item {
    display: flex; align-items: center; padding: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02); margin-bottom: 15px; border-radius: 8px;
    transition: 0.3s;
}
.agenda-item:hover {
    background: rgba(191, 149, 63, 0.08); border-color: var(--gold-start);
    transform: translateX(10px);
}

.agenda-date {
    text-align: center; margin-right: 30px; color: var(--gold-mid);
    border: 1px solid var(--gold-start); padding: 10px 15px; border-radius: 5px;
    min-width: 80px;
}
.day { font-size: 1.8rem; display: block; font-weight: 700; line-height: 1; }
.month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; }

.agenda-info h3 { font-size: 1.3rem; margin-bottom: 5px; color: #fff; }
.agenda-info p { color: #aaa; font-size: 0.9rem; }

.btn-glass-sm {
    margin-left: auto; padding: 10px 25px; border: 1px solid #666; color: #fff;
    text-decoration: none; font-size: 0.7rem; text-transform: uppercase;
    border-radius: 30px; transition: 0.3s;
}
.btn-glass-sm:hover { border-color: var(--gold-mid); color: var(--gold-mid); }

/* =========================================
   11. FOOTER & WHATSAPP
   ========================================= */
footer {
    background: #0d0202; padding: 60px 5%; text-align: center;
    border-top: 1px solid #222;
}
.rose-logo-footer { font-size: 2rem; color: var(--gold-dark); margin-bottom: 20px; display: inline-block; }
.socials { margin: 20px 0; }
.socials a { color: var(--gold-mid); font-size: 1.5rem; margin: 0 15px; transition: 0.3s; }
.socials a:hover { color: #fff; transform: scale(1.2); }
.copyright { font-size: 0.8rem; color: #555; margin-top: 20px; }

.float-whatsapp {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25d366; color: #FFF; border-radius: 50px;
    text-align: center; font-size: 30px; box-shadow: 2px 2px 10px #000;
    z-index: 100; display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.float-whatsapp:hover { transform: scale(1.1); }

/* =========================================
   12. MODAL DE VÍDEO (CSS V2)
   ========================================= */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); z-index: 3000;
    display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; animation: fadeIn 0.3s; }

.modal-content {
    position: relative; width: 90%; max-width: 900px;
    border: 1px solid var(--gold-start);
    box-shadow: 0 0 50px rgba(191,149,63,0.1); background: #000;
}
.close-modal {
    position: absolute; top: -40px; right: 0; color: #fff;
    font-size: 2.5rem; cursor: pointer; transition: 0.3s;
}
.close-modal:hover { color: var(--gold-mid); transform: rotate(90deg); }

.video-wrapper {
    width: 100%; aspect-ratio: 16/9; background: #050505;
    display: flex; align-items: center; justify-content: center;
}
.placeholder-video { color: #666; text-align: center; }
.circle-play {
    font-size: 4rem; color: var(--gold-start); margin-bottom: 20px;
    border: 2px solid var(--gold-start); border-radius: 50%; padding: 20px 25px;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =========================================
   13. RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .main-title { font-size: 2.2rem; }
    .content-split { flex-direction: column-reverse; text-align: center; }
    .highlight-text { border-left: none; border-bottom: 3px solid var(--gold-start); padding-bottom: 20px; padding-left: 0; }
    
    .desktop-nav { display: none; }
    .mobile-menu-icon { display: block; }
    
    .mobile-nav-overlay {
        height: 100%; width: 0; position: fixed; top: 0; right: 0;
        background: #000; overflow-x: hidden; transition: 0.5s;
        z-index: 3000; padding-top: 60px; text-align: center;
    }
    .mobile-nav-overlay a {
        display: block; padding: 15px; font-size: 1.5rem; color: var(--gold-mid);
        text-decoration: none; font-family: var(--font-heading);
    }
    .mobile-nav-overlay .closebtn { position: absolute; top: 20px; right: 25px; }
    
    .netflix-card { width: 100%; height: 220px; }
    .agenda-item { flex-direction: column; text-align: center; gap: 20px; }
    .agenda-date { margin-right: 0; margin-bottom: 10px; width: 100%; }
    .btn-glass-sm { margin: 0 auto; }
}
/* ==================================================
   CORREÇÃO DE LUXO PARA MOBILE (Final do Arquivo)
   ================================================== */
@media (max-width: 768px) {
    
    /* 1. Soltar o Hero para não encavalar o texto */
    #hero {
        height: auto;           /* Remove a altura fixa de 100vh */
        min-height: 100vh;      /* Garante que cubra a tela inteira */
        padding-top: 130px;     /* Empurra o conteúdo para baixo do menu */
        padding-bottom: 60px;   /* Espaço no final */
        background-attachment: scroll; /* Melhora performance no celular */
    }

    /* 2. Ajustar o tamanho do Título Gigante */
    .main-title {
        font-size: 2.2rem;      /* Reduz de 3.5rem para 2.2rem */
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 10px;        /* Margem lateral de segurança */
    }

    /* 3. Ajustar a Rosa Flutuante */
    .hero-rose-anim {
        font-size: 3.5rem;      /* Um pouco menor para equilibrar */
        margin-bottom: 15px;
    }

    /* 4. Organizar os Botões (Um embaixo do outro) */
    .cta-group {
        flex-direction: column; /* Coluna vertical */
        width: 100%;
        gap: 15px;
    }

    .btn {
        width: 100%;            /* Botão ocupa a largura toda */
        justify-content: center;
        padding: 18px 0;        /* Mais fácil de clicar com o dedo */
    }

    /* 5. Ajustar o Texto de Apoio */
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    /* 6. Garantir que o Menu não tape o Logo */
    header {
        padding: 15px 5%;
        background: rgba(13, 2, 2, 0.95); /* Fundo mais sólido no mobile */
    }
}
/* --- ESTILO DA SEÇÃO "QUEM É VANESSA" --- */

/* Moldura da Foto */
.portrait-frame {
    position: relative;
    padding: 15px;
    border: 1px solid var(--gold-start);
    display: inline-block;
    background: rgba(0,0,0,0.3);
}

.portrait-frame img {
    max-width: 10%;
    width: 150px; /* Tamanho controlado */
    height: auto;
    display: block;
    filter: sepia(20%) contrast(1.1); /* Um tom levemente cinematográfico */
    border: 1px solid rgba(255,255,255,0.1);
}

/* Efeito de brilho atrás da foto */
.frame-glow {
    position: absolute;
    top: -10px; left: -10px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold-dark);
    z-index: -1;
    opacity: 0.6;
    transition: 0.3s;
}
.portrait-frame:hover .frame-glow {
    top: 10px; left: 10px; /* Movimento ao passar o mouse */
    border-color: var(--gold-mid);
}

/* Texto da Bio */
.bio-text {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

/* Caixa de Autoridade (2000 mulheres) */
.authority-box {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(to right, rgba(191, 149, 63, 0.1), transparent);
    border-left: 4px solid var(--gold-start);
    display: flex;
    align-items: center;
    gap: 15px;
}
.authority-box i { font-size: 1.5rem; }
.authority-box p { margin: 0; font-size: 1.1rem; font-family: var(--font-heading); }

/* Ajuste Mobile Específico para essa seção */
@media (max-width: 768px) {
    .reverse-mobile {
        flex-direction: column; /* Foto em cima, texto embaixo */
        gap: 40px;
    }
    .portrait-frame img { width: 100%; }
    .align-left { text-align: center; justify-content: center; } 
    .bio-text { text-align: left; }
}
/* ==================================================
   CORREÇÕES DE USABILIDADE MOBILE (Final do Arquivo)
   ================================================== */
@media (max-width: 768px) {

    /* --- 1. PROSPERAFLIX: Informações Sempre Visíveis --- */
    /* Como não tem mouse no celular, a info tem que aparecer direto */
    .netflix-card .card-info {
        opacity: 1 !important;          /* Força a visibilidade */
        transform: translateY(0) !important; /* Remove a animação de subida */
        background: linear-gradient(to top, #000 60%, transparent); /* Fundo escuro para ler o texto */
    }

    /* Escurece um pouco a imagem para o texto branco brilhar */
    .netflix-card .card-image {
        filter: brightness(0.7); 
    }

    /* --- 2. LOJA DA DEUSA: Ordem Correta (Título em Cima) --- */
    .content-split {
        flex-direction: column !important; /* Tira o 'reverse' que estava invertendo */
    }

    /* Pequeno ajuste para o título não ficar colado na imagem anterior */
    .text-side {
        margin-bottom: 20px;
    }
    
    .section-title.align-left {
        text-align: center; /* Centraliza o título no celular para ficar mais harmônico */
        width: 100%;
        display: block;
    }
    
    .highlight-text {
        text-align: center;
        border-left: none; /* Remove a barra lateral no mobile */
        border-bottom: 2px solid var(--gold-start); /* Coloca a barra embaixo */
        padding-bottom: 15px;
        padding-left: 0;
    }
}