/* 
    MentoriaTrader — 5PI CLONE STYLE
    Fiel ao layout, background futurista e componentes da 5pi.com.br
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --color-orange: #FE5904;
    --color-bg: #000000;
    --color-text: #FFFFFF;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
}

html { overflow-x: hidden; }

/* --- BACKGROUND FUTURÍSTICO (Estilo 5PI) --- */
.futuristic-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

/* Grid Geométrico */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* Blooms Animados */
.bloom {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 15s infinite alternate ease-in-out;
}

.bloom-orange {
    width: 600px; height: 600px;
    background: var(--color-orange);
    top: -100px; right: -100px;
}

.bloom-blue {
    width: 500px; height: 500px;
    background: #1e61bd;
    bottom: -50px; left: -50px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' 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)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* --- HEADER --- */
header {
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 100;
}

.logo img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a:hover { opacity: 1; }

.btn-start {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-start:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 60px 0;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(254, 89, 4, 0.4);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(254, 89, 4, 0.9);
    margin-bottom: 24px;
    background: rgba(254, 89, 4, 0.08);
    animation: badge-pulse 3s ease-in-out infinite;
}
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-orange);
    box-shadow: 0 0 8px var(--color-orange);
    animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%, 100% { border-color: rgba(254, 89, 4, 0.4); }
    50%       { border-color: rgba(254, 89, 4, 0.8); }
}
@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 1.57rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
    max-width: 520px;
}

.hero-text h2 {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 40px;
    max-width: 500px;
}

/* CTA — Premium Clean */
.hero-pillars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0 32px;
}
.hero-pillar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}
.hero-pillar svg {
    color: rgba(254, 89, 4, 0.5);
    flex-shrink: 0;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: #fff;
    color: #0a0a0a;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 3px;
    border: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    overflow: hidden;
}

/* Shimmer dourado ao hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(197,160,89,0.2), transparent);
    transition: left 0.55s ease;
}

.cta-button:hover::before { left: 130%; }

.cta-button:hover {
    background: #f5f0e8;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.cta-button .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    opacity: 0.5;
    font-size: 1rem;
}
.cta-button:hover .arrow { transform: translateX(5px); opacity: 1; }

/* HERO VISUAL (Right Column) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.jeff-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.jeff-glow {
    position: absolute;
    top: 10%; left: 15%;
    width: 70%; height: 70%;
    background: radial-gradient(circle, rgba(254,89,4,0.18) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.jeff-img {
    width: 145%;
    max-width: 860px;
    position: relative;
    z-index: 2;
    transform: translateX(5%);
}

/* Floating Stat Cards */
.stat-float {
    position: absolute;
    z-index: 10;
    background: rgba(10, 8, 5, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(254, 89, 4, 0.3);
    border-radius: 10px;
    padding: 14px 18px;
    min-width: 140px;
    animation: float-bob 4s ease-in-out infinite alternate;
}
.stat-float p {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
    line-height: 1.3;
}
.stat-val {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1;
}
.stat-unit {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
}

.stat-1 { top: 10%;   right: -2%;  animation-delay: 0s; }
.stat-2 { top: 48%;   right: -5%;  animation-delay: 1s; }
.stat-3 { bottom: 22%; left: -2%;  animation-delay: 2s; }

@keyframes float-bob {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    pointer-events: none;
}
.scroll-line {
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, var(--color-orange), transparent);
    animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* Video Play Button — Frosted Glass + Stroke Triangle */
.video-play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 88px; height: 88px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.play-svg {
    width: 100%; height: 100%;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.video-play-button:hover .play-svg {
    transform: scale(1.06);
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.7));
}


/* Pulso externo */
.video-play-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: pulse-ring 2.8s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0%   { transform: scale(1);   opacity: 0.5; }
    100% { transform: scale(2);   opacity: 0; }
}

