 
/*
Theme Name: Real Cipó Eventos - Premium
Theme URI: https://realcipoeventos.com.br
Author: Attiva
Description: Tema sob medida focado em SEO e Core Web Vitals para o Real Cipó Eventos.
Version: 1.0
Text Domain: realcipo
*/

/* ==========================================================================
   1. VARIÁVEIS & RESET GLOBAL
   ========================================================================== */
:root {
    --primary-gold: #D4AF37;       /* Dourado Principal (Luxo) */
    --dark-gold: #B8941E;          /* Dourado Escuro (Contraste) */
    --cream: #F5F1E8;              /* Creme Suave (Papel) */
    --charcoal: #2C2C2C;           /* Cinza Carvão (Texto) */
    --dark-bg: #1a1a1a;            /* Preto Padrão */
    --botanical-black: #0F1210;    /* Preto Esverdeado (Fundo Premium) */
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    overflow-x: hidden; /* Evita rolagem lateral */
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================================================
   2. NAVBAR PREMIUM & MENU MOBILE
   ========================================================================== */
/* --- Estado Inicial (Transparente) --- */
.navbar-premium {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    box-shadow: none;
    border-bottom: 1px solid transparent;
}

/* --- Estado Scrolled (Ultra Glassmorphism) --- */
.navbar-premium.scrolled {
    background: rgba(15, 18, 16, 0.6); /* Preto Botânico Transparente */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

/* --- ESTILIZAÇÃO DO SUBMENU (NAVWALKER) --- */
.dropdown-menu {
    background: rgba(15, 18, 16, 0.95) !important; /* Preto Botânico Sólido */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Borda Dourada Fina */
    border-radius: 8px;
    padding: 1rem 0;
    margin-top: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1); /* Dourado Sutil no Hover */
    color: var(--primary-gold) !important;
    padding-left: 1.8rem; /* Efeito de deslize premium */
}

/* Seta do Dropdown (Opcional) */
.dropdown-toggle::after {
    border-top-color: var(--primary-gold) !important;
    vertical-align: middle;
    margin-left: 0.5rem;
}

/* --- AJUSTE PARA O MENU MOBILE --- */
@media (max-width: 991px) {
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05) !important; /* No mobile, fica mais integrado ao vidro */
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }
}

/* Logo e Links no Scrolled */
.navbar-premium.scrolled .nav-link { text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.navbar-premium.scrolled .logo-img { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); height: 55px; }

/* --- Links do Menu --- */
.navbar-premium .nav-link {
    color: rgba(255,255,255, 0.9) !important;
    font-weight: 500;
    margin: 0 1rem;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-premium .nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: 0; left: 50%; background-color: var(--primary-gold);
    transition: all 0.3s ease; transform: translateX(-50%);
}

.navbar-premium .nav-link:hover::after { width: 100%; }
.navbar-premium .nav-link:hover { color: var(--primary-gold) !important; }

/* --- Logo --- */
.navbar-brand { padding: 0; margin-right: 1rem; }
.logo-img {
    height: 120px; width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* --- Botão "Agendar Visita" (Outline) --- */
.btn-gold-outline {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    display: inline-block;
}

.btn-gold-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- Botão Sanduíche --- */
.navbar-toggler { border: none !important; padding: 0.5rem; z-index: 2; transition: transform 0.3s ease; }
.navbar-toggler:focus, .navbar-toggler:active { box-shadow: none !important; outline: none !important; }
.navbar-toggler i { color: #ffffff !important; font-size: 1.6rem !important; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5)); }
.navbar-toggler[aria-expanded="true"] { transform: rotate(90deg); }

/* --- RESPONSIVIDADE MOBILE (Fix Logo & Glass Menu) --- */
@media (max-width: 991px) {
    .navbar-premium .container {
        position: static; display: flex; justify-content: flex-end;
        min-height: 90px; align-items: center;
    }

    /* Logo Fixa no Topo */
    .navbar-brand {
        position: absolute; left: 50%; top: 15px;
        transform: translateX(-50%); margin: 0; z-index: 1050; padding: 0;
    }
    .logo-img { height: 70px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5)); }

    /* Menu Aberto (Efeito Vidro) */
    .navbar-collapse {
        margin-top: 1rem;
        background: rgba(15, 18, 16, 0.90);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 2rem 1.5rem; text-align: center;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        position: relative; z-index: 1000;
    }
    
    .navbar-premium .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1.15rem; padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .navbar-nav .nav-item:last-child .nav-link { border-bottom: none; }
    
    .btn-gold-outline { display: block; margin-top: 2rem; width: 100%; background: rgba(212, 175, 55, 0.05); }
}

