/* ═══ NAV ═══ */
nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    background: transparent; transition: all 0.5s;
}

nav.solid {
    background: rgba(8,13,24,0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(200,164,78,0.06);
    padding: 14px 48px;
}

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { height: 48px; transition: height 0.3s; border-radius: 8px; }
nav.solid .nav-brand img { height: 36px; }

.nav-r { display: flex; align-items: center; gap: 36px; }
.nav-r a {
    color: var(--text-mid); font-size: 0.8rem; font-weight: 400;
    text-decoration: none; letter-spacing: 0.8px; text-transform: uppercase;
    transition: color 0.3s;
}
.nav-r a:hover { color: var(--gold); }

.nav-cta {
    color: var(--deep) !important;
    background: var(--gold);
    padding: 10px 28px; border-radius: 6px; font-weight: 600;
    letter-spacing: 1px; transition: all 0.3s;
}
.nav-cta:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200,164,78,0.25);
}

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 0 48px; position: relative; overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 70% 45%, rgba(200,164,78,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 20% 80%, rgba(20,30,55,0.8) 0%, transparent 60%),
        linear-gradient(180deg, var(--deep) 0%, var(--navy) 100%);
}

.hero-line {
    position: absolute; top: 0; left: 50%; width: 1px; height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--gold-10) 30%, var(--gold-10) 70%, transparent 100%);
}

.hero-inner {
    position: relative; z-index: 2; display: grid;
    grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    max-width: 1200px; margin: 0 auto; width: 100%;
}

.hero-text { padding: 80px 0; }

.hero-eyebrow {
    font-size: 0.65rem; color: var(--gold); letter-spacing: 4px;
    text-transform: uppercase; font-weight: 600; margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
    font-family: 'Cormorant Garamond', serif; font-size: 4rem;
    font-weight: 300; line-height: 1.15; letter-spacing: -0.5px;
    margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-sub {
    font-size: 1.05rem; color: var(--text-mid); line-height: 1.8;
    max-width: 440px; margin-bottom: 40px; font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; }

.hero-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

.hero-circles {
    width: 360px; height: 360px; position: relative;
    display: flex; align-items: center; justify-content: center;
}

.hero-circle-outer {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1px solid rgba(200,164,78,0.1);
}

.hero-circle-mid {
    position: absolute; inset: 60px; border-radius: 50%;
    border: 1px solid rgba(200,164,78,0.06);
}

.hero-circle-inner {
    width: 120px; height: 120px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(200,164,78,0.15), rgba(200,164,78,0.05));
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
}

.hero-circle-inner img { height: 80px; border-radius: 8px; }

.hero-dot { position: absolute; border-radius: 50%; background: var(--gold); }
.hero-dot-1 { width: 6px; height: 6px; top: 10%; right: 5%; opacity: 0.4; }
.hero-dot-2 { width: 4px; height: 4px; bottom: 15%; left: 8%; opacity: 0.3; }
.hero-dot-3 { width: 8px; height: 8px; top: 50%; right: -2%; opacity: 0.2; }

.hero-glow {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,164,78,0.08) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator span {
    font-size: 0.55rem; color: var(--text-faint); letter-spacing: 2px; text-transform: uppercase;
}
.scroll-indicator::after {
    content: ''; width: 1px; height: 24px;
    background: linear-gradient(180deg, var(--text-faint), transparent);
}

/* ═══ STATS ═══ */
.stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    max-width: 1000px; margin: 0 auto; padding: 80px 48px;
}
.stat {
    text-align: center; padding: 24px;
    border-right: 1px solid rgba(200,164,78,0.15);
}
.stat:last-child { border-right: none; }
.stat-num {
    font-family: 'Cormorant Garamond', serif; font-size: 3rem;
    font-weight: 300; color: var(--gold);
}
.stat-label {
    font-size: 0.65rem; color: var(--text-faint); text-transform: uppercase;
    letter-spacing: 2px; margin-top: 4px;
}

