@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Tailwind Exact Colors used on base44 reference */
    --slate-950: #020617; /* Background */
    --slate-900: #0f172a; /* Card backgrounds */
    --slate-800: #1e293b; /* Borders/Dividers */
    --slate-400: #94a3b8; /* Muted text */
    --slate-50:  #f8fafc; /* Main text */
    
    --yellow-600: #ca8a04; /* Darker Gold (Headings/Icons) */
    --yellow-500: #eab308; /* Bright Gold (Badges/Accents) */
    --orange-500: #f59e0b; /* Primary CTA Button */
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--slate-950);
    color: var(--slate-50);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1, h2, h3, h4, h5, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.gold { color: var(--yellow-500); }
.text-muted { color: var(--slate-400); }
.text-center { text-align: center; }

/* Utilities */
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.section { padding: 6rem 0; position: relative; z-index: 2; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* Background Blur Glows (Signature aesthetic from reference) */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 138, 4, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}
.glow-top-left { top: -200px; left: -200px; }
.glow-bottom-right { bottom: -200px; right: -200px; }
.glow-blue { background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%); }

/* Sticky Header - Hidden by default at top=0 */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(2, 6, 23, 0.85); /* rgba slate-950 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

/* Shown via JS when scrolled */
#main-nav.nav-visible {
    transform: translateY(0);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 1.25rem; font-weight: 900; letter-spacing: 0.05em;
}
.logo-title span:first-child { color: var(--yellow-500); }
.logo-subtitle {
    font-size: 0.65rem; color: var(--slate-400); font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--orange-500);
    color: var(--slate-950);
}
.btn-primary:hover {
    background-color: var(--yellow-500);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--slate-800);
    color: var(--slate-400);
}

.btn-huge {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    border-radius: 12px;
}

/* Subtle pulse glow for main CTAs */
.pulse-glow {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    animation: pulseGlow 2s infinite alternate;
}
@keyframes pulseGlow {
    from { box-shadow: 0 0 10px rgba(245, 158, 11, 0.2); }
    to { box-shadow: 0 0 30px rgba(245, 158, 11, 0.6); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* Extremely dark overlay on the background image */
    background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.7) 0%, rgba(2, 6, 23, 0.95) 75%, var(--slate-950) 100%), url('bg-hero-novo.jpg');
    background-size: cover;
    background-position: center top;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.badges-wrapper {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-red {
    background: rgba(220, 38, 38, 0.15); /* Tailwind red-600 low opacity */
    color: #fca5a5; /* red-300 */
    border: 1px solid rgba(220, 38, 38, 0.3);
}
.badge-red i { color: #ef4444; font-size: 0.4rem; } /* Dot */

.badge-gold {
    background: transparent;
    color: var(--yellow-500);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--slate-400);
    margin-bottom: 3rem;
}

/* Social Proof Strip */
.social-proof-strip {
    background: rgba(15, 23, 42, 0.5); /* slate-900 */
    border-top: 1px solid var(--slate-800);
    border-bottom: 1px solid var(--slate-800);
    padding: 3rem 0;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.social-item i {
    color: var(--yellow-600);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.social-item h3 {
    font-size: 2rem;
    color: var(--yellow-500);
    margin-bottom: 0.25rem;
}
.social-item p {
    font-size: 0.85rem;
    color: var(--slate-400);
}

/* Section Headings */
.pre-title {
    color: var(--yellow-600);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: var(--slate-50);
}
.section-title span {
    color: var(--yellow-500);
}

/* Realidade Cards (The ↳ styling) */
.realidade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.realidade-card {
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.realidade-card i {
    color: var(--yellow-600);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.realidade-card p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--slate-50);
}

/* Big Presentation Text */
.big-statement {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Modulos do Curso / Cronograma Horizontal */
.module-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.module-card {
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.module-card:hover {
    transform: translateY(-2px);
    border-color: rgba(202, 138, 4, 0.4);
}
.module-left {
    background: #171617; /* Um tom extremamente escuro que se integra à estética */
    padding: 2.5rem 2rem;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--slate-800);
    flex-shrink: 0;
}
.module-time {
    color: var(--yellow-500);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.module-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.module-right {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.module-list {
    list-style: none;
}
.module-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--slate-50);
    font-size: 0.95rem;
    line-height: 1.4;
}
.module-list li:last-child {
    margin-bottom: 0;
}
.module-list i {
    color: var(--yellow-600);
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

/* Mentor Section */
.mentor-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.mentor-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.mentor-img-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
}
.mentor-glow {
    position: absolute;
    bottom: -20%; left: -20%;
    width: 140%; height: 50%;
    background: linear-gradient(to top, rgba(234, 179, 8, 0.2), transparent);
    filter: blur(40px);
    pointer-events: none;
}

.mentor-text p {
    font-size: 1.15rem;
    color: var(--slate-400);
}
.mentor-text p strong {
    color: var(--slate-50);
}

/* Lotes (Mini Cards) */
.lotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.lote-card {
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.lote-card.active {
    border-color: rgba(234, 179, 8, 0.5);
    background: rgba(15, 23, 42, 0.8);
}
.lote-card.disabled {
    opacity: 0.5;
}

.lote-title { font-size: 0.75rem; color: var(--slate-400); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem;}
.lote-price { font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 700; margin-bottom: 0.5rem;}
.lote-status { font-size: 0.7rem; padding: 0.2rem 0.5rem; background: var(--slate-800); border-radius: 4px; color: var(--slate-400); display: inline-block;}
.lote-card.active .lote-price { color: var(--yellow-500); }
.lote-card.active .lote-status { background: rgba(234, 179, 8, 0.15); color: var(--yellow-500); }

/* Main Pricing Cards */
.pricing-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.price-box {
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    text-align: left;
}

.price-box.popular {
    border-color: var(--yellow-600);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
}

.badge-mais-popular {
    position: absolute;
    top: -14px;
    right: 32px;
    background: var(--yellow-500);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 900;
    display: flex; align-items: center; gap: 0.4rem;
}

.box-pre-title { font-size: 0.8rem; color: var(--slate-400); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem;}
.box-title { font-size: 2rem; margin-bottom: 1rem; }
.box-desc { font-size: 0.9rem; color: var(--slate-400); margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--slate-800); }

.price-amount {
    display: flex; align-items: flex-end; gap: 0.5rem;
    margin-bottom: 2rem;
}
.price-currency { font-size: 1.5rem; font-weight: 700; color: var(--slate-400); margin-bottom: 0.5rem;}
.price-value { font-size: 4rem; font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1;}
.price-suffix { font-size: 0.9rem; color: var(--slate-400); margin-bottom: 0.8rem;}

.price-features { list-style: none; margin-bottom: 3rem; }
.price-features li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    margin-bottom: 1rem; font-size: 0.95rem; color: var(--slate-50);
}
.price-features li i { color: var(--yellow-500); margin-top: 0.2rem; }

/* Photos Grid Placeholder Section */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 4rem;
}
.photo-slot {
    background: var(--slate-900);
    border-radius: 16px;
    aspect-ratio: 16/9;
    border: 1px solid var(--slate-800);
    display: flex; align-items: center; justify-content: center;
    color: var(--slate-400); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
}

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--slate-800);
    margin-bottom: 1rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.3);
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    font-weight: 600; font-size: 1.05rem;
    user-select: none;
    transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(15, 23, 42, 0.8); }
