/* ===================================
   RESET E CONFIGURAÇÕES GLOBAIS
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --primary-coral: #F4435A;
    --primary-dark: #EC407A;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-gray: #F5F7FA;
    --medium-gray: #8B95A5;
    --dark-gray: #2D3748;
    --text-dark: #1A202C;
    --success: #10B981;
    --warning: #F59E0B;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #F4435A 0%, #EC407A 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(244, 67, 90, 0.05) 0%, rgba(236, 64, 122, 0.05) 100%);
    
    /* Sombras Profissionais */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-coral: 0 8px 24px rgba(244, 67, 90, 0.2);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

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

.container-small {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   HEADER FIXO
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 999;
    padding: 16px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 16px;
}

.header-contact i {
    color: var(--primary-coral);
    font-size: 18px;
}

/* ===================================
   BARRA DE PROGRESSO
   =================================== */
.progress-container {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-xs);
    z-index: 998;
    padding: 20px 0;
}

.progress-bar-wrapper {
    max-width: 800px;
    margin: 0 auto 16px;
    height: 6px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 25%;
    background: var(--gradient-primary);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.progress-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: var(--transition);
}

.progress-step.active {
    opacity: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--medium-gray);
    transition: var(--transition);
}

.progress-step.active .step-circle {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-coral);
    transform: scale(1.1);
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--medium-gray);
}

.progress-step.active .step-label {
    color: var(--primary-coral);
}

/* ===================================
   SEÇÕES DE PÁGINA
   =================================== */
.page-section {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 80px;
    display: none;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.page-section.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-overlay);
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideUp 0.8s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 67, 90, 0.1);
    color: var(--primary-coral);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.feature-item i {
    color: var(--success);
    font-size: 20px;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--light-gray);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 32px;
    color: var(--primary-coral);
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.trust-item span {
    font-size: 14px;
    color: var(--medium-gray);
}

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

.car-illustration {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-light);
    border-radius: 24px;
    position: relative;
}

.car-illustration i {
    font-size: 200px;
    color: var(--primary-coral);
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

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

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-coral);
}

.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -20px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

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

/* ===================================
   BOTÕES
   =================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 14px;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(244, 67, 90, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(244, 67, 90, 0);
    }
}

/* ===================================
   COMO FUNCIONA
   =================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 60px;
}

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

.step-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-coral);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-coral);
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--medium-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.step-time i {
    color: var(--primary-coral);
}

/* ===================================
   BENEFÍCIOS
   =================================== */
.benefits-section {
    padding: 100px 0;
    background: var(--gradient-overlay);
}

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

.benefit-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-overlay);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--primary-coral);
}

.benefit-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-box p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ===================================
   FORMULÁRIO (ETAPA 2)
   =================================== */
.form-section {
    background: var(--off-white);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-coral);
}

.form-icon i {
    font-size: 36px;
    color: var(--white);
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 24px;
}

.help-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FEF3C7;
    color: #92400E;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
}

.help-box i {
    font-size: 18px;
    color: #F59E0B;
}

.modern-form {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.form-field {
    margin-bottom: 32px;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-field label i {
    color: var(--primary-coral);
    font-size: 18px;
}

.form-field input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary-coral);
    box-shadow: 0 0 0 4px rgba(244, 67, 90, 0.1);
}

.field-help {
    display: block;
    font-size: 13px;
    color: var(--medium-gray);
    margin-top: 8px;
}

.error-message {
    display: block;
    color: var(--primary-coral);
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.form-checkbox {
    margin: 32px 0;
}

.form-checkbox input {
    margin-right: 10px;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--medium-gray);
}

.form-checkbox a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--medium-gray);
    font-size: 14px;
}

.security-badge i {
    color: var(--success);
    font-size: 16px;
}

/* ===================================
   LOADING E APPROVAL SCREENS
   =================================== */
.loading-screen,
.approval-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

.loading-content,
.approval-content {
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.4s ease;
}

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

.loading-spinner {
    margin-bottom: 32px;
}

.spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 6px solid var(--light-gray);
    border-top-color: var(--primary-coral);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.loading-content p {
    color: var(--medium-gray);
    font-size: 16px;
    margin-bottom: 32px;
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.loading-step.active {
    background: rgba(244, 67, 90, 0.1);
    color: var(--primary-coral);
}

.loading-step i {
    font-size: 18px;
}

.approval-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.approval-icon i {
    font-size: 48px;
    color: var(--white);
}

.approval-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.approval-text {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.approval-subtext {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 32px;
}

/* ===================================
   PLANOS (ETAPA 3)
   =================================== */
.plans-section {
    background: var(--off-white);
}

.plans-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.plan-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-coral);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular {
    border-color: var(--primary-coral);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-coral);
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.plan-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-tag.recommended {
    background: rgba(244, 67, 90, 0.1);
    color: var(--primary-coral);
}

.plan-tag.premium {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: var(--white);
}

.plan-price {
    text-align: center;
    margin-bottom: 32px;
    padding: 20px 0;
    background: var(--gradient-overlay);
    border-radius: 12px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-coral);
}

.plan-price .period {
    display: block;
    font-size: 14px;
    color: var(--medium-gray);
    margin-top: 4px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--dark-gray);
}

.plan-features i {
    color: var(--success);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-plan {
    width: 100%;
    background: var(--white);
    color: var(--primary-coral);
    border: 2px solid var(--primary-coral);
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.plans-help {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--medium-gray);
    font-size: 15px;
}

.plans-help i {
    color: var(--primary-coral);
    font-size: 18px;
}

.plans-help a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 600;
}

.plans-help a:hover {
    text-decoration: underline;
}

/* ===================================
   SEÇÃO FINAL (ETAPA 4)
   =================================== */
.final-section {
    background: var(--off-white);
}

.final-success {
    text-align: center;
    margin-bottom: 48px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceIn 0.6s ease;
}

.success-icon i {
    font-size: 48px;
    color: var(--white);
}

.final-success h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.final-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
}

.selected-plan-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.selected-plan-summary h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.summary-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--gradient-overlay);
    padding: 24px;
    border-radius: 16px;
}

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

.summary-icon i {
    font-size: 28px;
    color: var(--white);
}

.summary-details {
    display: flex;
    flex-direction: column;
}

.summary-details strong {
    font-size: 22px;
    margin-bottom: 4px;
}

.summary-details span {
    font-size: 16px;
    color: var(--medium-gray);
}

.next-steps-box {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.next-steps-box h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.next-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: var(--transition);
}

.next-step:hover {
    background: var(--gradient-overlay);
    transform: translateX(8px);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--medium-gray);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 20px 40px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-whatsapp i {
    font-size: 28px;
}

.contact-alternative {
    text-align: center;
    margin: 32px 0;
}

.contact-alternative p {
    color: var(--medium-gray);
    margin-bottom: 12px;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-coral);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.phone-number i {
    font-size: 28px;
}

.reassurance-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(244, 67, 90, 0.05);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-coral);
    margin-top: 32px;
}

.reassurance-box i {
    font-size: 32px;
    color: var(--primary-coral);
    flex-shrink: 0;
}

.reassurance-box strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.reassurance-box p {
    color: var(--medium-gray);
    font-size: 15px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 48px 0;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary-coral);
}

.footer-brand p {
    color: var(--medium-gray);
    font-size: 14px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--medium-gray);
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-coral);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-card.popular {
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .progress-steps {
        padding: 0 12px;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-form {
        padding: 32px 24px;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-contact {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .loading-content,
    .approval-content {
        padding: 40px 24px;
    }
}