/* ==========================================
   DESIGN SYSTEM & VARIABLES (PROARTS)
   ========================================== */

:root {
    --bg-primary: #111111;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --brand-accent: #FF5A00;
    --brand-accent-hover: #e04f00;
    --text-primary: #FFFFFF;
    --text-secondary: #a3a3a3;
    --text-muted: #6b7280;
    
    --success: #10B981;
    --error: #EF4444;
    
    --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   BASE & RESET
   ========================================== */

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
    overflow: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

.orange-text {
    color: var(--brand-accent);
}

.green-text {
    color: var(--success);
}

.red-text {
    color: var(--error);
}

.text-center {
    text-align: center;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--brand-accent);
    color: var(--text-primary);
    box-shadow: 0 4px 14px rgba(255, 90, 0, 0.25);
}

.btn-primary:hover {
    background-color: var(--brand-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 0, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    height: 64px;
    background-color: rgba(17, 17, 17, 0.95);
    border-color: rgba(255, 90, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-accent {
    font-family: var(--font-heading);
    color: var(--brand-accent);
    font-weight: 800;
    font-size: 1.4rem;
}

.logo-text {
    font-family: var(--font-body);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin-bottom: 8px;
}

.footer-logo-img:hover {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 90, 0, 0.1);
    color: var(--brand-accent);
    border: 1px solid rgba(255, 90, 0, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFF 0%, #AAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
}

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

.hero-trust {
    display: flex;
    gap: 24px;
}

.trust-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Dashboard Mockup Styling */
.dashboard-mockup {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mockup-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.mockup-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-body {
    padding: 24px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.mockup-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: var(--border-radius-sm);
}

.mockup-card.highlight {
    border-color: rgba(255, 90, 0, 0.2);
    background-color: rgba(255, 90, 0, 0.02);
}

.card-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.card-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.card-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.mockup-chart-container {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: var(--border-radius-sm);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.chart-status {
    color: var(--success);
    font-weight: 600;
}

.mockup-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
    padding-top: 10px;
}

.chart-bar {
    width: 14%;
    height: var(--val);
    background-color: var(--bg-tertiary);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: var(--transition);
}

.chart-bar.orange {
    background-color: var(--brand-accent);
}

.chart-bar span {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ==========================================
   SOCIAL PROOF / LOGOS
   ========================================== */

.social-proof {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 0;
}

.social-proof-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 24px;
}

.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.logo-item {
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */

.section-header {
    max-width: 650px;
    margin: 0 auto 64px auto;
    text-align: center;
}

.section-eyebrow {
    color: var(--brand-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.05rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.problem-card:hover {
    border-color: rgba(255, 90, 0, 0.3);
    background-color: rgba(255, 90, 0, 0.02);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 90, 0, 0.1);
    color: var(--brand-accent);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================
   QUIZ & CALCULATOR (SIGNATURE)
   ========================================== */

.quiz-section {
    background-color: rgba(255, 90, 0, 0.01);
}

.quiz-container {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeInStep 0.4s ease-out;
}

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

.step-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.step-hint-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.5;
}

.label-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    margin-left: 6px;
    font-style: italic;
}

.quiz-form-group {
    margin-bottom: 32px;
}

.quiz-form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Custom investment options */
.investment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .investment-options {
        grid-template-columns: 1fr;
    }
}

.invest-option-btn {
    background-color: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.invest-option-btn:hover {
    border-color: rgba(255, 90, 0, 0.4);
    color: var(--text-primary);
    background-color: rgba(255, 90, 0, 0.02);
}

.invest-option-btn.selected {
    border-color: var(--brand-accent);
    color: var(--text-primary);
    background-color: rgba(255, 90, 0, 0.08);
    box-shadow: 0 0 12px rgba(255, 90, 0, 0.15);
}

/* Loading step animations */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 4px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--brand-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.loading-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 450px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.loading-progress-bar {
    width: 100%;
    max-width: 320px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.loading-progress-fill {
    height: 100%;
    width: 0%;
    background-color: var(--brand-accent);
    border-radius: 3px;
    animation: progressFill 2.5s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.range-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    background: var(--bg-tertiary);
    height: 6px;
    border-radius: 3px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.5);
    transition: var(--transition);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-display {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    min-width: 120px;
    text-align: right;
    color: var(--brand-accent);
}

.cal-result-box {
    background-color: var(--bg-primary);
    border: 1px solid rgba(255, 90, 0, 0.15);
    padding: 24px;
    border-radius: var(--border-radius-sm);
    margin: 32px 0;
    text-align: center;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--brand-accent);
    font-weight: 800;
}

.result-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Step 2 options */
.gargalos-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.option-card {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.option-card:hover {
    border-color: rgba(255, 90, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.01);
}

.option-card.selected {
    border-color: var(--brand-accent);
    background-color: rgba(255, 90, 0, 0.05);
}

.checkbox-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.option-card.selected .checkbox-indicator {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
}

.option-card.selected .checkbox-indicator::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Step 3 & Form styling */
.step-subtitle {
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, .form-group select {
    width: 100%;
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--brand-accent);
    background-color: rgba(255, 90, 0, 0.02);
}

.step-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Step 4 Calendar */
.success-message {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 90, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.success-message p {
    max-width: 500px;
    margin: 12px auto 32px auto;
}

.calendar-embed-placeholder {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
}

.calendar-embed-placeholder h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.calendar-card {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.calendar-header {
    font-weight: 700;
    margin-bottom: 12px;
}

.calendar-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.calendar-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.slot-btn {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.slot-btn:hover {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
}

/* ==========================================
   SOLUTIONS SECTION
   ========================================== */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.solution-card:hover {
    border-color: rgba(255, 90, 0, 0.25);
    transform: translateY(-4px);
}

.card-num {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.solution-card:hover .card-num {
    color: rgba(255, 90, 0, 0.15);
}

.solution-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    margin-top: 12px;
}

.solution-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   METHOD SECTION (OPERACAO PPP)
   ========================================== */

.method-section {
    background-color: rgba(255, 255, 255, 0.01);
}

.method-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.method-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.05);
}

.method-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 2;
    transition: var(--transition);
}

.method-step:hover .step-number {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
    box-shadow: 0 0 15px rgba(255, 90, 0, 0.3);
}

.step-content {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 32px;
    border-radius: var(--border-radius);
    flex: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* ==========================================
   CASES SECTION (SEÇÃO ENORME)
   ========================================== */

.cases-wrapper {
    display: grid;
    gap: 48px;
}

.case-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
}

.case-info {
    padding: 48px;
}

.case-tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 16px;
}

.case-info h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.case-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.stat-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.case-description {
    font-size: 0.95rem;
}

/* Visual graphics inside case */
.case-metrics-visual {
    background-color: rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.metric-line {
    margin-bottom: 24px;
}

.metric-line span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: var(--bg-tertiary);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-bar {
    height: 100%;
}

.progress-percent {
    text-align: right;
    font-size: 0.75rem !important;
    font-weight: 600;
    color: var(--brand-accent) !important;
}

.orange-bg { background-color: var(--brand-accent); }

/* Circular chart visual */
.circular-chart-container {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.circular-chart-box {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.circular-chart {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circular-chart-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chart-main-val {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

.chart-sub-val {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Funnel chart visual */
.funnel-metric-holder {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.funnel-stage {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.funnel-stage .stage-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.funnel-bar {
    height: 34px;
    background-color: var(--bg-tertiary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.funnel-bar.stage-1 {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-left: 3px solid var(--text-secondary);
    width: 100%;
}

.funnel-bar.stage-2 {
    background: linear-gradient(90deg, rgba(255, 90, 0, 0.08) 0%, rgba(255, 90, 0, 0.18) 100%);
    border-left: 3px solid var(--brand-accent);
}

.funnel-bar.stage-3 {
    background: linear-gradient(90deg, rgba(39, 201, 63, 0.08) 0%, rgba(39, 201, 63, 0.18) 100%);
    border-left: 3px solid #27C93F;
}

/* Gallery of dashboards */
.prints-gallery {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 0 0 0;
}

.prints-gallery h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-align: center;
}

.prints-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.print-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 20px;
}

.print-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.print-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.print-row strong {
    color: var(--brand-accent);
}

/* ==========================================
   FOUNDER SECTION (SOBRE O FUNDADOR)
   ========================================== */

.founder-section {
    background-color: rgba(255, 255, 255, 0.005);
}

.founder-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.founder-image-wrapper {
    text-align: center;
}

.founder-avatar-box {
    position: relative;
    display: inline-block;
}

.founder-avatar-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--brand-accent);
    filter: drop-shadow(0 10px 25px rgba(255, 90, 0, 0.25));
    transition: var(--transition);
}

.founder-avatar-img:hover {
    transform: scale(1.05);
    border-color: #FFFFFF;
    filter: drop-shadow(0 12px 35px rgba(255, 90, 0, 0.45));
}

.avatar-tag {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-accent);
    color: var(--text-primary);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 90, 0, 0.2);
}

.founder-content .section-eyebrow {
    margin-bottom: 16px;
}

.founder-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.founder-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.founder-values {
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.value-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================
   QUALIFICATION SECTION
   ========================================== */

.qualification-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 90, 0, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.qualify-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.qualify-subtitle {
    margin-bottom: 36px;
}

.qualify-checklist {
    display: grid;
    gap: 20px;
    text-align: left;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-box-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.check-item strong {
    color: var(--text-primary);
}

/* ==========================================
   FINAL CTA
   ========================================== */

.final-cta {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-title {
    font-size: 2.8rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFF 0%, #AAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-sub {
    font-size: 2.2rem;
    color: var(--brand-accent);
    margin-bottom: 24px;
}

.final-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-small {
    font-size: 0.75rem !important;
}

/* ==========================================
   SCROLL REVEAL / ANIMATIONS
   ========================================== */

.scroll-reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.fade-in.active {
    opacity: 1;
}

.scroll-reveal.slide-up {
    transform: translateY(30px);
}

.scroll-reveal.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered transition delays for grid cards */
.problem-card:nth-child(1), .solution-card:nth-child(1) { transition-delay: 0.05s; }
.problem-card:nth-child(2), .solution-card:nth-child(2) { transition-delay: 0.12s; }
.problem-card:nth-child(3), .solution-card:nth-child(3) { transition-delay: 0.19s; }
.problem-card:nth-child(4), .solution-card:nth-child(4) { transition-delay: 0.26s; }
.problem-card:nth-child(5), .solution-card:nth-child(5) { transition-delay: 0.33s; }
.problem-card:nth-child(6), .solution-card:nth-child(6) { transition-delay: 0.40s; }

/* Custom Hover Effects for Case Cards */
.case-card {
    transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease !important;
}

.case-card:hover {
    border-color: rgba(255, 90, 0, 0.3) !important;
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 90, 0, 0.04);
}

/* Primary Button Sweep/Shimmer Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
    animation: btnShimmer 6s infinite linear;
}

@keyframes btnShimmer {
    0% { left: -70%; }
    15% { left: 130%; }
    100% { left: 130%; }
}

/* ==========================================
   RESPONSIVENESS (BREAKPOINTS)
   ========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .problem-grid, .solutions-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .case-card {
        grid-template-columns: 1fr;
    }
    
    .case-metrics-visual {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .founder-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
    }

    /* Habilita espaçamento limpo e esconde o CTA da navbar no mobile */
    .nav-cta {
        display: none !important;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .problem-grid, .solutions-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        padding: 24px;
    }

    .solution-card {
        padding: 28px 24px 32px 24px;
    }

    .solution-card .card-num {
        top: 16px;
        right: 20px;
        font-size: 1.4rem;
    }

    /* Mockup Dashboard Responsivo */
    .mockup-body {
        padding: 16px;
    }

    .mockup-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Quiz & Calculadora */
    .quiz-container {
        padding: 24px;
    }

    .quiz-step .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        margin-top: 16px;
        box-sizing: border-box;
    }

    .step-actions {
        flex-direction: column-reverse !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .range-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .range-display {
        text-align: left;
        min-width: auto;
        margin-top: 4px;
    }

    input[type="range"] {
        width: 100%;
    }

    .investment-options {
        grid-template-columns: 1fr;
    }

    .invest-option-btn {
        padding: 14px;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .gargalos-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .prints-grid {
        grid-template-columns: 1fr;
    }

    .founder-info {
        padding: 32px 24px;
    }
}