/* ═══ BENEFITS ═══ */
.benefits {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(200,164,78,0.08); border-radius: 16px; overflow: hidden;
}
.benefit {
    background: var(--navy); padding: 44px 36px;
    transition: all 0.4s; position: relative;
}
.benefit:hover { background: var(--navy-mid); }
.benefit-num {
    font-family: 'Cormorant Garamond', serif; font-size: 2rem;
    color: var(--gold); opacity: 0.25; font-weight: 300; margin-bottom: 16px;
}
.benefit:hover .benefit-num { opacity: 0.5; }
.benefit h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.45rem;
    font-weight: 500; margin-bottom: 12px; letter-spacing: 0.3px;
    color: #f0f2f5;
}
.benefit p {
    font-size: 0.88rem; color: #a8b8cc; line-height: 1.7; font-weight: 300;
}

/* ═══ PROCESS ═══ */
.process-bg {
    background: linear-gradient(180deg, var(--deep), var(--navy), var(--deep));
    padding: 100px 0;
}

.process-timeline { position: relative; padding-left: 60px; max-width: 700px; }

.process-line {
    position: absolute; left: 23px; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg, var(--gold), rgba(200,164,78,0.1));
}

.proc-step { position: relative; margin-bottom: 48px; }
.proc-step:last-child { margin-bottom: 0; }

.proc-circle {
    position: absolute; left: -60px; top: 0;
    width: 47px; height: 47px; border-radius: 50%;
    border: 1px solid rgba(200,164,78,0.3);
    display: flex; align-items: center; justify-content: center;
    background: var(--deep);
}

.proc-circle span {
    font-family: 'Cormorant Garamond', serif; font-size: 1rem;
    color: var(--gold); font-weight: 300;
}

.proc-step:last-child .proc-circle {
    background: rgba(200,164,78,0.08);
    border-color: rgba(200,164,78,0.4);
}

.proc-step h3 {
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 8px; padding-top: 4px;
}

.proc-step:last-child h3 { color: var(--gold); }

.proc-step p {
    font-size: 0.82rem; color: var(--text-mid); line-height: 1.7;
    font-weight: 300; max-width: 500px;
}

/* ═══ PRICING ═══ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price {
    background: var(--navy); border: 1px solid rgba(200,164,78,0.06);
    border-radius: 16px; padding: 44px 32px; text-align: center;
    transition: all 0.4s; position: relative;
}
.price.featured {
    border-color: rgba(200,164,78,0.2);
    background: linear-gradient(180deg, rgba(200,164,78,0.04) 0%, var(--navy) 40%);
    transform: translateY(-8px);
}
.price.featured::before {
    content: 'RECOMENDADO'; position: absolute; top: -10px; left: 50%;
    transform: translateX(-50%); background: var(--gold); color: var(--deep);
    padding: 4px 20px; border-radius: 20px; font-size: 0.55rem;
    font-weight: 700; letter-spacing: 2px;
}
.price:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.price.featured:hover { transform: translateY(-14px); }

.price-name {
    font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
    color: var(--gold-pale); margin-bottom: 8px; font-weight: 500;
}
.price-val {
    font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
    font-weight: 300; margin: 16px 0; line-height: 1;
}
.price-val small { font-size: 0.9rem; color: var(--text-faint); font-weight: 400; }
.price-desc {
    font-size: 0.78rem; color: var(--text-mid); margin-bottom: 28px;
    line-height: 1.6; font-weight: 300;
}
.price ul { list-style: none; text-align: left; margin-bottom: 32px; }
.price li {
    font-size: 0.78rem; color: var(--text-mid); padding: 10px 0;
    border-bottom: 1px solid rgba(200,164,78,0.04);
    display: flex; align-items: center; gap: 10px; font-weight: 300;
}
.price li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold); opacity: 0.5; flex-shrink: 0;
}

.price-btn {
    display: block; width: 100%; padding: 14px; border-radius: 8px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; text-decoration: none; text-align: center;
    transition: all 0.3s; font-family: 'Outfit', sans-serif; cursor: pointer;
    border: none;
}
.price-btn.solid { background: var(--gold); color: var(--deep); }
.price-btn.solid:hover { box-shadow: 0 8px 24px rgba(200,164,78,0.25); }
.price-btn.lined {
    background: transparent; border: 1px solid var(--text-faint); color: var(--text-mid);
}
.price-btn.lined:hover { border-color: var(--gold); color: var(--gold); }

/* ═══ FAQ ═══ */
.faq-grid { max-width: 680px; }
.faq-item { border-bottom: 1px solid rgba(200,164,78,0.06); }
.faq-q {
    padding: 24px 0; font-size: 0.95rem; font-weight: 500; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
    content: '+'; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
    color: var(--gold); transition: transform 0.3s;
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease;
    font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; font-weight: 300;
    opacity: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; opacity: 1; }

