/* style.css - Custom Styling for CASA DE NEGOCIOS Landing Page */

/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Outfit', sans-serif;

    /* Curated HSL Color Scheme - Orange (warm, energetic) */
    --primary: 24, 18%, 13%;           /* Warm charcoal - safe, professional */
    --primary-light: 24, 16%, 23%;
    --secondary: 16, 82%, 48%;          /* Burnt orange - depth & contrast */
    --secondary-light: 22, 90%, 56%;
    --accent: 26, 95%, 55%;             /* Vibrant orange - the signature accent */
    --accent-light: 28, 95%, 96%;
    --text-dark: 215, 25%, 27%;         /* Charcoal text for general reading */
    --text-muted: 215, 16%, 47%;
    --text-light: 210, 40%, 98%;
    --bg-light: 210, 40%, 98%;          /* Background soft off-white */
    --bg-dark-slate: 222, 35%, 15%;     /* Deep blue-slate for why-choose-us */
    --bg-dark: 222, 47%, 6%;            /* Ultimate dark accents */
    
    /* UI Specific Styles */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 16px 48px -8px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
    
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: hsl(var(--bg-light));
}

body {
    font-family: var(--font-primary);
    background-color: transparent;
    color: hsl(var(--text-dark));
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    color: hsl(var(--primary));
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-white { color: #ffffff !important; }
.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-teal { color: hsl(var(--accent)) !important; }
.text-gold { color: hsl(var(--secondary)) !important; }

/* ==========================================================================
   Glowing Ambient Spheres (Rich Aesthetics)
   ========================================================================== */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.bg-1 {
    top: 5%;
    left: -10%;
    background: radial-gradient(circle, hsl(var(--accent)) 0%, transparent 70%);
}

.bg-2 {
    top: 30%;
    right: -10%;
    background: radial-gradient(circle, hsl(var(--secondary)) 0%, transparent 70%);
}

.bg-3 {
    bottom: 10%;
    left: 20%;
    background: radial-gradient(circle, hsl(var(--accent)) 0%, transparent 70%);
}

/* ==========================================================================
   Header & Navigation (Glassmorphic)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 24px 0;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.logo-house {
    color: hsl(var(--primary));
    font-weight: 800;
}

.logo-divider {
    height: 18px;
    width: 2px;
    background-color: hsl(var(--secondary));
    margin: 0 10px;
    display: inline-block;
}

.logo-business {
    color: hsl(var(--secondary));
    font-weight: 600;
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: hsl(var(--primary));
    opacity: 0.85;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    opacity: 1;
    color: hsl(var(--accent));
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: hsl(var(--accent));
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn-mobile {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--accent), 0.8) 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
    transition: var(--transition-fast);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

.btn-cta i {
    width: 16px;
    height: 16px;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.hamburger-menu .bar {
    height: 2.5px;
    width: 100%;
    background-color: hsl(var(--primary));
    border-radius: 5px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   Buttons Setup
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.25);
    background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--accent), 0.85) 100%);
}

.btn-secondary {
    background: #ffffff;
    color: hsl(var(--primary));
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
    background: hsl(var(--primary));
    color: #ffffff;
}

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: hsl(var(--accent));
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: 4px 0;
}

.btn-text:hover {
    gap: 10px;
    color: hsl(var(--secondary));
}

.pulse-button {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(217, 119, 6, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
}

/* ==========================================================================
   Glassmorphism Base Classes
   ========================================================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-inner-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: hsl(var(--accent-light));
    border: 1px solid rgba(13, 148, 136, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    color: hsl(var(--accent));
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero-tag i {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(var(--secondary)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero-description {
    font-size: 1.15rem;
    color: hsl(var(--text-dark), 0.85);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.stat-number {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    color: hsl(var(--primary));
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(15, 23, 42, 0.1);
}

/* Hero Visual & Glass Cards Layout */
.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.main-hero-card {
    padding: 32px;
    width: 100%;
    transform: rotate(-3deg);
    position: relative;
    z-index: 2;
}

.main-hero-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-badge {
    background-color: hsl(var(--accent-light));
    color: hsl(var(--accent));
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.card-icon-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: rgba(15, 23, 42, 0.2);
    border-radius: 50%;
    margin-left: 4px;
}

.card-title-visual {
    display: block;
    font-size: 0.9rem;
    color: hsl(var(--text-muted));
    margin-bottom: 4px;
}

.card-amount {
    display: block;
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 800;
    color: hsl(var(--primary));
    margin-bottom: 16px;
}

.card-progress-bar {
    height: 8px;
    background-color: rgba(15, 23, 42, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(var(--accent)) 0%, hsl(var(--secondary)) 100%);
    border-radius: 10px;
}

.card-meta-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 16px;
}

.meta-col {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    color: hsl(var(--text-muted));
}

.meta-value {
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 2px;
}

/* Floating Cards in Hero */
.floating-card-1 {
    position: absolute;
    top: -50px;
    right: -40px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    width: 260px;
    transform: rotate(5deg);
}

.floating-card-1:hover {
    transform: rotate(0deg) scale(1.05);
}

.floating-card-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    width: 270px;
    transform: rotate(-5deg);
}