/* ==========================================================================
   3. HERO SECTION (INTEGRATED VIDEO)
   ========================================================================== */
.integrated-hero {
    position: relative; height: 100vh; width: 100%;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}

.hero-background, .hero-video, .overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-background { z-index: -1; overflow: hidden; }
.hero-video { object-fit: cover; z-index: -2; }
.overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

/* Textos da Hero */
.pre-title {
    font-family: 'Montserrat', sans-serif; text-transform: uppercase;
    letter-spacing: 4px; font-size: 0.9rem; color: var(--primary-gold);
    margin-bottom: 1rem; font-weight: 600;
}

.main-title {
    font-family: 'Playfair Display', serif; font-size: 4.5rem;
    color: var(--white); margin-bottom: 1.5rem; line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.main-title em { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; color: var(--primary-gold); }

.sub-title {
    font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); font-weight: 300;
    margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto;
}

.hero-ornament {
    width: 200px; height: auto; margin-bottom: 1rem; opacity: 0.9;
    filter: brightness(0) saturate(100%) invert(76%) sepia(26%) saturate(836%) hue-rotate(4deg) brightness(93%) contrast(88%);
}

/* Botão Agenda Hero */
.btn-agenda-premium {
    display: inline-flex; align-items: center; justify-content: center; position: relative;
    font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 4px;
    font-size: 0.9rem; font-weight: 500; color: var(--white); text-decoration: none;
    padding: 1.2rem 3rem; border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(5px);
    transition: all 0.5s ease; overflow: hidden;
}

.btn-agenda-premium:hover {
    background: var(--primary-gold); color: var(--white); border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); transform: translateY(-3px); letter-spacing: 6px;
}
.btn-agenda-premium::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-top: 1px solid transparent; border-bottom: 1px solid transparent;
    transform: scaleX(0); transition: 0.5s;
}
.btn-agenda-premium:hover::before { transform: scaleX(1); border-color: rgba(255,255,255,0.5); }

/* Scroll Mouse */
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; z-index: 10;
    opacity: 0.8; transition: opacity 0.3s;
}
.scroll-indicator:hover { opacity: 1; }
.mouse {
    width: 30px; height: 50px; border: 2px solid var(--white);
    border-radius: 20px; position: relative; margin-bottom: 10px;
}
.wheel {
    position: absolute; top: 10px; left: 50%; width: 4px; height: 8px;
    background-color: var(--white); border-radius: 2px;
    transform: translateX(-50%); animation: scrollWheel 2s infinite;
}
.scroll-indicator .text {
    color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 3px; font-weight: 500;
    margin-top: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .main-title { font-size: 2.8rem; }
    .hero-ornament { width: 90px; margin-bottom: 1rem; }
    .btn-agenda-premium { padding: 1rem 1.5rem; letter-spacing: 2px; font-size: 0.8rem; width: 90%; }
}

/* ==========================================================================
   4. SEÇÃO "SOBRE" (Composition)
   ========================================================================== */
.section-about-premium {
    padding: 8rem 0; background-color: #FAF9F6; overflow: hidden;
}
.section-title-premium {
    font-family: 'Playfair Display', serif; font-size: 3rem; color: #242424; line-height: 1.2;
}
.text-gold { color: var(--primary-gold); font-style: italic; }
.separator-gold { width: 60px; height: 2px; background-color: var(--primary-gold); }
.text-desc {
    font-family: 'Montserrat', sans-serif; color: #666; line-height: 1.8;
    font-size: 1.05rem; margin-bottom: 1.5rem;
}
.btn-link-premium {
    color: #242424; text-decoration: none; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.9rem; transition: all 0.3s;
    border-bottom: 1px solid transparent; padding-bottom: 5px;
}
.btn-link-premium:hover { color: var(--primary-gold); border-color: var(--primary-gold); }