/* --- VIDEO MODAL (LIGHTBOX) --- */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -50px; right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-text h1 { font-size: 2.13rem; }
    .hero-text h2 { margin: 0 auto 40px; }
    .hero-visual { order: -1; }
    .scroll-indicator { display: none; }
    .hero-pillars { align-items: flex-start; width: fit-content; }
}

/* ============================================
   SISTEMA DE REVEAL (IntersectionObserver)
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: none; }

.reveal-child {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.in-view .reveal-child {
    opacity: 1;
    transform: none;
}
.in-view .reveal-child:nth-child(2) { transition-delay: 0.15s; }
.in-view .reveal-child:nth-child(3) { transition-delay: 0.3s;  }
.in-view .reveal-child:nth-child(4) { transition-delay: 0.45s; }
.in-view .reveal-child:nth-child(5) { transition-delay: 0.6s;  }

/* ============================================
   DOBRAS — BASE
============================================ */
.dobra {
    padding: 120px 60px;
    position: relative;
}

.dobra-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.8);
    display: block;
    margin-bottom: 28px;
}

.dobra-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 35px;
    max-width: 700px;
}

.dobra-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 650px;
    margin-bottom: 20px;
}

.dobra-body {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.6;
    max-width: 600px;
    margin-bottom: 60px;
}

.text-highlight {
    display: block;
    color: #fff;
    opacity: 1;
    font-weight: 600;
    margin-top: 8px;
}

/* ============================================
   DOBRA 2 — THESIS / IMERSÃO
============================================ */
.dobra-2 {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.dobra-2-hero-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 25px;
    text-align: center;
    max-width: 100%;
}

.dobra-2-thesis {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 620px;
    margin: 0 auto 64px;
    text-align: center;
}

.thesis-highlight {
    display: block;
    color: #fff;
    opacity: 1;
    font-weight: 400;
    margin-top: 12px;
}

/* Card: O que você vai viver */
.viver-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.viver-card-left {
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.viver-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
    display: block;
}

.viver-yes-side .viver-label {
    color: var(--color-orange);
    opacity: 0.8;
}

.viver-label-red {
    color: rgba(220, 60, 60, 0.8) !important;
}

.viver-yes-side h3.viver-title-heading {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.viver-yes-side p.viver-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 28px;
}

.viver-not-side {
    background: rgba(255,255,255,0.01);
}

.viver-yes-side {
    background: rgba(254,89,4,0.03);
    border-left: 1px solid rgba(254,89,4,0.12);
}

.not-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}

.not-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
}

.not-mark {
    color: rgba(220, 60, 60, 0.7);
    font-size: 1rem;
    flex-shrink: 0;
}

.viver-card-right {
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.stack-layer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s ease, color 0.3s ease;
}
.stack-layer-item:hover {
    border-color: rgba(254,89,4,0.3);
    color: rgba(255,255,255,0.8);
}

.stack-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--color-orange);
    opacity: 0.6;
    flex-shrink: 0;
}

/* ============================================
   DOBRA 3 — APRENDE / RECEBE
============================================ */
/* ============================================
   DOBRA 2B — DUPLA DE AUTORIDADE
============================================ */
.dobra-mentores {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.mentores-hero-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-align: center;
}

.mentores-hero-sub {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.6;
    margin-bottom: 60px;
    text-align: center;
}
.mentores-hero-sub em { font-style: italic; color: #fff; opacity: 1; }

.mentores-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 72px;
}

.mentor-card-new {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 36px;
    background: rgba(255,255,255,0.02);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: border-color 0.3s, background 0.3s;
}
.mentor-card-new:hover {
    border-color: rgba(254,89,4,0.25);
    background: rgba(254,89,4,0.03);
}
.card-highlight-new {
    border-color: rgba(254,89,4,0.2);
}

/* ============================================
   TECH CARDS (mentor)
============================================ */
.mentores-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.tech-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #080c10;
    border: 1px solid rgba(254,89,4,0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 16px 60px rgba(0,0,0,0.6);
}
.tech-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 0 1px rgba(254,89,4,0.3) inset,
        0 32px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(254,89,4,0.1);
}
.tc-accent {
    border-color: rgba(254,89,4,0.35);
}