.floating-card-2:hover {
    transform: rotate(0deg) scale(1.05);
}

.floating-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, hsl(var(--secondary-light)) 0%, hsl(var(--secondary)) 100%);
}

.bg-teal-gradient {
    background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(14, 82%, 47%) 100%);
}

.floating-icon i {
    width: 20px;
    height: 20px;
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.float-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: hsl(var(--primary));
}

.float-desc {
    font-size: 0.75rem;
    color: hsl(var(--text-muted));
}

/* ==========================================================================
   Section Headers Styling
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: hsl(var(--text-muted));
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px -15px rgba(15, 23, 42, 0.12);
    border-color: rgba(13, 148, 136, 0.3);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 28px;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.15);
}

.service-icon-wrapper i {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    font-size: 0.95rem;
    color: hsl(var(--text-dark), 0.85);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: hsl(var(--primary));
}

.service-features li i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   Simulator Section & Styles
   ========================================================================== */
.simulator-wrapper {
    padding: 48px;
    margin-top: 20px;
}

.simulator-tabs {
    display: flex;
    background-color: rgba(15, 23, 42, 0.04);
    padding: 8px;
    border-radius: 50px;
    gap: 8px;
    margin-bottom: 48px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.simulator-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: hsl(var(--primary));
    opacity: 0.75;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.tab-btn i {
    width: 18px;
    height: 18px;
}

.tab-btn.active {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    opacity: 1;
    color: hsl(var(--accent));
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.simulator-controls {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.control-group {
    display: flex;
    flex-direction: column;
}

.control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.control-header label {
    font-weight: 600;
    font-size: 1rem;
    color: hsl(var(--primary));
}

.control-value {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--accent));
}

/* Sliders custom styling */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.08);
    outline: none;
    transition: var(--transition-fast);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsl(var(--accent));
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(13, 148, 136, 0.3);
    transition: var(--transition-fast);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: hsl(var(--secondary));
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.4);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsl(var(--accent));
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(13, 148, 136, 0.3);
    border: none;
    transition: var(--transition-fast);
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: hsl(var(--secondary));
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.4);
}

.slider-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: hsl(var(--text-muted));
    margin-top: 8px;
    font-weight: 500;
}

.simulator-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: rgba(15, 23, 42, 0.03);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
}

.simulator-note i {
    width: 16px;
    height: 16px;
    color: hsl(var(--accent));
    flex-shrink: 0;
    margin-top: 2px;
}

/* Simulator Results */
.simulator-results {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.results-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 12px;
}

.results-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-size: 0.9rem;
    color: hsl(var(--text-muted));
    font-weight: 500;
}

.metric-value {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 800;
    color: hsl(var(--primary));
}

.metric-sub {
    font-size: 0.85rem;
    font-family: var(--font-primary);
    font-weight: 500;
    color: hsl(var(--text-muted));
}

.metric-value.highlight-text {
    color: hsl(var(--accent));
    font-size: 1.25rem;
}

/* ==========================================================================
   Modal Dialog Setup
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
    color: hsl(var(--text-muted));
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: hsl(var(--primary));
}

.modal-header {
    margin-bottom: 28px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--primary));
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 16px;
    height: 16px;
    color: hsl(var(--text-muted));
    pointer-events: none;
}

.input-wrapper input, .input-wrapper select {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(15, 23, 42, 0.12);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    color: hsl(var(--primary));
    appearance: none;
}

.input-wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.input-wrapper input:focus, .input-wrapper select:focus {
    border-color: hsl(var(--accent));
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    background-color: #ffffff;
    outline: none;
}

.form-terms {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-terms input {
    margin-top: 3px;
    accent-color: hsl(var(--accent));
}

.form-terms label {
    font-size: 0.75rem;
    color: hsl(var(--text-muted));
    line-height: 1.4;
    cursor: pointer;
}

/* ==========================================================================
   Why Choose Us Section (Differenciais)
   ========================================================================== */