/* Composição de Imagens */
.image-composition { position: relative; padding: 2rem; }
.img-main-wrapper {
    position: relative; z-index: 2; overflow: hidden;
    border-radius: 4px; box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.img-main { width: 100%; height: auto; display: block; transition: transform 0.7s ease; }
.img-main-wrapper:hover .img-main { transform: scale(1.03); }
.img-detail-wrapper {
    position: absolute; bottom: -30px; right: -30px; width: 50%; z-index: 3;
    border: 5px solid #FAF9F6; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.img-detail { width: 100%; height: auto; display: block; }
.gold-frame {
    position: absolute; top: 0; left: 0; width: 70%; height: 80%;
    border: 1px solid rgba(212, 175, 55, 0.3); z-index: 1; transform: translate(-10px, -10px);
}

@media (max-width: 991px) {
    .section-about-premium { padding: 4rem 0; }
    .section-title-premium { font-size: 2.2rem; }
    .image-composition { margin-bottom: 3rem; padding: 0; }
    .gold-frame { display: none; }
}

/* ==========================================================================
   5. SEÇÃO SERVIÇOS (ROYAL GLASS GRID)
   ========================================================================== */
.services-royal-section {
    padding: 8rem 0; position: relative; background-color: #FDFCF8; overflow: hidden;
}

.section-title { font-size: 3rem; font-weight: 600; text-align: center; margin-bottom: 1rem; color: var(--charcoal); }
.section-subtitle { text-align: center; color: var(--primary-gold); font-size: 1.1rem; margin-bottom: 3rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; }

/* Background Texture */
.bg-texture-ornament {
    position: absolute; top: -100px; right: -100px; width: 600px; height: 600px;
    background-image: url('../images/ornamento.png');
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.03; transform: rotate(15deg); pointer-events: none; z-index: 0;
    filter: grayscale(100%) contrast(120%); 
}

/* Cards de Vidro */
.glass-service-card {
    position: relative; background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem 2rem; height: 100%; overflow: hidden; border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-service-card:hover {
    background: rgba(255, 255, 255, 0.95); transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15); border-color: var(--primary-gold);
}

/* Números Gigantes */
.card-number {
    position: absolute; top: -20px; right: -10px;
    font-family: 'Playfair Display', serif; font-size: 8rem; font-weight: 700;
    color: transparent; -webkit-text-stroke: 1px rgba(212, 175, 55, 0.15);
    opacity: 0.5; z-index: 0; transition: all 0.5s ease; line-height: 1;
}
.glass-service-card:hover .card-number { opacity: 0.1; transform: scale(1.1); }

/* Ícone */
.icon-box {
    position: relative; z-index: 2; font-size: 2.5rem; color: var(--primary-gold);
    margin-bottom: 1.5rem; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-service-card:hover .icon-box { transform: scale(1.2); color: var(--dark-gold); }

.service-title {
    position: relative; z-index: 2; font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--charcoal); margin-bottom: 1rem;
}
.service-desc {
    position: relative; z-index: 2; font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem; color: #666; line-height: 1.7;
}

@media (max-width: 768px) {
    .services-royal-section { padding: 5rem 0; }
    .card-number { font-size: 6rem; }
}

/* ==========================================================================
   6. DEPOIMENTOS (Testimonials)
   ========================================================================== */
.testimonial-card {
    background: var(--light-gray); padding: 2.5rem; border-radius: 15px;
    border-left: 4px solid var(--primary-gold); margin-bottom: 2rem; height: 100%;
}
.testimonial-text { font-style: italic; font-size: 1.1rem; color: #555; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { font-weight: 600; color: var(--charcoal); }
.stars { color: var(--primary-gold); margin-bottom: 1rem; }


/* ==========================================================================
   7. GALERIA INFINITE REEL (Botanical Fade Version)
   ========================================================================== */
.cinema-reel-container {
    position: relative; width: 100%; height: 480px;
    background-image: url('../images/bgreal.png'); /* Verifique o caminho */
    background-size: cover; background-position: center; background-repeat: no-repeat;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    border: none; /* Sem bordas para fusão perfeita */
}

/* Fusão Suave com CTA */
.cinema-reel-container::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to bottom, transparent 0%, #0F1210 100%);
    z-index: 2; pointer-events: none;
}

.cinema-reel-container::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to top, transparent 0%, #0F1210 100%);
    z-index: 2; pointer-events: none;
}

.reel-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(15, 18, 16, 0.55) 0%, rgba(10, 15, 10, 0.50) 100%);
    z-index: 0;
}

.reel-watermark {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 1; pointer-events: none; opacity: 0.08;
}
.reel-watermark img { width: 400px; height: auto; filter: invert(1); }

.reel-track {
    display: flex; width: calc(500px * 10); /* Ajustar conforme qtd fotos */
    animation: scrollCinema 50s linear infinite; z-index: 5; position: relative;
}