/* ═══ CTA ═══ */
.cta-sec {
    text-align: center; padding: 120px 48px;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,164,78,0.04) 0%, transparent 60%),
        var(--deep);
}
.cta-sec h2 {
    font-family: 'Cormorant Garamond', serif; font-size: 3rem;
    font-weight: 300; margin-bottom: 16px;
}
.cta-sec h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.cta-sec p {
    font-size: 0.95rem; color: var(--text-mid); max-width: 420px;
    margin: 0 auto 40px; line-height: 1.8; font-weight: 300;
}
.cta-note {
    margin-top: 16px; font-size: 0.7rem; color: var(--text-faint);
    letter-spacing: 1px;
}

/* ═══ FOOTER (old classes removed — using .footer-main below) ═══ */

/* ═══ ANIMATIONS (base keyframes) ═══ */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ═══ GSAP reveal targets (added back when GSAP animations are enabled) ═══ */

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    nav { padding: 14px 20px; }
    .nav-r a:not(.nav-cta) { display: none; }

    .hero { padding: 0 20px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero h1 { font-size: 2.4rem; }
    .hero-sub { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-text { order: -1; }
    .hero-visual { padding-top: 20px; }
    .hero-circles { width: 240px; height: 240px; }
    .hero-circle-mid { inset: 40px; }
    .hero-circle-inner { width: 80px; height: 80px; }
    .hero-circle-inner img { height: 52px; }

    .stats { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; }
    .stat { border-right: none; }
    .benefits { grid-template-columns: 1fr; }
    .process-bg { padding: 60px 0; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price.featured { transform: none; }
    .price.featured:hover { transform: translateY(-6px); }
    .footer-main { grid-template-columns: 1fr; text-align: center; padding: 32px 20px; }
    .footer-links { align-items: center; }
    .cta-sec { padding: 80px 20px; }
    .cta-sec h2 { font-size: 2rem; }
    #diferenciais .diff-grid { grid-template-columns: 1fr; border-radius: 12px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .nav-hamburger { display: block; }
    .nav-r {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(8,13,24,0.98); flex-direction: column;
        align-items: center; justify-content: center; gap: 32px; z-index: 100;
    }
    .nav-r.nav-mobile-open { display: flex; }
    .nav-r.nav-mobile-open a:not(.nav-cta) { display: block; font-size: 1rem; }
}

/* ═══ HAMBURGER ═══ */
.nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; z-index: 101;
}
.nav-hamburger span {
    display: block; width: 20px; height: 2px; background: var(--text-mid);
    margin: 4px 0; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ═══ HERO MICROCOPY ═══ */
.hero-microcopy {
    margin-top: 16px; font-size: 0.7rem; color: var(--text-faint);
    letter-spacing: 1px;
}

/* ═══ DIFFERENTIALS ═══ */
#diferenciais .diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(200,164,78,0.06);
    border-radius: 16px;
    overflow: hidden;
}
#diferenciais .diff-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}
#diferenciais .diff-card {
    background: var(--navy);
    padding: 44px 36px;
    transition: all 0.4s;
}
#diferenciais .diff-card:hover { background: var(--navy-mid); }
.diff-num {
    font-family: 'Cormorant Garamond', serif; font-size: 2rem;
    color: var(--gold); opacity: 0.25; font-weight: 300; margin-bottom: 16px;
}
#diferenciais .diff-card:hover .diff-num { opacity: 0.5; }
#diferenciais .diff-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.45rem;
    font-weight: 500; margin-bottom: 12px; letter-spacing: 0.3px;
    color: #f0f2f5;
}
#diferenciais .diff-card p {
    font-size: 0.88rem; color: #a8b8cc; line-height: 1.7; font-weight: 300;
}