.bg-dark-slate {
    background-color: hsl(var(--bg-dark-slate));
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.diff-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
}

.diff-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.diff-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.diff-icon i {
    width: 36px;
    height: 36px;
}

.diff-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.diff-description {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Partners Marquee/Flex styling */
.partners-block {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 48px;
    text-align: center;
}

.partners-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 28px;
    font-weight: 600;
}

.partners-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    align-items: center;
}

.partner-badge {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 18px;
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================================================
   Testimonials Slider / Carousel
   ========================================================================== */
.testimonials-section {
    background-color: hsl(var(--bg-light));
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    flex: 0 0 calc(100% / 2 - 15px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star-fill {
    width: 16px;
    height: 16px;
    fill: hsl(var(--secondary));
    color: hsl(var(--secondary));
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    color: hsl(var(--text-dark), 0.9);
    margin-bottom: 28px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    color: hsl(var(--primary));
    font-size: 0.95rem;
}

.user-meta {
    font-size: 0.8rem;
    color: hsl(var(--text-muted));
    font-weight: 500;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.15);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background-color: hsl(var(--accent));
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.bg-light-slate {
    background-color: #f1f5f9;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border-color: rgba(15, 23, 42, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 700;
    color: hsl(var(--primary));
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: hsl(var(--accent));
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: hsl(var(--text-muted));
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: hsl(var(--accent));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
    padding: 0 32px 24px;
    font-size: 0.95rem;
    color: hsl(var(--text-dark), 0.85);
}

/* ==========================================================================
   CTA Section (WhatsApp Promo Box)
   ========================================================================== */
.cta-box {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: var(--border-radius-lg);
}

.bg-gold-gradient-opaque {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.10) 0%, rgba(234, 88, 12, 0.04) 100%);
    border-color: rgba(249, 115, 22, 0.22);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    max-width: 720px;
}

.cta-description {
    font-size: 1.05rem;
    color: hsl(var(--text-dark), 0.85);
    margin-bottom: 32px;
    max-width: 620px;
}

/* ==========================================================================
   Regulatory Footer
   ========================================================================== */
.footer-regulatory {
    background-color: hsl(var(--bg-dark));
    color: #94a3b8;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: hsl(var(--accent));
    color: #ffffff;
    transform: translateY(-2px);
}

.social-link i {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-links-list a:hover {
    color: hsl(var(--accent));
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact-info li i {
    width: 16px;
    height: 16px;
    color: hsl(var(--accent));
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-compliance {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
}

.compliance-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 24px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: hsl(var(--accent));
}

/* ==========================================================================
   Fixed WhatsApp Floating Button
   ========================================================================== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 6px 25px rgba(18, 140, 126, 0.5);
}

.whatsapp-icon-svg {
    width: 30px;
    height: 30px;
}

.tooltip-whatsapp {
    position: absolute;
    right: 75px;
    background-color: hsl(var(--primary));
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-floating:hover .tooltip-whatsapp {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Medium Screens (Desktop / Large Tablets) */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* Tablets (Portrait) */
@media (max-width: 768px) {
    .header {
        padding: 16px 0;
    }
    
    .header.scrolled {
        padding: 12px 0;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 24px;
        transition: var(--transition-smooth);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-btn-mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        background-color: hsl(var(--accent));
        color: #ffffff;
        padding: 14px;
        border-radius: 50px;
        font-weight: 600;
        margin-top: 20px;
        text-align: center;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .simulator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .floating-card-1 {
        right: -10px;
    }
    
    .floating-card-2 {
        left: -10px;
    }
}

/* ====================================================================
   PREMIUM ENHANCEMENTS — Animations, Steps Section, Marquee
   ==================================================================== */

/* Dot grid background removed per request */

/* Animated ambient glow orbs */
@keyframes glowDrift {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50%       { transform: scale(1.08) translate(20px, -15px); }
}
.bg-1 { animation: glowDrift 18s ease-in-out infinite; }
.bg-2 { animation: glowDrift 22s ease-in-out infinite 4s reverse; }
.bg-3 { animation: glowDrift 25s ease-in-out infinite 8s; }

/* === Hero content entrance === */
@keyframes heroSlideIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: heroSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-visual   { animation: heroSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }

/* === Floating Animations for Hero Cards === */
@keyframes floatMain  {
    0%, 100% { transform: rotate(-3deg) translateY(0px); }
    50%       { transform: rotate(-3deg) translateY(-14px); }
}
@keyframes floatCard1 {
    0%, 100% { transform: rotate(5deg) translateY(0px); }
    50%       { transform: rotate(5deg) translateY(-10px); }
}
@keyframes floatCard2 {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50%       { transform: rotate(-5deg) translateY(-12px); }
}

.main-hero-card  { animation: floatMain  7s ease-in-out infinite; }
.floating-card-1 { animation: floatCard1 5s ease-in-out infinite; }
.floating-card-2 { animation: floatCard2 6s ease-in-out infinite 1.2s; }

.main-hero-card:hover  { animation-play-state: paused; }
.floating-card-1:hover { animation-play-state: paused; }
.floating-card-2:hover { animation-play-state: paused; }

/* === Scroll Reveal Animations === */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* === Button Shimmer === */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 55%;
    height: 200%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    pointer-events: none;
}
.btn-primary:hover::after { left: 165%; }

/* === Slider Gradient Progress Fill === */
.slider {
    background: linear-gradient(
        to right,
        hsl(var(--accent)) 0%,
        hsl(var(--accent)) var(--fill-percent, 20%),
        rgba(15, 23, 42, 0.08) var(--fill-percent, 20%)
    );
}

/* === Scroll Indicator === */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 0.8s ease 2s forwards;
    z-index: 2;
}
@keyframes fadeIn { to { opacity: 1; } }

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(15, 23, 42, 0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: hsl(var(--accent));
    border-radius: 3px;
    animation: scrollBob 2.2s ease-in-out infinite 2.8s;
}
@keyframes scrollBob {
    0%   { transform: translateY(0); opacity: 1; }
    70%  { transform: translateY(9px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}
.scroll-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: hsl(var(--text-muted));
}

/* === Como Funciona / Steps Section === */
.steps-section {
    background: linear-gradient(180deg, #f8fafc 0%, hsl(var(--bg-light)) 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 31px;
    left: calc(16.67% + 36px);
    right: calc(16.67% + 36px);
    height: 2px;
    background: linear-gradient(90deg, hsl(var(--accent)), hsl(var(--secondary)));
    opacity: 0.3;
    z-index: 0;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.22);
    flex-shrink: 0;
}
.step-number-wrapper::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(13, 148, 136, 0.25);
    animation: spinSlow 12s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.step-number {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: hsl(var(--primary));
}
.step-description {
    font-size: 0.95rem;
    color: hsl(var(--text-muted));
    line-height: 1.75;
    max-width: 280px;
}

/* === Partners Marquee === */
.partners-marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partners-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 24s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }

/* === Hero Trust Row (avatars + rating) === */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.trust-avatars span:first-child { margin-left: 0; }

.trust-avatar-more {
    background: hsl(var(--primary));
    font-size: 0.68rem !important;
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-stars {
    display: flex;
    gap: 2px;
    color: hsl(var(--secondary));
}

.trust-stars i {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.trust-text {
    font-size: 0.82rem;
    color: hsl(var(--text-muted));
    font-weight: 500;
}

.trust-text strong {
    color: hsl(var(--primary));
    font-weight: 700;
}

/* === Impact Numbers Band (Social Proof) === */
.impact-band {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--bg-dark-slate)) 100%);
    padding: 68px 0;
    position: relative;
    overflow: hidden;
}

.impact-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(13, 148, 136, 0.20), transparent 42%),
        radial-gradient(circle at 82% 75%, rgba(217, 119, 6, 0.16), transparent 42%);
    pointer-events: none;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.impact-item {
    text-align: center;
    padding: 8px 12px;
    position: relative;
}

.impact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.impact-number {
    font-family: var(--font-headings);
    font-size: 2.9rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Trust badges strip */
.trust-badges {
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 44px;
    position: relative;
    z-index: 1;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-badge-item i {
    width: 20px;
    height: 20px;
    color: hsl(var(--accent));
    flex-shrink: 0;
}

/* === Responsive additions === */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .steps-grid::before { display: none; }
    .scroll-indicator    { display: none; }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 16px;
    }
    .impact-item:nth-child(2)::after { display: none; }
    .impact-number { font-size: 2.4rem; }

    .trust-badges {
        gap: 14px 28px;
    }

    .hero-trust { justify-content: center; }
}

/* Small Screens / Mobile Phones */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .simulator-wrapper {
        padding: 24px;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .logo-business {
        font-size: 1.1rem;
    }
}