.reel-slide {
    width: 500px; height: 320px; flex-shrink: 0; padding: 0 10px;
    position: relative; transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.reel-slide img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 4px;
    filter: grayscale(100%) contrast(110%) brightness(0.9);
    transition: all 0.6s ease; opacity: 0.6; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cinema-reel-container:hover .reel-track { animation-play-state: paused; }
.reel-slide:hover { transform: scale(1.1); z-index: 10; }
.reel-slide:hover img {
    filter: grayscale(0%) contrast(100%) brightness(1.05);
    opacity: 1; box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.film-grain {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 6; opacity: 0.3; mix-blend-mode: overlay;
}

@media (max-width: 768px) {
    .cinema-reel-container { height: 350px; }
    .reel-watermark img { width: 250px; }
    .reel-slide { width: 300px; height: 200px; }
}


/* ==========================================================================
   8. CTA PREMIUM (Dark Velvet)
   ========================================================================== */
.cta-premium-wrapper {
    position: relative; padding: 9rem 0;
    background-color: var(--botanical-black); overflow: hidden; color: #fff;
}

.cta-spotlight {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(15, 18, 16, 0) 70%);
    z-index: 1; pointer-events: none;
}

.cta-ornament-bg {
    position: absolute; top: 50%; width: 400px; height: 400px;
    background-image: url('../images/ornamento.png');
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.03; z-index: 0; filter: invert(1);
}
.cta-ornament-bg.left { left: -100px; transform: translateY(-50%) rotate(-90deg); }
.cta-ornament-bg.right { right: -100px; transform: translateY(-50%) rotate(90deg); }

.cta-title {
    font-family: 'Playfair Display', serif; font-size: 3.8rem;
    background: linear-gradient(to right, #fff 20%, #D4AF37 50%, #fff 80%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% auto; animation: shine 5s linear infinite; margin-bottom: 1.5rem;
}
.cta-subtitle {
    font-family: 'Montserrat', sans-serif; font-size: 1.1rem;
    font-weight: 300; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 4rem;
}

/* Botões CTA */
.btn-premium-whatsapp {
    display: inline-flex; align-items: center; padding: 1rem 2rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; border-radius: 2px; text-transform: uppercase;
    font-size: 0.8rem; letter-spacing: 2px; text-decoration: none; transition: all 0.4s ease;
}
.btn-premium-whatsapp:hover {
    background: #25D366; border-color: #25D366; color: #fff; box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.btn-premium-quote {
    display: inline-flex; align-items: center; padding: 1rem 2rem;
    background: transparent; border: 1px solid var(--primary-gold);
    color: var(--primary-gold); border-radius: 2px;
    text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; transition: all 0.4s ease;
}
.btn-premium-quote:hover {
    background: var(--primary-gold); color: #000; box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* Modal */
.modal-premium .modal-content {
    background-color: var(--dark-bg); border: 1px solid var(--primary-gold);
    color: #fff; border-radius: 15px;
}
.modal-premium .modal-header { border-bottom: none; padding: 1.5rem 1.5rem 0; }
.modal-title { font-family: 'Playfair Display', serif; color: var(--primary-gold); }
.form-premium {
    background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 1rem; border-radius: 8px;
}
.form-premium:focus {
    background-color: rgba(255,255,255,0.1); border-color: var(--primary-gold); color: #fff; box-shadow: none;
}
.btn-premium-submit {
    background: linear-gradient(45deg, var(--primary-gold), #f3e5ab);
    color: #1a1a1a; border: none; padding: 1rem 3rem; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s;
}
.btn-premium-submit:hover { transform: scale(1.02); box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); }

@media (max-width: 768px) {
    .cta-premium-wrapper { padding: 6rem 0; }
    .cta-title { font-size: 2.5rem; }
    .cta-ornament-bg { display: none; }
    .cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center;}
    .btn-premium-whatsapp, .btn-premium-quote { width: 100%; justify-content: center; }
}


/* ==========================================================================
   9. FOOTER PREMIUM (Botanical Luxury)
   ========================================================================== */
.footer-botanical {
    position: relative;
    background-image: url('../images/bgreal.png'); /* Verifique este caminho */
    background-size: cover; background-position: center center;
    background-repeat: no-repeat; padding: 6rem 0 2rem;
    color: #fff; overflow: hidden;
}

.footer-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10, 15, 10, 0.96) 0%, rgba(10, 15, 10, 0.92) 100%);
    z-index: 1;
}

.footer-crown-ornament {
    width: 100px; opacity: 0.8;
    filter: brightness(0) saturate(100%) invert(76%) sepia(26%) saturate(836%) hue-rotate(4deg) brightness(93%) contrast(88%);
}