/* Scanlines */
.tc-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255,255,255,0.012) 3px,
        rgba(255,255,255,0.012) 4px
    );
    pointer-events: none;
    z-index: 5;
}

/* Corner brackets */
.tc-corner {
    position: absolute;
    width: 16px; height: 16px;
    z-index: 6;
    pointer-events: none;
}
.tc-corner-tl { top: 8px; left: 8px;   border-top: 2px solid var(--color-orange); border-left: 2px solid var(--color-orange); }
.tc-corner-tr { top: 8px; right: 8px;  border-top: 2px solid var(--color-orange); border-right: 2px solid var(--color-orange); }
.tc-corner-bl { bottom: 8px; left: 8px;  border-bottom: 2px solid rgba(254,89,4,0.4); border-left: 2px solid rgba(254,89,4,0.4); }
.tc-corner-br { bottom: 8px; right: 8px; border-bottom: 2px solid rgba(254,89,4,0.4); border-right: 2px solid rgba(254,89,4,0.4); }

/* Photo */
.tc-photo-wrap {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    flex-shrink: 0;
}
.tc-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(15%) contrast(1.08);
    transition: transform 0.5s ease;
}
.tech-card:hover .tc-photo { transform: scale(1.03); }

.tc-photo-grad {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 40%, #080c10 100%),
        linear-gradient(to right, rgba(254,89,4,0.08) 0%, transparent 40%);
}

/* Badge de posição */
.tc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-orange);
    background: rgba(254,89,4,0.1);
    border: 1px solid rgba(254,89,4,0.3);
    border-radius: 2px;
    padding: 5px 10px;
    z-index: 3;
    backdrop-filter: blur(8px);
}

/* Instagram */
.tc-insta {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    z-index: 3;
    transition: color 0.2s;
    backdrop-filter: blur(4px);
}
.tc-insta:hover { color: var(--color-orange); }

/* Body */
.tc-body {
    position: relative;
    z-index: 2;
    padding: 20px 24px 28px;
    background: linear-gradient(to bottom, #080c10, #0b0f13);
    border-top: 1px solid rgba(254,89,4,0.15);
}

.tc-header-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tc-tag {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-orange);
    opacity: 0.7;
}

.tc-name {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 8px;
    white-space: nowrap;
}

.tc-role {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.3;
    line-height: 1.5;
    margin-bottom: 16px;
}

.tc-divider {
    height: 1px;
    background: linear-gradient(to right, var(--color-orange), rgba(254,89,4,0.1), transparent);
    margin-bottom: 16px;
    opacity: 0.5;
}

.tc-stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.tc-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.tc-stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    line-height: 1;
    letter-spacing: -1px;
}
.tc-stat-num em {
    font-style: normal;
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0;
    vertical-align: super;
    margin-right: 1px;
}
.tc-stat-num.tc-orange {
    color: var(--color-orange);
    text-shadow: 0 0 28px rgba(254,89,4,0.4);
}
.tc-stat-num.tc-orange em {
    color: rgba(254,89,4,0.5);
}

.tc-stat-unit {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
}
.tc-stat-unit.tc-orange { color: rgba(254,89,4,0.5); }

.tc-stat-desc {
    font-size: 0.62rem;
    opacity: 0.35;
    letter-spacing: 0.04em;
    margin-top: 4px;
}

.tc-stat-sep {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.07);
    flex-shrink: 0;
    margin: 0 8px;
}

/* Inline stats */
.tc-stats-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tc-inline-stat {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}
.tc-inline-stat em {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    margin-left: 3px;
}
.tc-inline-stat.tc-orange {
    color: rgba(255,255,255,0.85);
}
.tc-inline-stat.tc-orange em {
    color: rgba(255,255,255,0.35);
}

