/* ==========================================================================
   DESIGN SYSTEM - ARQUITETURA R.E.P.™ - TN.CO (UPGRADED)
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    /* Color Palette */
    --bg-base: #050505;
    --bg-surface: #0b0b0b;
    --bg-card: #111111;
    --primary: #FF6A1A;
    --primary-hover: #D95A16;
    
    /* Typography Colors */
    --text-main: #F5F5F5;
    --text-muted: #A0A0A0;
    
    /* Borders & Glows */
    --border-sutil: rgba(255, 255, 255, 0.06);
    --glow-primary: 0 0 40px rgba(255, 106, 26, 0.15);
    --glow-card-hover: 0 10px 40px rgba(255, 106, 26, 0.08);
    
    /* Layout & Animation */
    --max-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-standard: 12px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
}

/* 2. Global Utilities & Premium Elements */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.section-border-top {
    border-top: 1px solid var(--border-sutil);
}

.text-center { text-align: center; }
.text-orange { color: var(--primary); }

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: -10px auto 48px auto;
}

.highlight-text {
    color: var(--primary);
    background: linear-gradient(135deg, #FF6A1A 0%, #FFB074 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 106, 26, 0.08);
    color: var(--primary);
    border: 1px solid rgba(255, 106, 26, 0.2);
    margin-bottom: 24px;
}

/* Urgency Vacancy Pulser */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 106, 26, 0.08);
    border: 1px solid rgba(255, 106, 26, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse-breathing 1.5s infinite ease-in-out;
}

@keyframes pulse-breathing {
    0%, 100% { transform: scale(1); opacity: 0.5; box-shadow: 0 0 4px var(--primary); }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--primary); }
}

.margin-bottom-30 { margin-bottom: 30px; }
.margin-top-20 {
    margin-top: 20px;
    display: block;
}

/* Premium SVGs & Telemetry */
.spinning-ring {
    transform-origin: center;
    animation: ring-pulse 6s ease-in-out infinite;
}

.spinning-ring-rev {
    transform-origin: center;
    animation: ring-pulse-rev 4s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { opacity: 0.25; filter: drop-shadow(0 0 2px rgba(255, 106, 26, 0.05)); }
    50% { opacity: 0.75; filter: drop-shadow(0 0 8px rgba(255, 106, 26, 0.25)); }
}

@keyframes ring-pulse-rev {
    0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.05)); }
    50% { opacity: 0.15; filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.01)); }
}

.pulse {
    transform-origin: center;
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.9; }
}

/* Cinematic Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Scroll Animation Hooks */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 4px 20px rgba(255, 106, 26, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: scale(1.02);
    box-shadow: 0 6px 30px rgba(255, 106, 26, 0.4);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-sutil);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: scale(1.02);
}

.btn-glow:hover {
    box-shadow: var(--glow-primary);
}

/* 4. Navbar [NAV] */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-sutil);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo, .footer-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-main);
    text-decoration: none;
}

.logo span, .footer-logo span {
    color: var(--primary);
}

.btn-nav-cta {
    padding: 10px 24px;
    font-size: 13px;
    background-color: var(--primary);
    color: var(--text-main);
}

.btn-nav-cta:hover {
    background-color: var(--primary-hover);
    transform: scale(1.03);
}

/* 5. Hero Section [HERO] */
.hero-section {
    position: relative;
    padding: 180px 0 120px 0;
    background-color: var(--bg-base);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 106, 26, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    color: var(--text-main);
}

/* Refactored Hero Subtitle Split */
.hero-subtitle-split {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subtitle-main {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.6;
}

.subtitle-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.cta-credibility {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    padding-left: 4px;
}

/* Hero Visual SVG */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 106, 26, 0.1));
}

.hero-source-caption {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 40px;
    font-style: italic;
    opacity: 0.7;
}

.telemetry-card {
    position: absolute;
    top: 20%;
    left: -10px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: float-telemetry 6s ease-in-out infinite;
}

.telemetry-card.bottom-right {
    top: auto;
    bottom: 20%;
    left: auto;
    right: -10px;
    animation-delay: 3s;
}