.footer-heading {
    font-family: 'Playfair Display', serif; color: var(--primary-gold);
    font-size: 1.4rem; margin-bottom: 1.5rem; letter-spacing: 1px;
}
.footer-desc { color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 300; }
.footer-logo { height: 60px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }

/* Links */
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 0.8rem; }
.footer-nav a {
    color: rgba(255,255,255,0.8); text-decoration: none; transition: all 0.3s;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem; display: inline-block;
}
.footer-nav a:hover { color: var(--primary-gold); transform: translateX(5px); }

/* Contact */
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.footer-contact i { color: var(--primary-gold); font-size: 1.2rem; margin-top: 4px; }
.footer-contact div strong { display: block; color: #fff; font-weight: 500; margin-bottom: 2px; }
.footer-contact div span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Social */
.social-links-premium { display: flex; gap: 1rem; }
.social-links-premium a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; text-decoration: none;
    transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1);
}
.social-links-premium a:hover {
    background: var(--primary-gold); border-color: var(--primary-gold); color: #000; transform: translateY(-3px);
}

.footer-divider { border-color: rgba(255,255,255,0.1); margin: 4rem 0 2rem; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin: 0; }

@media (max-width: 768px) {
    .footer-botanical { text-align: center; }
    .footer-contact li { justify-content: center; text-align: center; }
    .social-links-premium { justify-content: center; }
}


/* ==========================================================================
   10. ANIMAÇÕES GERAIS
   ========================================================================== */
.fade-in-up {
    opacity: 0; transform: translateY(30px);
    animation: fadeInUp 1s forwards ease-out;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Animação Padrão Desktop para Galeria (500px * 5) */
@keyframes scrollCinema {
    0% { transform: translateX(0); }
    100% { transform: translateX(-2500px); }
}

/* Ajuste de animação mobile se necessário */
@media (max-width: 768px) {
    @keyframes scrollCinema {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-300px * 5)); }
    }
}

/* ==========================================================================
   5. GALERIA INFINITE MEMORY REEL (Transparent Film Style)
   ========================================================================== */

.cinema-reel-container {
    position: relative;
    width: 100%;
    
    /* MUDANÇA AQUI: Removemos o height fixo e usamos padding igual */
    height: auto; 
    padding-top: 3rem;    /* Espaço Superior */
    padding-bottom: 3rem; /* Espaço Inferior (Igual ao superior) */
    
    /* Fundo Botânico */
    background-image: url('../images/bgreal.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

/* Fusão Suave com CTA (Degradê inferior) */
.cinema-reel-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, var(--botanical-black) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Overlay Geral para escurecer as folhas e destacar as fotos */
/* Overlay Exclusivo da Galeria (Mais Leve) */
.reel-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* GRADIENTE "LUZ DE CLAREIRA" */
    /* Centro: Muito mais transparente (0.4) para revelar as folhas verdes */
    /* Bordas: Um pouco mais escuras (0.85) para focar o olhar no filme */
    background: radial-gradient(
        circle at center, 
        rgba(15, 18, 16, 0.4) 10%, 
        rgba(10, 15, 10, 0.85) 100%
    );
    
    z-index: 0;
    
    /* Mistura a cor escura com a imagem de fundo de forma mais orgânica */
    mix-blend-mode: multiply; 
}

/* Marca d'água (Ornamento) */
.reel-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.08;
}

.reel-watermark img {
    width: 400px;
    height: auto;
    filter: invert(1);
}

/* --- FILME 35MM (Efeito Acetato Transparente) --- */
.reel-track {
    display: flex;
    width: calc(500px * 10); 
    animation: scrollCinema 50s linear infinite;
    z-index: 5;
    position: relative;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.film-frame {
    width: 500px;
    height: 380px;
    background-color: transparent; /* Permite ver o fundo botânico */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Furinhos (Sprockets) */
.sprocket-holes-top,
.sprocket-holes-bottom {
    height: 35px;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.65); 
    background-image: linear-gradient(to right, 
        transparent 15%, 
        rgba(10, 10, 10, 0.8) 15%, 
        rgba(10, 10, 10, 0.8) 35%, 
        transparent 35%
    );
    background-size: 30px 100%;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Área da Foto */
.photo-area {
    height: 310px;
    width: 100%;
    background: rgba(10, 10, 10, 0.65); 
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) sepia(20%) contrast(110%);
    transition: all 0.6s ease;
    opacity: 0.8;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.frame-number {
    position: absolute;
    bottom: 5px;
    right: 30px;
    color: #e6c200;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 5;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}

/* Hover */
.cinema-reel-container:hover .reel-track { animation-play-state: paused; }

.film-frame:hover .photo-area img {
    filter: grayscale(0%) contrast(100%) brightness(1.1);
    opacity: 1;
}

.film-grain {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 6; opacity: 0.3; mix-blend-mode: overlay;
}

/* Responsividade */
@media (max-width: 768px) {
    .cinema-reel-container { height: 350px; }
    .film-frame { width: 300px; height: 260px; }
    .photo-area { height: 210px; padding: 0 10px; }
    .sprocket-holes-top, .sprocket-holes-bottom { height: 25px; background-size: 20px 100%; }
    
    @keyframes scrollCinema {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-300px * 5)); }
    }
}