.faq-question i { color: var(--yellow-600); transition: transform 0.3s ease; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--yellow-500); }

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--slate-400);
    font-size: 0.95rem;
}
.faq-item.open .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px; /* arbitrary max height for transition */
    opacity: 1;
}

/* Footer / Legal */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--slate-800);
    text-align: center;
    background: #000;
}
.footer-text { font-size: 0.8rem; color: var(--slate-400); margin-bottom: 1rem; }
.footer-links { display: flex; justify-content: center; gap: 1rem; }
.footer-links a { color: var(--slate-400); text-decoration: underline; font-size: 0.75rem; }

/* Sticky Urgency Bottom Bar */
#urgency-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--slate-900);
    border-top: 1px solid rgba(234, 179, 8, 0.3);
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#urgency-bar.bar-visible {
    transform: translateY(0);
}

.urgency-wrapper {
    display: flex; justify-content: space-between; align-items: center;
}

.urgency-timer {
    display: flex; gap: 1rem; align-items: center;
}
.u-label { font-size: 0.75rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.time-blocks { display: flex; gap: 0.5rem; }
.t-block {
    background: rgba(220, 38, 38, 0.15); /* light red bg */
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #ef4444; /* red text */
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-weight: 800;
    font-family: monospace;
    font-size: 1.2rem;
}

.urgency-progress {
    flex: 1; max-width: 300px;
}
.u-prog-text {
    display: flex; justify-content: space-between;
    font-size: 0.75rem; color: var(--slate-400); margin-bottom: 0.4rem; font-weight: 700;
}
.u-prog-text strong { color: var(--yellow-500); }
.u-bar-bg { width: 100%; height: 6px; background: var(--slate-800); border-radius: 4px; overflow: hidden; }
.u-bar-fill { width: 82%; height: 100%; background: var(--yellow-500); box-shadow: 0 0 10px rgba(234,179,8,0.5); }

/* Animations & Spacing */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive adjustments */
@media (max-width: 992px) {
    .social-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .realidade-grid { grid-template-columns: 1fr; }
    .mentor-grid { grid-template-columns: 1fr; text-align: center; }
    .mentor-img-wrapper { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
    /* Global Spacing to feel tighter and faster */
    .container { padding: 0 1.25rem; }
    .section { padding: 3.5rem 0; }
    
    /* Header: Center the logo since button is gone */
    .nav-wrapper { justify-content: center; }
    .nav-wrapper .btn, .logo-subtitle { display: none; }
    .logo-title { font-size: 1.5rem; } 

    /* Typography & Hero */
    .hero {
        justify-content: flex-end; /* Empurra o texto pro rodapé da tela */
        padding-top: 100px;
        padding-bottom: 2.5rem; /* Margem de respiro embaixo do botão CTA */
        /* Ajuste nativo de imagem: Como a foto foi recortada fisicamente para arrancar o teto, center top crava o rosto dele no topo do celular! */
        background-position: center top; 
        background-size: cover; 
        /* Gradiente mobile: transparente no topo (pro rosto do mentor), breu total embaixo (para o texto brilhar) */
        background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.1) 0%, rgba(2, 6, 23, 0.4) 40%, rgba(2, 6, 23, 0.95) 72%, var(--slate-950) 100%), url('bg-hero-novo.jpg');
    }
    .hero h1 { font-size: 2rem; line-height: 1.15; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .badges-wrapper { flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
    .badge { font-size: 0.6rem; padding: 0.3rem 0.75rem; }
    .btn-huge { padding: 1rem; font-size: 0.9rem; width: 100%; border-radius: 8px;}
    
    /* Pre-titles and Titles */
    .pre-title { font-size: 0.7rem; margin-bottom: 0.5rem; }
    .section-title { font-size: 1.8rem; line-height: 1.2; }
    .big-statement { font-size: 1.7rem; }
    
    /* Strip: 2x2 grid, smaller icons */
    .social-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .social-item i { font-size: 1.2rem; margin-bottom: 0.5rem; }
    .social-item h3 { font-size: 1.4rem; }
    .social-item p { font-size: 0.75rem; }
    
    /* Realidade Cards (Pain) - reduce spacing */
    .realidade-grid { grid-template-columns: 1fr; gap: 1rem; }
    .realidade-card { padding: 1.25rem; gap: 1rem; align-items: flex-start; }
    .realidade-card i { font-size: 1rem; margin-top: 0.1rem; }
    .realidade-card p { font-size: 0.95rem; }
    
    /* Modules Cards (replaces schedule) */
    .module-card { flex-direction: column; }
    .module-left { width: 100%; border-right: none; border-bottom: 1px solid var(--slate-800); padding: 1.5rem; }
    .module-right { padding: 1.5rem; }
    .module-list li { font-size: 0.9rem; }
    
    /* Mentor Grid */
    .mentor-grid { gap: 2rem; }
    .mentor-img-wrapper { max-width: 320px; border-radius: 16px; margin: 0 auto; }
    .mentor-text p { font-size: 1rem; }
    
    /* Lotes Grid */
    .lotes-grid { grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 3rem; }
    .lote-card { padding: 1rem; border-radius: 10px; }
    .lote-price { font-size: 1.6rem; }
    .lote-status { font-size: 0.65rem; }
    
    /* Pricing Main Grid */
    .pricing-main-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .price-box { padding: 2rem 1.25rem; border-radius: 16px; }
    /* Centering the popular badge for mobile harmony */
    .badge-mais-popular { right: 50%; transform: translateX(50%); top: -14px; font-size: 0.65rem; padding: 0.3rem 0.8rem; }
    .box-title { font-size: 1.75rem; }
    .box-desc { font-size: 0.85rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem;}
    .price-value { font-size: 3.2rem; }
    .price-currency { font-size: 1.2rem; }
    .price-features li { font-size: 0.85rem; gap: 0.5rem; margin-bottom: 0.75rem; }
    
    /* Image Grid & FAQ */
    .photos-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .faq-question { font-size: 0.95rem; padding: 1.25rem; }
    .faq-answer { font-size: 0.85rem; }
    
    /* Urgency Sticky Bar */
    #urgency-bar { padding: 0.75rem 0; }
    .urgency-wrapper { flex-direction: row; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap;}
    .urgency-progress { display: none; } 
    .urgency-timer { flex: 0 0 auto; gap: 0.5rem; }
    .u-label { display: none; } 
    .t-block { font-size: 1rem; padding: 0.2rem 0.4rem; border-radius: 4px;}
    .time-blocks span { margin: 0 0.1rem; } /* Reduce colon gap */
    #urgency-bar .btn { flex: 1 1 100%; padding: 0.8rem; font-size: 0.8rem; border-radius: 6px; }
    
    /* Footer */
    .footer { padding: 2.5rem 0; }
    .footer-links { flex-direction: column; gap: 0.75rem; align-items: center; }
}

@media (max-width: 400px) {
    /* Extreme small screen overrides */
    .hero h1 { font-size: 1.8rem; }
    .social-proof-grid { grid-template-columns: 1fr; }
    .price-value { font-size: 2.8rem; }
}