.card-glow {
    box-shadow: 0 0 30px rgba(255, 106, 26, 0.08);
}

.telemetry-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.telemetry-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
}

@keyframes float-telemetry {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 6. Block 3: The Problem [BLOCO — O PROBLEMA] */
.problem-section {
    background-color: var(--bg-surface);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.problem-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    transition: var(--transition-smooth);
}

.problem-item:hover {
    border-color: rgba(255, 106, 26, 0.2);
    box-shadow: 0 0 30px rgba(255, 106, 26, 0.05);
    transform: translateX(6px);
}

.problem-accent-dash {
    width: 24px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 4px;
    flex-shrink: 0;
}

.problem-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-main);
}

/* Redesigned Prominent Typographical Callout for Problem */
.problem-conclusion-prominent {
    margin-top: 80px;
}

.conclusion-inner-card {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 106, 26, 0.15);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--glow-primary);
    overflow: hidden;
}

.card-quote-icon {
    font-size: 140px;
    font-family: Georgia, serif;
    color: rgba(255, 106, 26, 0.04);
    position: absolute;
    top: -20px;
    left: 40px;
    line-height: 1;
    font-weight: bold;
}

.quote-text-primary {
    font-size: 22px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.quote-text-highlight {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255, 106, 26, 0.1);
}

/* [BLOCO — CREDIBILIDADE / PROVA SOCIAL DO NICOLAS (EARLY)] */
.early-credentials {
    position: relative;
    background-color: var(--bg-base);
    overflow: hidden;
}

.early-cred-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 106, 26, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.credentials-stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.cred-stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 48px 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cred-stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 106, 26, 0.25);
    box-shadow: var(--glow-primary);
}

.stat-num-wrapper {
    margin-bottom: 20px;
}

.stat-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 106, 26, 0.2);
}

