/* ===== CREDINEVES - CSS PRINCIPAL ===== */

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

:root {
    /* Cores principais baseadas na logo */
    --primary-dark: #1a3a5c;
    --primary-navy: #0f2740;
    --secondary-turquoise: #4ecdc4;
    --secondary-green: #2ab7a9;
    --accent-light: #a8e6cf;
    --accent-mint: #d4f5e9;

    /* Neutros */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Feedback */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-turquoise) 0%, var(--secondary-green) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, #234567 50%, var(--secondary-green) 100%);

    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', var(--font-primary);

    /* Transições */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
}

html:has(.modal-overlay.active) {
    overflow: hidden !important;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

a:hover {
    color: var(--secondary-green);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITÁRIOS ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.section-sm {
    padding: 2.5rem 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-primary { color: var(--primary-dark); }
.text-secondary { color: var(--secondary-turquoise); }

.bg-white { background-color: var(--white); }
.bg-gray { background-color: var(--gray-50); }
.bg-primary { background: var(--gradient-primary); }
.bg-secondary { background: var(--gradient-secondary); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ===== HEADER/NAVBAR ===== */
/* Barra de Topo (Urgência) */
.top-bar {
    background: linear-gradient(90deg, var(--secondary-turquoise), var(--secondary-green));
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar a {
    color: white;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.header {
    position: fixed;
    top: 36px; /* Altura da barra de topo */
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #f5f7fa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='80' viewBox='0 0 150 80'%3E%3Ctext x='10' y='25' font-family='Arial' font-size='22' font-weight='bold' fill='%23a0aec0' fill-opacity='0.22' transform='rotate(-25 10 25)'%3E$%3C/text%3E%3Ctext x='60' y='60' font-family='Arial' font-size='18' font-weight='bold' fill='%23a0aec0' fill-opacity='0.18' transform='rotate(-25 60 60)'%3E$%3C/text%3E%3Ctext x='110' y='30' font-family='Arial' font-size='26' font-weight='bold' fill='%23a0aec0' fill-opacity='0.2' transform='rotate(-25 110 30)'%3E$%3C/text%3E%3Ctext x='35' y='70' font-family='Arial' font-size='16' font-weight='bold' fill='%23a0aec0' fill-opacity='0.15' transform='rotate(-25 35 70)'%3E$%3C/text%3E%3Ctext x='130' y='65' font-family='Arial' font-size='20' font-weight='bold' fill='%23a0aec0' fill-opacity='0.2' transform='rotate(-25 130 65)'%3E$%3C/text%3E%3C/svg%3E");
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    border-bottom: 2px solid #e2e8f0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-turquoise);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-turquoise);
}

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

.nav-cta {
    margin-left: 1rem;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 140px 0 60px; /* top: 116px header + margem | bottom: 60px */
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-title span {
    color: var(--secondary-turquoise);
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-turquoise);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

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

.hero-image-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.3) 0%, rgba(42, 183, 169, 0.2) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: blobMove 8s ease-in-out infinite;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid rgba(78, 205, 196, 0.5);
    border-radius: 20px;
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

@keyframes blobMove {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Formas decorativas */
.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.1);
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
}

/* ===== SEÇÃO BENEFÍCIOS ===== */
.benefits {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header .subtitle {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--accent-mint);
    color: var(--secondary-green);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-card p {
    color: var(--gray-500);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== SEÇÃO COMO FUNCIONA ===== */
.how-it-works {
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.step h3 {
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--gray-500);
}

/* Linha conectora entre steps */
@media (min-width: 768px) {
    .steps::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: var(--gray-200);
        z-index: 0;
    }
}

/* ===== SIMULADOR SECTION (HOME) ===== */
.simulator-preview {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.simulator-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
}

.simulator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.simulator-text {
    color: var(--white);
}

.simulator-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.simulator-text p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.simulator-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.simulator-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.simulator-feature i {
    color: var(--secondary-turquoise);
    font-size: 1.25rem;
}

.simulator-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.simulator-card h3 {
    text-align: center;
    margin-bottom: 2rem;
}

/* ===== SIMULADOR COMPLETO ===== */
.simulator-page {
    padding-top: 156px; /* 120px + 36px barra topo */
    padding-bottom: 2rem;
    min-height: 100vh;
    background-color: var(--gray-50);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ctext x='20' y='40' font-family='Arial' font-size='28' font-weight='bold' fill='%2394a3b8' fill-opacity='0.12' transform='rotate(-30 20 40)'%3E$%3C/text%3E%3Ctext x='100' y='80' font-family='Arial' font-size='22' font-weight='bold' fill='%2394a3b8' fill-opacity='0.1' transform='rotate(-30 100 80)'%3E$%3C/text%3E%3Ctext x='160' y='50' font-family='Arial' font-size='32' font-weight='bold' fill='%2394a3b8' fill-opacity='0.08' transform='rotate(-30 160 50)'%3E$%3C/text%3E%3Ctext x='50' y='130' font-family='Arial' font-size='24' font-weight='bold' fill='%2394a3b8' fill-opacity='0.1' transform='rotate(-30 50 130)'%3E$%3C/text%3E%3Ctext x='130' y='160' font-family='Arial' font-size='20' font-weight='bold' fill='%2394a3b8' fill-opacity='0.12' transform='rotate(-30 130 160)'%3E$%3C/text%3E%3Ctext x='180' y='120' font-family='Arial' font-size='26' font-weight='bold' fill='%2394a3b8' fill-opacity='0.09' transform='rotate(-30 180 120)'%3E$%3C/text%3E%3Ctext x='70' y='190' font-family='Arial' font-size='30' font-weight='bold' fill='%2394a3b8' fill-opacity='0.07' transform='rotate(-30 70 190)'%3E$%3C/text%3E%3C/svg%3E");
    background-repeat: repeat;
}

.simulator-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.simulator-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.simulator-header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.simulator-header h1 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.simulator-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.simulator-body {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.form-group .hint {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 400;
}

/* Range Slider */
.range-container {
    position: relative;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    outline: none;
    margin: 1rem 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(78, 205, 196, 0.4);
    transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(78, 205, 196, 0.4);
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.range-display {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1rem 0;
}

.range-display small {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* Parcelas Grid */
.parcelas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.parcela-option {
    position: relative;
}

.parcela-option input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.parcela-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.parcela-option input:checked + label {
    background: var(--accent-mint);
    border-color: var(--secondary-turquoise);
}

.parcela-option label span:first-of-type {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.parcela-option label span:last-of-type {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Resultado do Simulador */
.simulator-result {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-top: 2rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.result-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.result-row.total {
    background: var(--white);
    margin: 1rem -1rem -1rem;
    padding: 1.25rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
}

.result-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.result-value {
    font-weight: 700;
    color: var(--primary-dark);
}

.result-value.highlight {
    color: var(--secondary-green);
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    white-space: nowrap;
}

.simulator-submit {
    margin-top: 2rem;
    text-align: center;
}

.simulator-submit .btn {
    width: 100%;
    max-width: 400px;
}

/* ===== MODAL PRÉ-APROVAÇÃO ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    padding: 15px;
    overflow: hidden;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    overflow-x: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #4ecdc4 0%, #2ab7a9 100%);
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #2ab7a9;
}

.modal-header h2 {
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.modal-header p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.modal-body {
    padding: 1.25rem;
}

.approval-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.approval-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.approval-row:last-child {
    border-bottom: none;
}

.approval-row strong {
    color: #2ab7a9;
}

.modal-footer {
    padding: 0 1.25rem 1.25rem;
    text-align: center;
}

.modal-footer .btn {
    width: 100%;
}

.modal-footer p {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== DEPOIMENTOS ===== */
.testimonials {
    background: #f1f5f9;
    padding-bottom: 3rem;
}

.testimonials-carousel {
    position: relative;
    min-height: 280px;
}

.testimonial-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-group.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .testimonial-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonial-group {
        grid-template-columns: 1fr;
    }
    .testimonials-carousel {
        min-height: auto;
    }
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot:hover {
    background: #94a3b8;
}

.testimonial-dots .dot.active {
    background: var(--secondary-turquoise);
    transform: scale(1.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-turquoise);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ===== CTA SECTION ===== */
.cta {
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
}

.cta .btn-primary:hover {
    background: var(--gray-100);
}

/* ===== PÁGINA SOBRE ===== */
.about-hero {
    padding-top: 156px; /* 120px + 36px barra topo */
    padding-bottom: 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-mint);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--secondary-green);
}

.value-item h4 {
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ===== PÁGINA CONTATO ===== */
.contact-hero {
    padding-top: 156px; /* 120px + 36px barra topo */
    padding-bottom: 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-mint);
    border-radius: var(--radius-lg);
    color: var(--secondary-green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-500);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

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

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-turquoise);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== ESPAÇADOR FOOTER ===== */
.footer-spacer {
    display: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding-top: 4rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 60px;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--secondary-turquoise);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-column ul li {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: var(--secondary-turquoise);
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 0;
    font-size: 0.8rem;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--secondary-turquoise);
}

.faq-question i {
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .hero-image {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 250px;
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none;
    }

    .hero-image img {
        max-width: 220px;
        animation: none;
    }

    .simulator-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 116px; /* 80px header + 36px barra topo */
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        padding: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand img {
        margin: 0 auto 1rem;
    }

    .footer-brand p {
        max-width: 300px;
        margin: 0 auto 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column ul {
        align-items: center;
    }

    .footer-column ul li {
        text-align: center;
    }

    .footer-column ul li a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-bottom p {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 40px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .simulator-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .simulator-body {
        padding: 1rem;
    }

    .simulator-header {
        padding: 1rem;
    }

    .parcelas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .parcela-option label {
        padding: 0.6rem 0.4rem;
    }

    .parcela-option label span:first-of-type {
        font-size: 1.1rem;
    }

    .parcela-option label span:last-of-type {
        font-size: 0.65rem;
    }

    .simulator-result {
        padding: 1rem;
        margin-top: 1rem;
    }

    .result-value.highlight {
        font-size: 1.1rem;
    }

    .result-row.total {
        margin: 0.5rem -0.5rem -0.5rem;
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ===== LOADING STATE ===== */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-bubble {
    position: absolute;
    bottom: 75px;
    right: -5px;
    background: #dcf8c6;
    padding: 12px 16px;
    border-radius: 10px 10px 0 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.05);
    width: 260px;
    animation: bubblePop 0.4s ease;
    transition: opacity 0.2s ease;
}

.whatsapp-bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 24px;
    border-width: 12px 12px 0 12px;
    border-style: solid;
    border-color: #dcf8c6 transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

.whatsapp-bubble span {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #111;
    line-height: 1.45;
    margin-right: 15px;
}

.bubble-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    color: #888;
    cursor: pointer;
    line-height: 1;
}

.bubble-close:hover {
    color: #333;
}

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

.whatsapp-float {
    position: relative;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    main, .container, section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .top-bar {
        font-size: 0.75rem;
        padding: 5px 10px;
        position: fixed;
        top: 0;
    }

    .header {
        top: 28px !important;
        background-image: none !important;
    }

    .header .container {
        height: 50px;
        padding: 0 1rem;
    }

    .logo img {
        height: 35px;
        width: auto;
    }

    .nav {
        top: 78px !important;
    }

    .hero {
        padding-top: 90px !important;
        padding-bottom: 30px !important;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-image {
        order: -1;
        max-width: 220px;
        margin: 0 auto;
        margin-top: 0 !important;
    }

    .hero-image-wrapper {
        margin: 0 !important;
        transform: none !important;
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none !important;
    }

    .hero-image img {
        border-radius: 12px;
        margin: 0 auto;
    }

    .simulator-card {
        margin: 0 -0.5rem;
        border-radius: 1rem;
    }

    .whatsapp-container {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .whatsapp-bubble {
        display: none !important;
    }

    /* Notificação como tarja no rodapé - Mobile */
    .social-proof-notification {
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 10px 15px;
        padding-right: 70px;
        font-size: 0.8rem;
        border-radius: 0 !important;
        background: linear-gradient(90deg, #ffffff 0%, #f8fffe 100%);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .social-proof-notification img {
        width: 40px;
        height: 40px;
    }

    .social-proof-notification .notification-close {
        position: absolute;
        top: 5px;
        right: 70px;
        font-size: 16px;
        color: #999;
    }

    .social-proof-notification .notification-content {
        flex: 1;
    }

    /* WhatsApp fica por cima da tarja */
    .whatsapp-container {
        bottom: 8px;
        right: 10px;
        z-index: 10000;
    }

}

/* ===== BANNER DE COOKIES ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-navy);
    color: var(--white);
    padding: 1.25rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-content {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-content h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-banner-content h4 i {
    color: var(--secondary-turquoise);
}

.cookie-banner-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.cookie-banner-content a {
    color: var(--secondary-turquoise);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner .btn-accept {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.cookie-banner .btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.cookie-banner .btn-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.cookie-banner .btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===== NOTIFICAÇÃO SOCIAL PROOF ===== */
.social-proof-notification {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
    z-index: 998;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--secondary-turquoise);
}

.social-proof-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.social-proof-notification .notification-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--secondary-turquoise);
}

.social-proof-notification .notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-notification .notification-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.social-proof-notification .notification-content {
    flex: 1;
}

.social-proof-notification .notification-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-proof-notification .notification-title .badge {
    background: var(--success);
    color: white;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
}

.social-proof-notification .notification-text {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

.social-proof-notification .notification-text strong {
    color: var(--secondary-green);
}

.social-proof-notification .notification-time {
    font-size: 0.6875rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.social-proof-notification .notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.social-proof-notification .notification-close:hover {
    background: var(--gray-200);
    color: var(--gray-600);
}

/* Animação de pulse no ícone */
.social-proof-notification.show .notification-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsivo */
@media (max-width: 480px) {
    .social-proof-notification {
        left: 10px;
        right: 10px;
        bottom: 90px;
        max-width: none;
    }
}

/* ===== CARDS BENEFÍCIOS SIMULADOR ===== */
.simulator-benefits-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.simulator-benefits-grid .benefit-card-mini {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.simulator-benefits-grid .benefit-card-mini i {
    font-size: 1.75rem;
    color: var(--secondary-turquoise);
    margin-bottom: 0.5rem;
    display: block;
}

.simulator-benefits-grid .benefit-card-mini h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.simulator-benefits-grid .benefit-card-mini p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

@media (max-width: 768px) {
    .simulator-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .simulator-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .modal-overlay {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