.tc-inline-sep {
    color: rgba(255,255,255,0.15);
    font-size: 1rem;
}

/* Insta tag no body */
.tc-insta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.tc-insta-tag:hover { color: var(--color-orange); }

/* Fechamento */
.mentores-fechamento-new {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
}

.fechamento-riscado {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.35);
}

.fechamento-destaque {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}


.fechamento-riscado {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    opacity: 0.3;
    text-decoration: line-through;
}

.fechamento-destaque {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

.dobra-3 {
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.dobra-3::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 600px; height: 600px;
    background: var(--color-orange);
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}

.dobra-3::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 80% 20%, black, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 80% 20%, black, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dobra-3 .dobra-container {
    position: relative;
    z-index: 1;
}

.dobra-3-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 40px;
    text-align: center;
}

/* Pillar Cards — 3 cards soltos */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.pillar-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s, background 0.3s;
}
.pillar-card:hover {
    border-color: rgba(254,89,4,0.3);
    background: rgba(254,89,4,0.04);
}
.pillar-icon {
    font-size: 1.6rem;
    color: var(--color-orange);
    opacity: 0.7;
}
.p-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}
.p-text {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.45;
}

/* Accordion */
.territory-stack {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 48px;
}
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.accordion-item:last-child { border-bottom: none; }
.acc-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    transition: background 0.3s;
    user-select: none;
}
.acc-trigger:hover { background: rgba(254,89,4,0.03); }
.acc-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.accordion-item.open .acc-title { color: var(--color-orange); }
.acc-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.3);
    transition: all 0.35s ease;
    flex-shrink: 0;
}
.accordion-item.open .acc-icon {
    transform: rotate(45deg);
    border-color: rgba(254,89,4,0.5);
    color: var(--color-orange);
    background: rgba(254,89,4,0.08);
}
.acc-drawer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1); }
.accordion-item.open .acc-drawer { max-height: 300px; }
.acc-inner { padding: 0 30px 28px; }
.acc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.acc-list li {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    transition: color 0.3s;
}
.acc-list li::before { content: '→'; position: absolute; left: 0; color: rgba(254,89,4,0.5); }
.acc-list li:hover { color: rgba(255,255,255,0.9); }

/* Moat Matrix */
.moat-matrix {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 48px;
}
.moat-column { padding: 48px 50px; }
.moat-divider { width: 1px; background: rgba(255,255,255,0.07); }
.moat-col-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
}
.m-icon { font-size: 1.2rem; color: var(--color-orange); opacity: 0.7; }
.m-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.moat-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.moat-list li {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
    transition: color 0.3s, padding-left 0.3s;
}
.moat-list li::before { content: '—'; position: absolute; left: 0; color: rgba(254,89,4,0.5); }
.moat-list li:hover { color: rgba(255,255,255,0.9); padding-left: 24px; }

/* Impact phrase */
.impact-phrase {
    text-align: center;
    padding: 60px 20px 10px;
}
.impact-phrase p {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.4;
    opacity: 0.8;
}
.impact-phrase em { color: var(--color-orange); font-style: normal; }

/* ============================================
   DOBRA 4 — OFERTA + FORM
============================================ */
.dobra-4 { border-top: 1px solid rgba(255,255,255,0.06); }

.dobra-4-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-align: center;
}

.dobra-4-sub {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.55;
    max-width: 600px;
    margin: 0 auto 64px;
    text-align: center;
    line-height: 1.7;
}

/* Grid oferta */
.oferta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Info lado esquerdo */
.oferta-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    align-self: stretch;
}

.invest-block {
    padding-bottom: 32px;
}
.invest-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
    opacity: 0.7;
    display: block;
    margin-bottom: 14px;
}
.invest-preco {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
}
.invest-preco strong { color: #fff; }
.invest-parcela {
    font-size: 0.8rem;
    opacity: 0.35;
    letter-spacing: 0.04em;
}

.oferta-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 24px 0;
}