.stat-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* [BLOCO — DEPOIMENTOS / CASES (NEW)] */
.cases-section {
    background-color: var(--bg-surface);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.case-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    border-color: rgba(255, 106, 26, 0.2);
    box-shadow: var(--glow-card-hover);
    transform: translateY(-4px);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-sutil);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.case-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.case-niche {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.case-badge-result {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
}

.case-body {
    flex: 1;
}

.case-quote {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

/* Block 4: The 5 Bottlenecks [BLOCO — OS 5 GARGALOS] */
.bottlenecks-section {
    background-color: var(--bg-base);
}

.bottlenecks-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.bottleneck-card {
    grid-column: span 2; /* 3 cards on the first row (2 + 2 + 2 = 6) */
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-standard);
    padding: 48px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.bottlenecks-grid :nth-child(n+4) {
    grid-column: span 3; /* 2 cards on the second row (3 + 3 = 6) */
}

.bottleneck-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 106, 26, 0.3);
    border-left-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.bottleneck-card .bg-number {
    position: absolute;
    right: 24px;
    bottom: -10px;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 106, 26, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.bottleneck-card:hover .bg-number {
    color: rgba(255, 106, 26, 0.06);
    transform: scale(1.05);
}

.bottleneck-card .card-content {
    position: relative;
    z-index: 2;
}

.bottleneck-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.bottleneck-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Block 5: The Solution [BLOCO — A SOLUÇÃO] */
.solution-section {
    background-color: var(--bg-surface);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.solution-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 48px 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 106, 26, 0.2);
    box-shadow: var(--glow-primary);
}

.solution-card:hover .card-border-glow {
    opacity: 1;
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: rgba(255, 106, 26, 0.08);
    border: 1px solid rgba(255, 106, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.solution-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.solution-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* R-E-P Glowing branding letters styles */
.rep-letter {
    color: var(--text-main);
    font-weight: 800;
    transition: var(--transition-smooth);
}

.solution-card:hover .rep-letter {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.solution-card.active-glow .rep-letter {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

/* [BLOCO — COMPARATIVO ANTES VS DEPOIS (NEW)] */
.comparison-section {
    background-color: var(--bg-base);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.comparison-column {
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-radius: 16px;
    padding: 48px;
    transition: var(--transition-smooth);
}

.comp-header {
    border-bottom: 1px solid var(--border-sutil);
    padding-bottom: 28px;
    margin-bottom: 36px;
}

.comp-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.comp-label.label-red {
    background-color: rgba(239, 68, 68, 0.08);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-label.label-green {
    background-color: rgba(16, 185, 129, 0.08);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.comparison-column h3 {
    font-size: 24px;
    font-weight: 700;
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.comp-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.comp-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.comp-icon.red {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.comp-icon.green {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.comp-list li strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.comp-list li p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.comp-antes:hover {
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.04);
}

.comp-depois:hover {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.04);
}

/* 9. Block 6: How It Works [BLOCO — COMO FUNCIONA] */
.how-it-works {
    background-color: var(--bg-surface);
}

/* Journey Layout with Progress Line */
.journey-grid-wrapper {
    position: relative;
    margin-top: 60px;
}

.timeline-progress-container {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.timeline-line-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--border-sutil);
    border-radius: 4px;
}

.timeline-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%; /* Adjusted dynamically on scroll via JS */
    background: linear-gradient(180deg, var(--primary) 0%, #FFB074 100%);
    box-shadow: 0 0 15px var(--primary);
    border-radius: 4px;
    transition: height 0.1s ease-out;
}

.journey-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.journey-column {
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 48px;
}

.journey-header {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-sutil);
    padding-bottom: 24px;
}

.journey-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
    margin-bottom: 16px;
}

.journey-badge.individual {
    background-color: rgba(255, 106, 26, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 106, 26, 0.2);
}

.journey-badge.collective {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-sutil);
}

.journey-col-title {
    font-size: 24px;
    font-weight: 700;
}

.journey-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.journey-list li {
    display: flex;
    gap: 20px;
    position: relative;
}

.list-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid var(--bg-card);
    box-shadow: 0 0 10px var(--primary);
    margin-top: 6px;
    flex-shrink: 0;
    z-index: 2;
    transition: var(--transition-smooth);
}

.journey-step-item.active-dot .list-dot {
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    transform: scale(1.1);
}

.journey-list li h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.journey-list li p {
    font-size: 14px;
    color: var(--text-muted);
}

/* 10. Block 7: Metrics / Numbers [BLOCO — NÚMEROS] */
.metrics-section {
    position: relative;
    background-color: var(--bg-surface);
    overflow: hidden;
    padding: 80px 0;
    border-top: 1px solid var(--border-sutil);
    border-bottom: 1px solid var(--border-sutil);
}

.metrics-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 106, 26, 0.1) 0%, rgba(0, 0, 0, 0) 75%);
    pointer-events: none;
    z-index: 1;
}

.metrics-grid-horizontal {
    position: relative;
    display: flex;
    justify-content: center; /* Center-align wrapped items for perfect balance */
    flex-wrap: wrap;
    gap: 40px 30px; /* 40px vertical space, 30px horizontal gap */
    z-index: 2;
}

.metric-item {
    width: calc(25% - 30px); /* Symmetrical 4-column row layout on desktop */
    min-width: 180px; /* Wraps smoothly on smaller viewports */
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.metric-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* 11. Block 8: What You Receive [BLOCO — O QUE VOCÊ RECEBE] */
.deliverables-section {
    background-color: var(--bg-base);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.deliverables-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 48px 40px;
    transition: var(--transition-smooth);
}

.deliverables-card:hover {
    border-color: rgba(255, 106, 26, 0.2);
    box-shadow: var(--glow-card-hover);
}

.deliverables-card-icon {
    margin-bottom: 24px;
}

.deliverables-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.deliverables-card-intro {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.deliverables-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deliverables-list li {
    font-size: 14px;
    position: relative;
    padding-left: 24px;
    color: var(--text-main);
}

.deliverables-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.deliverables-list li strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 2px;
}

.deliverables-list li span {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
}

/* 12. Block 9: Audience Qualification [BLOCO — PARA QUEM É] */
.audience-section {
    background-color: var(--bg-surface);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.audience-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 48px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.audience-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.audience-yes {
    box-shadow: 0 4px 30px rgba(16, 185, 129, 0.02);
}

.audience-yes:hover {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.08);
}

.audience-yes .audience-card-border {
    background-color: #10B981;
}

.audience-no {
    box-shadow: 0 4px 30px rgba(239, 68, 68, 0.02);
}

.audience-no:hover {
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.08);
}

.audience-no .audience-card-border {
    background-color: #EF4444;
}

.audience-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.audience-icon-status {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-icon-status.yes {
    background-color: rgba(16, 185, 129, 0.1);
}

.audience-icon-status.no {
    background-color: rgba(239, 68, 68, 0.1);
}

.audience-card-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.audience-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-checklist li {
    font-size: 15px;
    position: relative;
    padding-left: 28px;
    color: var(--text-main);
    line-height: 1.6;
}

.audience-yes .audience-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10B981;
    font-weight: 700;
}

.audience-no .audience-checklist li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 0;
    color: #EF4444;
    font-weight: 700;
}

