/* ========================================
   KOVI - CSS com Paleta BRANCO e VERMELHO
   ======================================== */

/* ===== VARIÁVEIS DE COR ===== */
:root {
    /* Cores principais */
    --primary-red: #E30613;
    --primary-red-dark: #B8000E;
    --primary-red-light: #FF1A2A;
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
    --text-dark: #333333;
    --text-secondary: #666666;
    --border-color: #E0E0E0;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #E30613 0%, #B8000E 100%);
    --gradient-light: linear-gradient(135deg, #FF1A2A 0%, #E30613 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(227, 6, 19, 0.1);
    --shadow-md: 0 4px 6px rgba(227, 6, 19, 0.15);
    --shadow-lg: 0 10px 25px rgba(227, 6, 19, 0.2);
    --shadow-xl: 0 20px 40px rgba(227, 6, 19, 0.25);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--light-gray);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER PROFISSIONAL ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 9998;
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-section {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 32px;
    color: var(--primary-red);
    animation: carDrive 3s ease-in-out infinite;
}

@keyframes carDrive {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

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

.nav-link:hover {
    color: var(--primary-red);
}

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

.header-cta {
    flex-shrink: 0;
}

.btn-header-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-red);
    cursor: pointer;
    padding: 8px;
}

/* ===== BARRA DE PROGRESSO ===== */
.progress-bar-container {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(227, 6, 19, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 20%;
    transition: width var(--transition-slow);
    box-shadow: 0 0 10px var(--primary-red);
}

/* ===== INDICADORES DE ETAPAS ===== */
.step-indicators {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.4;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.step-indicator.active {
    opacity: 1;
    transform: scale(1.1);
}

.step-indicator.completed {
    opacity: 0.7;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.step-indicator.active .step-number {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.step-indicator.completed .step-number {
    background: var(--primary-red-light);
    color: var(--white);
}

.step-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-indicator.active .step-label {
    color: var(--primary-red);
}

/* ===== ETAPAS ===== */
.step {
    display: none;
    min-height: 100vh;
    padding-top: 180px;
    padding-bottom: 60px;
    animation: fadeIn var(--transition-slow);
}

.step.active {
    display: block;
}

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

/* ===== HERO SECTION (ETAPA 1) ===== */
.hero-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BOTÃO SIMULAR DESTACADO ===== */
.btn-simulate {
    background: var(--white) !important;
    color: var(--primary-red) !important;
    padding: 22px 50px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    border-radius: 60px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(227, 6, 19, 0.4) !important;
    border: 3px solid var(--white) !important;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex !important;
    align-items: center;
    gap: 15px;
}

.btn-simulate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-simulate:hover::before {
    width: 400px;
    height: 400px;
}

.btn-simulate:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(227, 6, 19, 0.4), 0 0 0 8px rgba(227, 6, 19, 0.2) !important;
}

.btn-simulate .btn-text {
    position: relative;
    z-index: 1;
}

.btn-simulate .btn-arrow {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-fast);
}

.btn-simulate:hover .btn-arrow {
    transform: translateX(5px);
}

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

@keyframes buttonPulse {
    0% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(227, 6, 19, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 0 15px rgba(227, 6, 19, 0);
    }
    100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(227, 6, 19, 0);
    }
}

/* ===== TRUST BADGES ===== */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
    font-size: 18px;
    color: #4ADE80;
}

/* ===== SEÇÃO DE BENEFÍCIOS ===== */
.benefits-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.benefit-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-family: inherit;
    box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-red-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1eab52;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* ===== FORMULÁRIO (ETAPA 2) ===== */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.registration-form {
    margin-top: 30px;
}

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

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

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--white);
}

input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
}

input::placeholder {
    color: #BBBBBB;
}

.error-message {
    display: block;
    color: var(--primary-red);
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen,
.approval-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.loading-screen.active,
.approval-screen.active {
    display: flex;
}

.loading-content,
.approval-content {
    text-align: center;
    color: var(--white);
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(227, 6, 19, 0.2);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

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

.loading-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.loading-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.approval-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--white);
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(227, 6, 19, 0);
    }
}

.approval-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.approval-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* ===== PLANOS (ETAPA 3) ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red-light);
}

.plan-featured {
    border-color: var(--primary-red);
    border-width: 3px;
    transform: scale(1.05);
}

.plan-featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.plan-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-from {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-red);
}

.price-to {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-features {
    margin-bottom: 30px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.feature:last-child {
    border-bottom: none;
}

.feature i {
    color: var(--primary-red);
    font-size: 18px;
    flex-shrink: 0;
}

.feature span {
    font-size: 15px;
    color: var(--text-dark);
}

/* ===== PROCEDIMENTOS (ETAPA 4) ===== */
.timeline {
    max-width: 700px;
    margin: 0 auto 40px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 55px;
    width: 2px;
    height: calc(100% + 10px);
    background: var(--primary-red-light);
    opacity: 0.3;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all var(--transition-fast);
}

.timeline-content:hover {
    border-color: var(--primary-red-light);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.caution-box {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05) 0%, rgba(255, 26, 42, 0.05) 100%);
    border-left: 4px solid var(--primary-red);
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
}

.caution-box h4 {
    font-size: 18px;
    color: var(--primary-red);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.caution-box p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== WHATSAPP (ETAPA 5) ===== */
.whatsapp-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    animation: successPulse 2s ease infinite;
}

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

.info-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: left;
}

.info-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: var(--primary-red);
    font-size: 18px;
}

.selected-plan-info {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05) 0%, rgba(255, 26, 42, 0.05) 100%);
    border: 2px solid var(--primary-red-light);
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
}

.selected-plan-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.selected-plan-info p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    margin-top: 80px;
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVIDADE ===== */

/* Tablets e telas médias */
@media (max-width: 1024px) {
    .header-container {
        padding: 15px 30px;
    }

    .main-nav {
        gap: 25px;
    }

    .step-indicators {
        top: 85px;
        padding: 12px 20px;
        gap: 12px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .step-label {
        font-size: 10px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .btn-simulate {
        font-size: 18px !important;
        padding: 20px 45px !important;
    }
}

/* Mobile grande */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        padding: 12px 20px;
    }

    .logo i {
        font-size: 28px;
    }

    .logo-text {
        font-size: 28px;
    }

    .progress-bar-container {
        top: 60px;
    }

    .step {
        padding-top: 140px;
    }

    .step-indicators {
        top: 75px;
        gap: 8px;
        padding: 10px 15px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .step-label {
        font-size: 9px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .btn-simulate {
        font-size: 16px !important;
        padding: 18px 35px !important;
        gap: 10px;
    }

    .hero-trust-badges {
        gap: 15px;
    }

    .trust-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-container {
        padding: 30px 20px;
    }

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

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plan-featured {
        transform: scale(1);
    }

    .plan-featured:hover {
        transform: translateY(-10px);
    }

    .whatsapp-container {
        padding: 30px 20px;
    }

    .timeline-item {
        gap: 15px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .timeline-item:not(:last-child)::after {
        left: 19px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .logo i {
        font-size: 24px;
    }

    .logo-text {
        font-size: 24px;
    }

    .step-indicators {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 90%;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-simulate {
        font-size: 15px !important;
        padding: 16px 30px !important;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .approval-icon,
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .loading-content h3,
    .approval-content h2 {
        font-size: 24px;
    }
}

/* Animações adicionais */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.plan-card,
.timeline-item {
    animation: slideInUp 0.6s ease backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