/* --- Título da Galeria (Novo) --- */
.reel-header {
    position: absolute;
    top: 3rem; /* Fica no topo, ocupando o padding superior */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10; /* Acima do filme e overlay */
    text-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Sombra para ler sobre qualquer fundo */
}

.reel-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.reel-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold); /* Dourado */
    font-style: italic;
    margin: 0;
}

/* Ajuste Mobile para o título não ficar em cima do filme */
@media (max-width: 768px) {
    .cinema-reel-container {
        padding-top: 8rem; /* Mais espaço no topo mobile para caber o título */
    }
    .reel-header {
        top: 2rem;
    }
    .reel-title {
        font-size: 2rem;
    }
}


/* ==========================================================================
   SEÇÃO EXPERIÊNCIA REAL (Dark Botanical Oasis)
   ========================================================================== */

.experience-botanical-section {
    position: relative;
    padding: 8rem 0;
    
    /* Fundo Botânico */
    background-image: url('../images/bgreal.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax (O fundo fica parado enquanto rola) */
    
    color: #fff;
    overflow: hidden;
}

/* Overlay para garantir que o texto branco seja legível */
.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente: Mais escuro em cima para o título, levemente mais claro embaixo */
    background: linear-gradient(to bottom, rgba(15, 18, 16, 0.95) 0%, rgba(15, 18, 16, 0.85) 100%);
    z-index: 1;
}

/* Tipografia */
.experience-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.2;
}

.experience-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

/* Itens (Colunas) */
.experience-item {
    border-top: 1px solid rgba(212, 175, 55, 0.3); /* Linha fina dourada no topo */
    padding-top: 2rem;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px); /* Leve movimento ao passar o mouse */
}

.exp-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.exp-item-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7); /* Cinza claro para não cansar a vista */
}

/* Responsividade */
@media (max-width: 768px) {
    .experience-botanical-section { padding: 5rem 0; }
    .experience-title { font-size: 2.5rem; }
    .experience-lead { font-size: 1rem; }
}

/* ==========================================================================
   5. SEÇÃO SERVIÇOS (ROYAL GLASS - CORRIGIDO)
   ========================================================================== */

.services-royal-section {
    padding: 8rem 0;
    position: relative;
    background-color: #FDFCF8; /* Creme muito claro */
    overflow: hidden;
}

/* Background com Ornamento (Aumentei a opacidade para ajudar no contraste do vidro) */
.bg-texture-ornament {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background-image: url('../images/ornamento.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05; /* Aumentei levemente */
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
    filter: grayscale(100%) contrast(120%); 
}

/* O CARD DE VIDRO (Efeito Cristal Lapidado) */
.glass-service-card {
    position: relative;
    
    /* MUDANÇA 1: Degradê Diagonal (Branco Forte -> Transparente) */
    /* Isso cria o efeito de reflexo de luz no canto superior esquerdo */
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.40) 100%
    );
    
    backdrop-filter: blur(20px);         
    -webkit-backdrop-filter: blur(20px);
    
    /* MUDANÇA 2: Borda Brilhante */
    /* Borda superior/esquerda branca (luz) e inferior dourada suave (reflexo) */
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    
    /* Sombra mais marcada para "descolar" do fundo */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    
    padding: 3rem 2rem;
    height: 100%;
    overflow: hidden; 
    border-radius: 12px; 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-service-card:hover {
    transform: translateY(-15px); 
    /* No hover, o vidro fica mais "sólido" e a sombra dourada aparece */
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2); 
    border-color: var(--primary-gold);
}