/* 13. Block 10: Behind the Scenes [BLOCO — QUEM ESTÁ POR TRÁS] */
.about-section {
    background-color: var(--bg-base);
}

.grid-two-columns {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-standard);
    overflow: hidden;
    box-shadow: var(--glow-primary);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
    z-index: 3;
    pointer-events: none;
}

.about-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-description {
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

/* 14. Block 11: Expected Outcome [BLOCO — RESULTADO ESPERADO] */
.outcomes-section {
    position: relative;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.outcomes-radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 106, 26, 0.06) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.outcomes-list {
    position: relative;
    max-width: 900px;
    margin: 48px auto 0 auto;
    z-index: 2;
}

.outcome-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.outcome-item:hover {
    transform: scale(1.01);
    border-color: rgba(255, 106, 26, 0.2);
    box-shadow: 0 0 30px rgba(255, 106, 26, 0.05);
}

.outcome-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 106, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outcome-text {
    font-size: 16px;
    color: var(--text-main);
}

/* 15. Block 12 & 13: Investment & Application [BLOCO — INVESTIMENTO] & [BLOCO — POR QUE O PROCESSO DE APLICAÇÃO] */
.investment-section {
    background-color: var(--bg-base);
}

.investment-wrapper {
    max-width: 860px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 106, 26, 0.15);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--glow-primary);
}

.badge.orange-bg {
    background-color: var(--primary);
    color: var(--text-main);
    border: none;
}

.investment-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Pricing Reason Context */
.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.price-discount-reason {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(255, 106, 26, 0.05);
    border: 1px solid rgba(255, 106, 26, 0.15);
    padding: 10px 24px;
    border-radius: 6px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.price-discount-reason span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.price-old {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 6px;
}

.price-new {
    font-size: 72px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(255, 106, 26, 0.25);
}

.price-sub {
    font-size: 14px;
    color: var(--text-muted);
}

.selective-note-card {
    background-color: rgba(5, 5, 5, 0.5);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 36px;
    margin-bottom: 48px;
    text-align: left;
}

.selective-note-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.selective-note-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Premium Multi-Step Form Layout */
.multi-step-form-container {
    background-color: rgba(5, 5, 5, 0.4);
    border: 1px solid var(--border-sutil);
    border-radius: var(--radius-standard);
    padding: 48px;
    text-align: left;
    margin-top: 48px;
    border-top: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-steps-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
    padding: 0 30px;
}

.step-progress-line {
    position: absolute;
    top: 18px;
    left: 60px;
    right: 60px;
    height: 3px;
    background-color: var(--border-sutil);
    z-index: 1;
}

.step-progress-fill {
    width: 0%; /* Transition controlled via JS (0% step 1, 100% step 2) */
    height: 100%;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.4s ease;
}

.step-dot {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--border-sutil);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.step-dot.active {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--bg-base);
    box-shadow: 0 0 15px rgba(255, 106, 26, 0.3);
}

