/* =========================================
   1. GERAL & RESET
   ========================================= */
:root {
    --bg-cream: #F5F3EB;       
    --bg-dark: #2C3328;        
    --accent-green: #8FA17F;   
    --accent-gold: #C6A87C;    
    --text-main: #333333;
    --white: #FFFFFF;
    --font-lavish: 'Playfair Display', serif;
    --font-questrial: 'Questrial', sans-serif;
}

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

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body {
    font-family: var(--font-questrial);
    color: var(--text-main);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

a { text-decoration: none; transition: 0.3s; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-light { color: var(--white); }

/* SEÇÕES */
.section-dark { background-color: var(--bg-dark); padding: 80px 0; color: var(--white); }
.section-cream { background-color: var(--bg-cream); padding: 80px 0; }
.section-white { background-color: var(--white); padding: 80px 0; }
.section-title { font-size: 2.8rem; font-family: var(--font-lavish); margin-bottom: 10px; color: var(--bg-dark); }
.section-dark .section-title { color: var(--white); }


/* =========================================
   2. NAVBAR & LOGO (PC - AJUSTADO)
   ========================================= */
.glass-nav {
    position: fixed; top: 0; left: 0; width: 100%; 
    height: 90px; 
    padding: 0 5%; 
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(245, 243, 235, 0.98); 
    backdrop-filter: blur(10px);
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.logo-wrap { 
    position: relative; 
    height: 100%; 
    width: 280px; /* Espaço reduzido para acompanhar a nova logo */
    display: flex; 
    align-items: center; 
}

/* LOGO NO PC (30% MENOR) */
.logo-img { 
    position: absolute; 
    top: 15px; left: 0; /* Pequeno ajuste no topo para centralizar melhor */
    height: auto; 
    max-width: 266px; /* Reduzido de 380px para 266px (aprox. -30%) */
    max-height: 200px;
    width: auto; 
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15));
    transition: 0.3s;
}

.nav-links { display: flex; gap: 25px; }
.nav-links a { font-weight: bold; color: var(--bg-dark); font-size: 1.1rem; text-transform: uppercase; }
.btn-nav { padding: 12px 30px; background: var(--bg-dark); color: var(--white); border-radius: 30px; font-size: 1rem; font-weight: bold; white-space: nowrap; }
.btn-nav:hover { background: var(--accent-green); }


/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    min-height: 95vh;
    display: flex; align-items: center;
    padding-top: 220px; 
    overflow: hidden; 
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.tag-destaque {
    background: var(--accent-gold); color: var(--white);
    padding: 6px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: bold;
    margin-bottom: 20px; display: inline-block;
}

.hero h1 {
    font-size: 3.8rem; line-height: 1.1; margin-bottom: 20px;
    color: var(--bg-dark); font-family: var(--font-lavish);
}

.hero p { font-size: 1.1rem; color: #555; max-width: 450px; margin-bottom: 30px; }
.cta-group { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-image-wrapper { position: relative; }
.hero-img { width: 100%; max-height: 600px; object-fit: contain; }

.floating-card {
    position: absolute; background: rgba(255,255,255,0.95);
    padding: 12px 25px; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-weight: bold; color: var(--bg-dark);
    display: flex; align-items: center; gap: 10px; z-index: 3;
}
.c1 { top: 20%; left: -30px; }
.c2 { bottom: 20%; right: -20px; }


/* =========================================
   4. MARQUEE
   ========================================= */
.marquee-container {
    background: var(--accent-green);
    padding: 18px 0;
    overflow: hidden; 
    white-space: nowrap;
    margin: 40px 0;
    border-top: 2px solid var(--bg-dark);
    border-bottom: 2px solid var(--bg-dark);
    width: 100%;
}
.marquee-content { display: inline-block; animation: scroll 35s linear infinite; }
.marquee-content span {
    font-family: var(--font-lavish); color: var(--white);
    font-size: 1.6rem; margin: 0 40px;
}


/* =========================================
   5. SOBRE MIM
   ========================================= */
.about-section { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr 0.8fr; gap: 40px; align-items: center; }

.about-collage {
    position: relative; height: 520px; border-radius: 20px;
    background: #6C7D57; overflow: hidden; padding: 0; 
}

.polaroid {
    position: absolute; background: #fff; padding: 8px 8px 25px 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); transition: 0.3s; z-index: 2;
}
.polaroid:hover { transform: scale(1.1) !important; z-index: 10; }
.polaroid img { width: 100%; height: 100%; object-fit: cover; }

.p1 { width: 160px; height: 160px; top: 40px; left: 40px; transform: rotate(-6deg); }
.p2 { width: 150px; height: 150px; top: 30px; right: 40px; transform: rotate(5deg); } 
.p3 { width: 170px; height: 170px; top: 200px; left: 100px; transform: rotate(-3deg); z-index: 3; }
.p4 { width: 140px; height: 140px; bottom: 40px; left: 30px; transform: rotate(4deg); }
.p5 { width: 150px; height: 150px; bottom: 30px; right: 50px; transform: rotate(-5deg); }

.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0; }
.tag-pill { background: #ECE7D7; padding: 6px 12px; border-radius: 20px; font-size: 0.85rem; color: #555; }
.about-actions { display: flex; gap: 15px; margin-top: 20px; }

.about-right { position: relative; z-index: 1; }
.about-right::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -45%);
    width: 120%; height: 90%;
    background: #EBE6D6; 
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    z-index: -1;
}
.about-cutout { max-width: 280px; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); position: relative; }