.reflexao-block { padding-bottom: 8px; }
.reflexao-intro {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.35;
    margin-bottom: 18px;
}
.reflexao-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.reflexao-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
    line-height: 1.5;
}
.ref-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--color-orange);
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 8px;
}

.oferta-call {
    font-size: 0.9rem;
    opacity: 0.4;
    line-height: 1.7;
    font-style: italic;
}

/* Form lado direito */
.oferta-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(254,89,4,0.8);
    border: 1px solid rgba(254,89,4,0.25);
    border-radius: 20px;
    padding: 6px 14px;
    background: rgba(254,89,4,0.06);
    margin-bottom: 20px;
    width: fit-content;
}

.form-title-new {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 28px;
    line-height: 1.3;
}

.form-field { margin-bottom: 12px; }
.form-field input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 15px 18px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-field input::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus {
    border-color: rgba(254,89,4,0.4);
    box-shadow: 0 0 0 3px rgba(254,89,4,0.08);
}

.form-submit-new {
    width: 100%;
    margin-top: 8px;
    padding: 18px 24px;
    background: var(--color-orange);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.form-submit-new:hover {
    background: #ff6a1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(254,89,4,0.35);
}
.form-submit-new .arrow { transition: transform 0.3s; }
.form-submit-new:hover .arrow { transform: translateX(5px); }

/* ============================================
   FAQ SECTION
============================================ */
/* Container utilitário */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container.narrow {
    max-width: 860px;
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

.section-faq {
    padding: 100px 20px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-header {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-main-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 12px;
}

.faq-main-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    max-width: 480px;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    cursor: pointer;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(254,89,4,0.3);
    background: rgba(255,255,255,0.05);
}

.faq-item.active {
    border-color: rgba(254,89,4,0.5);
    background: rgba(254,89,4,0.04);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 24px 24px;
}

.faq-answer p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   HELP CTA
============================================ */
.section-help-cta {
    background-color: var(--color-orange);
    padding: 60px 20px;
}

.help-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.help-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #000;
    margin: 0;
    letter-spacing: -0.02em;
}

.btn-white-pill {
    background-color: #fff;
    color: #000;
    padding: 14px 28px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.btn-white-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-white-pill svg {
    color: #000;
    flex-shrink: 0;
}

/* ============================================
   MAIN FOOTER
============================================ */
.main-footer {
    background: #000;
    padding: 80px 20px 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}

.footer-accordions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 780px;
    margin: 0 auto;
}

.footer-accordion-item {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-accordion-item:hover {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.15);
}

.footer-accordion-item.active {
    border-color: rgba(255,255,255,0.1);
}

.footer-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    transition: color 0.3s ease;
}

.footer-accordion-header:hover {
    color: #fff;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.3;
    color: #fff;
    flex-shrink: 0;
}

.footer-accordion-item:hover .accordion-arrow {
    opacity: 0.6;
}

.footer-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--color-orange);
}

.footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-accordion-item.active .footer-accordion-content {
    max-height: 1000px;
}

.content-inner {
    padding: 0 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    line-height: 1.7;
}

.content-inner p {
    margin: 0;
}

.content-inner strong {
    color: rgba(255,255,255,0.6);
}

.contact-box {
    margin-top: 8px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-box p {
    display: flex;
    gap: 8px;
    margin: 0 !important;
}

.footer-social {
    padding: 32px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 24px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.social-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
}

.social-icons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-icons a {
    color: #fff;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    opacity: 1;
    transform: scale(1.15);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255,255,255,0.8);
}