/* Números Gigantes (CORRIGIDO: Mais visíveis) */
.card-number {
    position: absolute;
    top: -30px; /* Subi um pouco mais */
    right: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 9rem; /* Ainda maior */
    font-weight: 700;
    
    /* MUDANÇA 3: Cor Sólida em vez de contorno */
    /* Um dourado muito claro, mas sólido, para garantir leitura */
    color: rgba(212, 175, 55, 0.12); 
    -webkit-text-stroke: 0; /* Removi o contorno fino que estava sumindo */
    
    z-index: 0;
    transition: all 0.5s ease;
    line-height: 1;
    pointer-events: none; /* Para não atrapalhar o clique/hover */
}

.glass-service-card:hover .card-number {
    /* No hover, ele fica um pouco mais nítido para compor o design */
    color: rgba(212, 175, 55, 0.2);
    transform: scale(1.05) rotate(-5deg); /* Um leve movimento charmoso */
}

/* Ícone */
.icon-box {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    /* Dourado mais escuro para contrastar com o vidro claro */
    color: var(--dark-gold); 
    margin-bottom: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Sombra suave no ícone para dar 3D */
    filter: drop-shadow(0 5px 5px rgba(212, 175, 55, 0.2));
}

.glass-service-card:hover .icon-box {
    transform: scale(1.2); 
    color: var(--primary-gold);
}