/* ═══ SOCIAL PROOF ═══ */
.social-proof-counter {
    font-size: 1rem; color: var(--text-mid); margin-bottom: 48px; font-weight: 300;
}
.social-proof-counter strong { color: var(--gold); font-weight: 600; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
    background: var(--navy); border: 1px solid rgba(200,164,78,0.06);
    border-radius: 16px; padding: 32px 28px;
}
.testimonial-text {
    font-size: 0.85rem; color: var(--text); line-height: 1.8;
    font-weight: 300; font-style: italic; margin-bottom: 20px;
}
.testimonial-name { font-size: 0.82rem; font-weight: 500; color: var(--gold-pale); }
.testimonial-location { font-size: 0.7rem; color: var(--text-faint); margin-top: 2px; }

/* ═══ PRICING ADDITIONS ═══ */
.pricing-anchor {
    font-size: 0.9rem; color: var(--text-mid); margin-bottom: 48px;
    font-weight: 300; line-height: 1.8;
}
.price-brl { display: block; font-size: 0.75rem; color: var(--text-faint); margin-top: 4px; }
.price-guarantee {
    font-size: 0.7rem; color: var(--gold); margin-top: 12px;
    padding: 8px 16px; border: 1px solid rgba(200,164,78,0.15);
    border-radius: 8px; display: inline-block;
}

/* ═══ ABOUT ═══ */
.about-content { max-width: 680px; }
.about-content p {
    font-size: 0.9rem; color: var(--text-mid); line-height: 1.8;
    font-weight: 300; margin-bottom: 16px;
}

/* ═══ FOOTER EXPANDED ═══ */
footer {
    border-top: 1px solid rgba(200,164,78,0.06);
    padding: 0;
    display: block;
}
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    align-items: start;
}
.footer-brand img { height: 32px; opacity: 0.6; border-radius: 4px; }
.footer-tagline {
    font-size: 0.72rem; color: var(--text-faint); margin-top: 10px;
    line-height: 1.6; max-width: 240px;
}
.footer-links {
    display: flex; flex-direction: column; gap: 14px;
    padding-top: 4px;
}
.footer-links a {
    color: var(--text-mid); font-size: 0.75rem; text-decoration: none;
    transition: color 0.3s; letter-spacing: 0.3px;
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
    font-size: 0.65rem; color: var(--text-faint); line-height: 1.8;
    padding-top: 4px;
}
.footer-legal div { margin-bottom: 4px; }
.footer-disclaimer {
    margin-top: 12px; font-size: 0.6rem; opacity: 0.6;
    max-width: 360px; line-height: 1.7;
}

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 99;
    width: 56px; height: 56px; border-radius: 50%;
    background: #0C1222; color: #c8a44e;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(200,164,78,0.15);
    border: 1px solid rgba(200,164,78,0.3);
    transition: all 0.3s; opacity: 0; pointer-events: none;
}
.whatsapp-float.visible { opacity: 1; pointer-events: auto; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(200,164,78,0.25); }

/* ═══ TRUST BAR ═══ */
.trust-bar {
    background: var(--navy);
    border-top: 1px solid rgba(200,164,78,0.06);
    border-bottom: 1px solid rgba(200,164,78,0.06);
    padding: 24px 48px;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
    max-width: 100%;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.trust-item svg {
    flex-shrink: 0;
}
.trust-item span {
    font-size: 0.78rem;
    color: var(--text-mid);
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.trust-sep {
    width: 1px;
    height: 24px;
    background: rgba(200,164,78,0.1);
}
@media (max-width: 900px) {
    .trust-bar {
        flex-direction: column !important;
        gap: 16px;
        padding: 24px 20px;
    }
    .trust-sep { display: none; }
    .trust-item span { font-size: 0.72rem; }
}

/* ═══ FOUNDERS ═══ */
.sec-center {
    text-align: center;
}
.sec-center .sec-desc {
    margin-left: auto;
    margin-right: auto;
}
.founders-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}
.founder {
    max-width: 320px;
    text-align: center;
}
.founder-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 2px solid var(--gold);
    background: var(--navy-mid);
}
.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.founder-photo img[alt="Luciano Carrasqueira"] {
    object-position: center 20%;
}
.founder h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 6px;
}
.founder-role {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.founder p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
}

/* ═══ RESULTS / SOCIAL PROOF PLACEHOLDER ═══ */
.results-sec {
    background: var(--navy);
    padding: 80px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.results-sec .sec-eyebrow {
    justify-content: center;
}
.results-sec .sec-title {
    text-align: center;
}
.results-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}
@media (max-width: 900px) {
    .results-sec { padding: 60px 20px; }
}