.step-dot.complete {
    border-color: #10B981;
    color: #fff;
    background-color: #10B981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.step-lbl {
    position: absolute;
    top: 44px;
    white-space: nowrap;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.step-dot.active .step-lbl {
    color: var(--text-main);
}

.form-step-content {
    display: none;
}

.form-step-content.active {
    display: block;
    animation: fadeInStep 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(5, 5, 5, 0.6);
    border: 1px solid var(--border-sutil);
    color: var(--text-main);
    padding: 14px 18px;
    font-family: inherit;
    font-size: 14px;
    border-radius: 6px;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 106, 26, 0.2);
    background-color: rgba(5, 5, 5, 0.9);
}

.form-group.invalid-input input,
.form-group.invalid-input select,
.form-group.invalid-input textarea {
    border-color: #EF4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}

.form-group select option {
    background-color: var(--bg-card);
    color: var(--text-main);
}

.step-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.step-buttons .btn {
    width: auto;
    min-width: 180px;
}

.step-buttons-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.step-buttons-grid .btn {
    width: auto;
    min-width: 220px;
}

.btn-back-step {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-back-step:hover {
    color: var(--text-main);
    transform: translateX(-3px);
}

.btn-submit {
    padding: 18px;
    font-size: 16px;
}

.vagas-badge {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* Success Modal Overlay */
.form-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-modal-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 106, 26, 0.3);
    border-radius: var(--radius-standard);
    padding: 48px;
    max-width: 480px;
    width: 90%;
    text-align: center;
}

.success-icon {
    margin-bottom: 24px;
}

.success-modal-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.success-modal-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.success-modal-card .btn {
    width: 100%;
}

/* 16. FAQ Accordion [FAQ] */
.faq-section {
    background-color: var(--bg-surface);
}

.faq-container {
    max-width: 800px;
}

.accordion {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-line {
    position: absolute;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.icon-line.horizontal {
    width: 100%;
    height: 2px;
}

.icon-line.vertical {
    width: 2px;
    height: 100%;
}

.accordion-item.active .icon-line.vertical {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-content {
    padding: 0 0 28px 0;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* 17. Block 15: Final CTA [CTA FINAL] */
.final-cta-section {
    position: relative;
    background-color: var(--bg-base);
    overflow: hidden;
    padding: 140px 0;
    border-top: 1px solid var(--border-sutil);
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 106, 26, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.final-cta-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 48px;
    text-transform: uppercase;
}

.final-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-large {
    padding: 20px 48px;
    font-size: 16px;
}

.final-cta-subtext {
    font-size: 14px;
    color: var(--text-muted);
}

/* 18. Footer [FOOTER] */
.footer-section {
    background-color: #050505;
    padding: 60px 0;
    border-top: 1px solid var(--border-sutil);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}


/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINT: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Global Elements */
    .section-padding {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* Hero */
    .hero-section {
        padding: 130px 0 80px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px; /* Perfect sweet spot for mobile displays */
    }
    
    .hero-subtitle-split {
        margin-bottom: 30px;
    }
    
    .subtitle-main {
        font-size: 15px;
    }
    
    .subtitle-sub {
        font-size: 13.5px;
    }
    
    .hero-cta-wrapper {
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-visual {
        margin-top: 20px;
    }
    
    .visual-wrapper {
        max-width: 320px;
    }
    
    .telemetry-card {
        padding: 8px 12px;
        left: 10px; /* Kept safely inside the layout card wrapper */
    }
    
    .telemetry-card.bottom-right {
        right: 10px; /* Kept safely inside the layout card wrapper */
        left: auto;
    }
    
    .telemetry-value {
        font-size: 16px;
    }
    
    /* Problem Section */
    .problem-item {
        padding: 24px;
        gap: 18px;
    }
    
    .problem-text {
        font-size: 15px;
    }
    
    .conclusion-inner-card {
        padding: 40px 24px;
    }
    
    .quote-text-primary {
        font-size: 18px;
    }
    
    .quote-text-highlight {
        font-size: 22px;
    }
    
    /* Early Credentials */
    .credentials-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cred-stat-card {
        padding: 32px 20px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    /* Case Studies */
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .case-card {
        padding: 30px;
    }
    
    /* Bottlenecks Grid */
    .bottlenecks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bottleneck-card {
        grid-column: span 1 !important;
        padding: 32px;
    }
    
    .bottleneck-card .bg-number {
        font-size: 80px;
    }
    
    /* Solution */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-card {
        padding: 32px;
    }
    
    /* Comparison Antes Depois */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-column {
        padding: 32px 24px;
    }
    
    /* Journey Mobile Layout Optimization */
    .timeline-progress-container {
        display: none; /* Hidden on mobile to avoid overlapping vertically stacked columns */
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .journey-column {
        padding: 32px 24px 32px 48px; /* Added elegant left padding for the connecting dots */
    }
    
    .journey-list li {
        padding-left: 12px;
    }
    
    .journey-list li:not(:last-child)::after {
        left: -21px; /* Center-aligned perfectly under the mobile list dots */
    }
    
    .list-dot {
        position: absolute;
        left: -28px; /* Positioned perfectly with comfortable breathing room from boundaries */
    }
    
    /* Metrics numbers */
    .metrics-grid-horizontal {
        justify-content: center;
        gap: 24px;
    }
    
    .metric-item {
        width: calc(50% - 24px); /* Symmetrical 2-column layout on mobile */
        min-width: 120px;
    }
    
    .metric-number {
        font-size: 40px;
    }
    
    /* Deliverables */
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .deliverables-card {
        padding: 32px;
    }
    
    /* Qualification */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .audience-card {
        padding: 32px;
    }
    
    /* Behind the scenes */
    .grid-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Outcomes */
    .outcome-item {
        padding: 16px 20px;
        gap: 14px;
    }
    
    .outcome-text {
        font-size: 14.5px;
    }
    
    /* Investment wrapper */
    .investment-wrapper {
        padding: 32px 20px;
    }
    
    .investment-title {
        font-size: 26px;
    }
    
    .price-new {
        font-size: 48px;
    }
    
    .price-discount-reason {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .selective-note-card {
        padding: 24px;
    }
    
    /* Multi-step form responsive layout */
    .multi-step-form-container {
        padding: 32px 20px;
    }
    
    .form-steps-indicator {
        padding: 0 10px;
    }
    
    .step-progress-line {
        left: 40px;
        right: 40px;
    }
    
    .step-lbl {
        font-size: 10px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .step-buttons .btn {
        width: 100%;
    }
    
    .step-buttons-grid {
        flex-direction: column-reverse;
        gap: 16px;
    }
    
    .step-buttons-grid .btn {
        width: 100%;
    }
    
    .btn-back-step {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }
    
    /* Success Modal */
    .success-modal-card {
        padding: 32px 20px;
    }
    
    /* FAQ Accordion */
    .accordion-header {
        font-size: 16px;
        padding: 20px 0;
    }
    
    /* Final CTA */
    .final-cta-headline {
        font-size: 28px;
    }
}

/* ==========================================================================
   POPUP DE APLICAÇÃO (LEAD CAPTURE)
   ========================================================================== */
.popup-lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.phone-input-group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.phone-input-group select {
    width: 110px !important;
    flex-shrink: 0;
}

.phone-input-group input {
    flex-grow: 1;
}

.popup-lead-form input,
.popup-lead-form select {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.popup-lead-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23A0A0A0' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

.popup-lead-form select option {
    background: #111111;
    color: #ffffff;
}

.popup-lead-form input::placeholder {
    color: #707070;
}

.popup-lead-form input:focus,
.popup-lead-form select:focus {
    border-color: #FF6A1A;
    box-shadow: 0 0 0 2px rgba(255, 106, 26, 0.25);
}

.popup-lead-form button[type="submit"] {
    background: #FF6A1A;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s, transform 0.2s;
    width: 100%;
    margin-top: 8px;
}

.popup-lead-form button[type="submit"]:hover {
    background: #D95A16;
}

.popup-lead-form button[type="submit"]:active {
    transform: scale(0.98);
}

.popup-lead-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #666666 !important;
}

/* Success Card Inside Popup */
.popup-success-card {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.popup-success-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.popup-success-desc {
    color: #A0A0A0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