/* Títulos e Textos */
.service-title {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.service-desc {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #555; /* Escureci levemente para leitura no vidro */
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .services-royal-section { padding: 5rem 0; }
    .card-number { font-size: 6rem; top: -10px; }
}

/* ==========================================================================
   SEÇÃO BUFFET DELUXE (Sensory Dark Mode)
   ========================================================================== */

.gastronomy-premium-section {
    padding: 8rem 0;
    background-color: #121212; /* Fundo Dark Premium (Carvão) */
    position: relative;
    overflow: hidden;
    
}

/* Títulos no modo Dark */
.gastronomy-premium-section .section-title {
    color: #fff;
}

.text-gold-italic {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.text-desc-light {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    font-size: 1rem;
}

/* --- COMPOSIÇÃO DE IMAGENS --- */
.gastro-image-composition {
    position: relative;
    padding: 2rem; /* Espaço para os elementos saírem da caixa */
}

/* Moldura Dourada (Fica atrás) */
.gold-frame-decor {
    position: absolute;
    top: 0;
    left: 40px;
    width: 80%;
    height: 90%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 0;
}

/* Foto Principal */
.img-main-box {
    position: relative;
    z-index: 1;
    width: 85%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Sombra pesada para destacar */
}

.img-main-box img {
    transition: transform 0.8s ease;
    width: 100%;
}
.gastro-image-composition:hover .img-main-box img {
    transform: scale(1.05); /* Zoom lento */
}

/* Foto Detalhe (Sobreposta) */
.img-detail-box {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 55%; /* Tamanho da foto menor */
    z-index: 2;
    border: 5px solid #121212; /* Borda da cor do fundo para separar */
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* --- SELO GIRATÓRIO (BADGE) --- */
.rotating-badge {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 120px;
    height: 120px;
    z-index: 3;
    animation: rotateBadge 20s linear infinite;
    background: rgba(18, 18, 18, 0.8); /* Fundo semi-transparente */
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-badge svg {
    width: 100%;
    height: 100%;
    position: absolute;
}

.rotating-badge text {
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-center {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- LISTA DE DESTAQUES --- */
.gastro-highlights {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.gastro-highlights li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

.gastro-highlights li:last-child {
    border-bottom: none;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.gastro-highlights strong {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.gastro-highlights p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsividade */
@media (max-width: 991px) {
    .gastro-image-composition { margin-bottom: 3rem; }
    .gold-frame-decor { display: none; } /* Simplifica no mobile */
    .rotating-badge { width: 90px; height: 90px; top: 0; right: 0; }
}

/* ==========================================================================
   MEGA SEÇÃO BOTÂNICA (Parallax + Buffet + Filme)
   ========================================================================== */

.botanical-master-section {
    position: relative;
    padding: 8rem 0; /* Padding no topo, zero embaixo (o filme fecha) */
    
    /* O SEGREDO: Fundo Fixo nas folhas */
    background-image: url('../images/bgreal.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* EFEITO PARALLAX */
    
    overflow: hidden;
}

/* Overlay para escurecer o fundo e destacar o texto e comida */
.master-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente suave: Mais escuro no topo e embaixo, levemente transparente no meio */
    background: linear-gradient(
        to bottom, 
        rgba(15, 18, 16, 0.95) 0%, 
        rgba(15, 18, 16, 0.85) 50%, 
        rgba(15, 18, 16, 0.95) 100%
    );
    z-index: 0;
}

/* --- ESTILOS DO BUFFET (Adaptados para o fundo integrado) --- */
.gastro-content, .gastro-image-composition {
    position: relative;
    z-index: 2; /* Garante que fique acima do overlay */
}

.text-gold-italic {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.text-desc-light {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

/* Imagem do Buffet */
.img-main-box {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Borda fina dourada */
}

/* Selo Giratório */
.rotating-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    z-index: 5;
    animation: rotateBadge 20s linear infinite;
    background: rgba(15, 18, 16, 0.9);
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    display: flex; align-items: center; justify-content: center;
}
.rotating-badge svg { width: 100%; height: 100%; position: absolute; }
.rotating-badge text { font-size: 12px; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.badge-center { font-size: 1.5rem; color: var(--primary-gold); }

@keyframes rotateBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Destaques (Lista) */
.gastro-highlights li {
    display: flex; align-items: flex-start; margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1rem;
}
.highlight-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(212, 175, 55, 0.1); color: var(--primary-gold);
    display: flex; align-items: center; justify-content: center; margin-right: 1rem;
}
.gastro-highlights strong { color: #fff; display: block; margin-bottom: 4px; }
.gastro-highlights p { color: rgba(255,255,255,0.5); margin: 0; font-size: 0.9rem; }


/* --- ESTILOS DO FILME INTEGRADO (Cinematic Reel) --- */
.cinema-reel-integrated {
    position: relative;
    width: 100%;
    padding: 4rem 0 6rem 0; /* Espaço para o filme respirar */
    
    /* IMPORTANTE: Sem background aqui, para mostrar o Parallax do pai */
    background: transparent; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Mantém as classes do filme que já criamos */
.reel-track {
    display: flex;
    width: calc(500px * 10); 
    animation: scrollCinema 50s linear infinite;
    z-index: 5;
    position: relative;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.film-frame {
    width: 500px; height: 380px;
    background-color: transparent; /* Transparente para ver as folhas atrás */
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 0; margin: 0; position: relative; flex-shrink: 0;
    backdrop-filter: blur(3px); /* Vidro fosco no filme */
    -webkit-backdrop-filter: blur(3px);
}

/* Furinhos e Foto (Mantêm o estilo anterior) */
.sprocket-holes-top, .sprocket-holes-bottom {
    height: 35px; width: 100%;
    background-color: rgba(10, 10, 10, 0.65); 
    background-image: linear-gradient(to right, transparent 15%, rgba(10, 10, 10, 0.8) 15%, rgba(10, 10, 10, 0.8) 35%, transparent 35%);
    background-size: 30px 100%;
}
.photo-area {
    height: 310px; width: 100%; background: rgba(10, 10, 10, 0.65); 
    padding: 0 20px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.photo-area img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) sepia(20%) contrast(110%);
    transition: all 0.6s ease; opacity: 0.8;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .botanical-master-section { padding-top: 5rem; }
    .rotating-badge { top: 0; right: 0; width: 90px; height: 90px; }
    .cinema-reel-integrated { padding: 2rem 0 4rem 0; }
    .film-frame { width: 300px; height: 260px; }
    .photo-area { height: 210px; padding: 0 10px; }
    .sprocket-holes-top, .sprocket-holes-bottom { height: 25px; background-size: 20px 100%; }
}

/* Correção de caminhos no style.css */
.cinema-reel-container, 
.footer-botanical, 
.experience-botanical-section, 
.botanical-master-section {
    /* Ajustado para a subpasta correta e extensão .jpg enviada */
    background-image: url('assets/images/bgreal.jpg') !important; 
}

.bg-texture-ornament, 
.cta-ornament-bg {
    background-image: url('assets/images/ornamento.png') !important;
}

/* Ajuste de Contraste do Modal Premium */
.modal-premium .form-premium {
    background-color: rgba(255, 255, 255, 0.08) !important; /* Fundo levemente mais claro */
    color: #ffffff !important; /* Texto digitado branco */
    border: 1px solid rgba(212, 175, 55, 0.3) !important; /* Borda dourada sutil */
}

/* Cor do Placeholder (Texto de exemplo) */
.modal-premium .form-premium::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 300;
}

/* Estado de Foco (Quando clica no campo) */
.modal-premium .form-premium:focus {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
    outline: none;
}

/* Ajuste específico para o ícone do seletor de data */
.modal-premium input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Torna o ícone do calendário branco */
    cursor: pointer;
}