/* =========================================
   6. VÍDEOS
   ========================================= */
.header-flex { display: flex; justify-content: space-between; align-items: end; margin-bottom: 30px; }
.scroll-indicator { font-size: 0.9rem; opacity: 0.8; }

.videos-grid-scroll {
    display: flex; overflow-x: auto; gap: 25px; padding: 10px 0 40px 0;
    scrollbar-width: thin; scrollbar-color: var(--accent-green) var(--bg-dark);
}
.videos-grid-scroll::-webkit-scrollbar { height: 8px; }
.videos-grid-scroll::-webkit-scrollbar-thumb { background: var(--accent-green); border-radius: 10px; }

.tiktok-card-wrapper {
    min-width: 325px; max-width: 325px; height: 575px;
    border-radius: 12px; flex-shrink: 0;
    position: relative; overflow: hidden;
    background: #000; box-shadow: 0 5px 15px rgba(0,0,0,0.2); cursor: pointer;
}

.static-cover {
    width: 100%; height: 100%;
    background-size: cover; background-position: center; background-color: #222;
    position: relative; display: flex; flex-direction: column;
    justify-content: center; align-items: center; transition: 0.3s;
}
.static-cover::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.play-btn-overlay {
    width: 70px; height: 70px; background: rgba(255,255,255,0.9);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 24px; color: var(--accent-green); z-index: 2;
    box-shadow: 0 0 20px rgba(0,0,0,0.5); transition: 0.3s; margin-bottom: 10px;
}
.video-label { z-index: 2; color: #fff; font-family: var(--font-lavish); font-size: 1.2rem; text-align: center; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.loading-text { color: #ccc; font-size: 0.8rem; margin-top: 5px; z-index: 2; font-style: italic; }
.tiktok-card-wrapper:hover .play-btn-overlay { transform: scale(1.1); background: #fff; }
.video-container { width: 100%; height: 100%; }
.tiktok-embed { margin: 0 !important; width: 100% !important; height: 100% !important; border-radius: 12px !important; border: none !important; }


/* =========================================
   7. GATILHO MENTAL
   ========================================= */
.ugc-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.ugc-lead { font-size: 1.3rem; margin: 15px 0 30px 0; opacity: 0.9; }
.ugc-benefits { display: grid; gap: 20px; }
.benefit-item { display: flex; gap: 15px; align-items: flex-start; }
.benefit-item i { color: var(--accent-green); font-size: 1.5rem; margin-top: 5px; }
.benefit-item strong { color: #fff; display: block; font-size: 1.1rem; margin-bottom: 5px; }
.benefit-item p { color: #ccc; font-size: 0.9rem; line-height: 1.4; margin: 0; }

.ugc-highlight {
    background: var(--bg-cream); color: var(--text-main); padding: 40px; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 2px solid var(--accent-gold);
}
.ugc-highlight h3 { font-family: var(--font-lavish); font-size: 2rem; color: var(--bg-dark); margin-bottom: 15px; }
.ugc-highlight p { font-size: 1rem; margin-bottom: 15px; line-height: 1.6; }


/* =========================================
   8. PREÇOS
   ========================================= */
.pricing-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 50px; }
.price-list-item { background: #8FA17F; color: var(--white); padding: 18px 30px; border-radius: 50px; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s; }
.price-list-item:hover { transform: translateY(-3px); background: var(--bg-dark); }
.price-list-item strong { font-family: var(--font-lavish); font-size: 1.3rem; letter-spacing: 1px; }
.price-list-item.highlight { background: var(--bg-dark); border: 2px solid var(--accent-gold); transform: scale(1.02); }

.packages-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 50px; }
.pack-card { background: #EBE6D6; padding: 40px 30px; border-radius: 25px; text-align: center; width: 260px; position: relative; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.pack-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.pack-card h3 { font-family: var(--font-lavish); font-size: 1.6rem; color: #666; margin-bottom: 20px; }
.desc-sm { font-size: 0.85rem; color: #777; margin-bottom: 15px; font-style: italic; min-height: 40px; }
.pack-content ul { list-style: none; margin-bottom: 25px; min-height: 110px; }
.pack-content li { margin-bottom: 10px; font-size: 0.95rem; color: #555; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 5px; }
.saving { font-size: 0.8rem; color: #777; margin-bottom: 15px; font-style: italic; }
.price { font-size: 2rem; font-family: var(--font-lavish); color: var(--white); background: #8FA17F; padding: 8px 20px; border-radius: 50px; display: inline-block; margin-bottom: 25px; }
.pack-card.featured { background: #EFEAD8; border: 2px solid var(--accent-gold); transform: scale(1.05); z-index: 2; }
.badge-gold { position: absolute; top: -20px; right: -20px; background: linear-gradient(45deg, #FFD700, #C6A87C); color: #fff; width: 70px; height: 70px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.7rem; font-weight: bold; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transform: rotate(15deg); }
.btn-pack { display: block; padding: 12px; border: 1px solid var(--bg-dark); color: var(--bg-dark); border-radius: 30px; text-transform: uppercase; font-weight: bold; font-size: 0.85rem; transition: 0.3s; }
.btn-pack:hover, .btn-pack.btn-filled { background: var(--bg-dark); color: var(--white); }


/* =========================================
   9. FOOTER
   ========================================= */
footer { background: var(--bg-dark); color: var(--white); padding: 60px 0 30px 0; margin-top: 60px; border-top: 5px solid var(--accent-green); }
.footer-flex { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 50px; flex-wrap: wrap; gap: 40px; }
.footer-left h2 { margin-bottom: 15px; color: var(--accent-green); font-size: 2rem; }
.contact-rows p { margin: 12px 0; font-size: 1rem; display: flex; align-items: center; gap: 12px; opacity: 0.9; }
.contact-rows i { color: var(--accent-gold); width: 20px; text-align: center; }
.social-links a { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--white); font-size: 1.1rem; transition: 0.3s; background: rgba(255,255,255,0.05); padding: 10px 20px; border-radius: 8px; }
.social-links a:hover { background: rgba(255,255,255,0.1); color: var(--accent-green); transform: translateX(5px); }

/* Banner Dev */
.dev-banner {
    background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 16px; padding: 25px 30px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 20px; transition: 0.3s;
}
.dev-banner:hover { border-color: var(--accent-green); background: rgba(255, 255, 255, 0.12); }
.dev-info { display: flex; align-items: center; gap: 15px; }
.dev-icon { width: 40px; height: 40px; filter: invert(1); opacity: 0.8; }
.dev-info span { font-size: 1rem; color: #e0e0e0; max-width: 300px; line-height: 1.4; }
.dev-info strong { color: var(--accent-green); font-weight: 700; }
.dev-buttons { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.btn-dev-whatsapp {
    background: #25D366; color: #fff; padding: 12px 24px; border-radius: 50px; font-weight: bold; font-size: 0.95rem;
    display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); transition: 0.3s; border: 2px solid #25D366;
}
.btn-dev-whatsapp:hover { background: transparent; color: #25D366; transform: translateY(-2px); }
.link-infortec { color: #ccc; font-size: 0.9rem; text-decoration: underline; text-underline-offset: 4px; transition: 0.3s; }
.link-infortec:hover { color: var(--white); }
.copy { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; opacity: 0.5; font-size: 0.8rem; }

/* UTILITARIOS */
.btn { padding: 12px 30px; border-radius: 50px; text-transform: uppercase; font-weight: bold; display: inline-block; font-size: 0.9rem; }
.btn-outline { border: 2px solid var(--bg-dark); color: var(--bg-dark); }
.btn-outline:hover { background: var(--bg-dark); color: var(--white); }
.btn-filled { background: var(--bg-dark); color: var(--white); border: 2px solid var(--bg-dark); }
.btn-filled:hover { background: var(--accent-green); border-color: var(--accent-green); }

.whatsapp-float { position: fixed; bottom: 25px; right: 25px; background: #25D366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); z-index: 2000; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ANIMAÇÕES */
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(143, 161, 127, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(143, 161, 127, 0); } 100% { box-shadow: 0 0 0 0 rgba(143, 161, 127, 0); } }
.float-anim { animation: float 4s ease-in-out infinite; }
.float-anim-delay { animation: float 4s ease-in-out infinite 2s; }
.bounce { animation: bounce 2s infinite; }
.pulse-animation { animation: pulse 2s infinite; }

/* =========================================
   11. RESPONSIVO (MOBILE)
   ========================================= */
@media (max-width: 980px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-collage { margin-bottom: 30px; width: 100%; max-width: 500px; margin-left: auto; margin-right: auto; }
    .about-right { display: none; }
    .ugc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* 1. Reset da Barra de Navegação */
    .glass-nav { 
        height: auto; 
        padding: 10px 20px; 
        flex-wrap: nowrap; 
    }
    .nav-links { display: none; } /* Esconde links no mobile */
    
    /* 2. Logo Horizontal Mobile */
    .logo-wrap { 
        width: auto; 
        max-width: 60%; 
    }
    .logo-img { 
        position: relative; /* Volta para o fluxo normal */
        top: 0; left: 0;
        max-height: 35px; /* Altura reduzida */
        max-width: 100%; 
    }

    /* 3. Botão do Menu Mobile */
    .btn-nav { 
        padding: 8px 15px; 
        font-size: 0.8rem; 
    }

    /* 4. Reset do Hero (Capa) */
    .hero { 
        padding-top: 100px; 
        min-height: auto; 
        height: auto; 
        padding-bottom: 50px; 
    }
    .hero-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px; 
        display: flex;
        flex-direction: column;
    }
    .hero h1 { font-size: 2.5rem; word-wrap: break-word; }
    .hero-image-wrapper { order: -1; margin-bottom: 10px; width: 100%; }
    .hero-img { max-height: 350px; margin: 0 auto; } 

    /* 5. Botões do Hero */
    .cta-group { 
        flex-direction: column; 
        width: 100%; 
        gap: 15px; 
    }
    .cta-group .btn { 
        width: 100%; 
    }

    /* 6. Footer e Dev */
    .footer-flex { flex-direction: column; text-align: center; align-items: center; gap: 30px; }
    .dev-banner { flex-direction: column; text-align: center; padding: 20px; }
    .dev-info { flex-direction: column; gap: 10px; }
    .dev-buttons { flex-direction: column; width: 100%; }
    .btn-dev-whatsapp { width: 100%; justify-content: center; }

    /* Ajustes Gerais */
    .about-collage { height: 400px; padding-left: 40px; transform: scale(0.95); margin-left: -10px; }
    .p5 { display: none; }
    .pricing-list-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2.2rem; }
}