.footer-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.footer-info p {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

/* ============================================
   RESPONSIVE
============================================ */
/* ============================================
   TABLET — max-width: 768px
============================================ */
@media (max-width: 768px) {

    /* --- Header --- */
    header {
        padding: 20px 24px;
        justify-content: center;
    }
    .logo img { height: 38px; }

    /* --- Hero --- */
    .hero {
        padding: 100px 24px 60px;
        align-items: flex-start;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-visual { order: -1; }
    .hero-text h1 { font-size: 1.7rem; letter-spacing: -0.5px; }
    .hero-text h2 { font-size: 1rem; margin: 0 auto 32px; }

    .hero-badge { margin: 0 auto 20px; }

    .hero-pillars {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 28px;
    }

    .cta-button { margin: 0 auto; }

    /* Jeff wrap — ocupa toda a largura, stats dentro dos limites */
    .jeff-wrap {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .jeff-img { width: 145%; margin: 0 auto; display: block; }

    .stat-float {
        padding: 10px 12px;
        min-width: 0;
        width: 44%;
    }
    .stat-float p {
        font-size: 0.62rem;
        line-height: 1.2;
        white-space: normal;
    }
    .stat-float .stat-val { font-size: 1.3rem; }
    .stat-1 { top: 8%; left: 2%; }
    .stat-2 { top: 8%; right: 2%; }
    .stat-3 { bottom: 10%; left: 50%; transform: translateX(-50%); width: 52%; }

    .scroll-indicator { display: none; }
    .stat-float { display: none; }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-pillars {
        align-items: flex-start;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    /* --- Dobra geral --- */
    .dobra { padding: 70px 24px; }
    .dobra-container { max-width: 100%; }

    /* --- Dobra 2 --- */
    .dobra-2-hero-title { font-size: 1.5rem; }
    .dobra-2-thesis { font-size: 0.95rem; }

    .viver-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .viver-card-left,
    .viver-card-right {
        border-radius: 0;
    }
    .viver-card-left { border-radius: 12px 12px 0 0; }
    .viver-card-right { border-radius: 0 0 12px 12px; }

    .viver-title-heading { font-size: 1.3rem; }

    /* --- Dobra 2B (Mentores) --- */
    .mentores-hero-title { font-size: 1.5rem; }
    .mentores-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .tc-photo-wrap { height: 320px; }
    .tc-name { font-size: 1.25rem; }
    .tc-stat-num { font-size: 2.2rem; }

    .fechamento-riscado { font-size: 0.95rem; }
    .fechamento-destaque { font-size: 1.3rem; }

    /* --- Dobra 3 --- */
    .dobra-3-title { font-size: 1.5rem; }
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .moat-matrix {
        grid-template-columns: 1fr;
    }
    .moat-column { padding: 28px 24px; }
    .moat-divider {
        width: 100%;
        height: 1px;
    }

    /* --- Dobra 4 --- */
    .dobra-4-title { font-size: 1.5rem; }
    .oferta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .oferta-info { align-self: auto; }

    /* --- FAQ --- */
    .section-faq { padding: 70px 20px; }
    .faq-main-title { font-size: 1.5rem; }
    .faq-question { padding: 16px 18px; }
    .faq-question h4 { font-size: 0.88rem; }
    .faq-answer-inner { padding: 0 18px 20px; }

    /* --- Help CTA --- */
    .help-cta-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 0 24px;
    }
    .help-title { font-size: 1.8rem; }

    /* --- Footer --- */
    .main-footer { padding: 60px 20px 40px; }
    .footer-social { padding: 24px 0 16px; margin-top: 16px; }
    .footer-legal-links { flex-direction: column; gap: 8px; }
}

/* ============================================
   MOBILE — max-width: 480px
============================================ */
@media (max-width: 480px) {

    /* --- Margem lateral global --- */
    body { padding: 0 15px; }
    .futuristic-bg { left: -15px; width: calc(100% + 30px); }

    /* --- Header --- */
    header { padding: 16px 0; justify-content: center; }

    .stat-float { display: none; }

    /* --- Hero --- */
    .hero { padding: 90px 20px 50px; }
    .hero-text h1 { font-size: 1.4rem; }
    .hero-text h2 { font-size: 0.9rem; }

    .hero-badge {
        font-size: 0.62rem;
        padding: 6px 14px;
    }

    .hero-pillars { gap: 8px; }
    .hero-pillar { font-size: 0.75rem; padding: 6px 10px; }

    .cta-button {
        font-size: 0.78rem;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

    .hero-pillars { gap: 6px; margin: 16px 0 24px; }
    .hero-pillar { font-size: 0.65rem; gap: 8px; }
    .hero-pillar svg { width: 11px; height: 11px; }

    /* Jeff — imagem grande com fade na base */
    .jeff-wrap {
        width: 100%;
        max-width: 100%;
        margin-bottom: -28%;
    }
    .jeff-img { width: 145%; position: relative; z-index: 1; }

    /* Texto sobe por cima da imagem */
    .hero-text {
        position: relative;
        z-index: 3;
    }

    .stat-float { display: none; }

    /* --- Dobras --- */
    .dobra { padding: 56px 20px; }

    .dobra-2-hero-title,
    .dobra-3-title,
    .dobra-4-title,
    .mentores-hero-title { font-size: 1.35rem; letter-spacing: -0.5px; }

    .dobra-2-thesis { font-size: 0.88rem; }

    /* Viver card */
    .viver-card-left,
    .viver-card-right { padding: 24px 20px; }
    .viver-title-heading { font-size: 1.1rem; }
    .viver-subtitle { font-size: 0.85rem; }
    .not-list li { font-size: 0.85rem; }
    .stack-layer-item { font-size: 0.85rem; }

    /* Mentores */
    .mentores-cards { max-width: 100%; }
    .tc-photo-wrap { height: 380px; }
    .tc-name { font-size: 1.1rem; white-space: normal; }
    .tc-role { font-size: 0.55rem; }
    .tc-stats-inline { flex-wrap: wrap; gap: 6px; }
    .tc-inline-stat { font-size: 0.8rem; }
    .tc-stat-num { font-size: 1.8rem; }
    .tc-inline-sep { display: none; }
    .tc-body { padding: 16px; }

    .fechamento-riscado { font-size: 0.88rem; }
    .fechamento-destaque { font-size: 1.15rem; }

    /* Pillars */
    .pillar-card { padding: 20px; }

    /* Accordion */
    .acc-title { font-size: 0.9rem; }
    .acc-list li { font-size: 0.85rem; }

    /* Moat */
    .m-col-title { font-size: 0.9rem; }
    .moat-list li { font-size: 0.85rem; }

    /* Impact */
    .impact-phrase p { font-size: 1rem; }

    /* Oferta */
    .dobra-4-sub { font-size: 0.88rem; }
    .reflexao-intro { font-size: 0.88rem; }
    .reflexao-list li { font-size: 0.88rem; }
    .oferta-call { font-size: 0.88rem; }

    /* Form */
    .oferta-form { padding: 24px 20px; }
    .form-title-new { font-size: 1rem; }
    .form-field input { font-size: 0.88rem; }
    .form-submit-new { font-size: 0.88rem; padding: 14px 20px; }

    /* FAQ */
    .section-faq { padding: 56px 16px; }
    .faq-main-title { font-size: 1.35rem; }
    .faq-main-sub { font-size: 0.85rem; }
    .faq-question { padding: 14px 16px; gap: 12px; }
    .faq-question h4 { font-size: 0.83rem; }
    .faq-answer-inner { padding: 0 16px 18px; }
    .faq-answer p { font-size: 0.83rem; }

    /* Help CTA */
    .section-help-cta { padding: 48px 20px; }
    .help-title { font-size: 1.5rem; }
    .btn-white-pill { font-size: 0.88rem; padding: 12px 22px; }

    /* Footer */
    .main-footer { padding: 48px 16px 32px; }
    .footer-accordion-header { padding: 14px 16px; font-size: 0.85rem; }
    .content-inner { padding: 0 16px 20px; font-size: 0.78rem; }
    .footer-info p { font-size: 0.6rem; }
}

