/* ========================================
   FINANSUL - CSS PROFISSIONAL
   ======================================== */

/* RESET E VARIÁVEIS */
:root {
    /* Cores principais */
    --primary-blue: #1e3a8a;
    --primary-blue-light: #2563eb;
    --primary-green: #059669;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --gradient-success: linear-gradient(135deg, var(--primary-green) 0%, #10b981 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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transições */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ========================================
   HEADER E NAVEGAÇÃO
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.btn-header {
    display: inline-flex;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition);
}

/* ========================================
   BOTÕES
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-xlarge {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    margin-top: 72px;
}

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

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.badge-experience {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-success);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

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

.hero-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 400px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.hero-card h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.card-info {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.card-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========================================
   SECTIONS GERAIS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
}

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

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.step-card {
    grid-column: span 1;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:nth-child(2n) {
    grid-column: span 2;
}

.step-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 1rem auto 1rem;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.step-arrow {
    text-align: center;
    color: var(--primary-blue-light);
}

.step-arrow i {
    font-size: 2rem;
}

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

/* ========================================
   FORMULÁRIO DESTAQUE
   ======================================== */
.form-highlight {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

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

.form-highlight-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.form-highlight-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.form-benefits-list {
    list-style: none;
}

.form-benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-benefits-list i {
    font-size: 1.25rem;
}

.form-highlight-cta {
    text-align: center;
}

.pulse {
    animation: pulse 2s infinite;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-disclaimer i {
    margin-right: 0.5rem;
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.testimonial-avatar i {
    font-size: 1.75rem;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========================================
   PERFIS ATENDIDOS
   ======================================== */
.profiles {
    padding: 100px 0;
    background: var(--white);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.profile-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.profile-card:hover {
    border-color: var(--primary-blue-light);
    transform: translateY(-5px);
}

.profile-card.highlight {
    background: var(--gradient-success);
    color: var(--white);
}

.profile-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card.highlight .profile-icon {
    background: rgba(255, 255, 255, 0.3);
}

.profile-icon i {
    font-size: 2rem;
    color: var(--white);
}

.profile-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.profile-card.highlight h3 {
    color: var(--white);
}

.profile-note {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* ========================================
   TAXAS E CONDIÇÕES
   ======================================== */
.rates {
    padding: 100px 0;
    background: var(--gray-50);
}

.rates-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.rate-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.rate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rate-icon i {
    font-size: 2rem;
    color: var(--white);
}

.rate-card h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.rate-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

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

.payment-methods {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.payment-methods h3 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    font-weight: 700;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.payment-option i {
    font-size: 3rem;
    color: var(--primary-blue-light);
}

.payment-option span {
    font-weight: 600;
    color: var(--gray-700);
}

/* ========================================
   DIFERENCIAIS
   ======================================== */
.differentials {
    padding: 100px 0;
    background: var(--white);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.differential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    transition: var(--transition);
}

.differential-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.differential-item i {
    font-size: 3rem;
    color: var(--primary-blue-light);
    margin-bottom: 1rem;
}

.differential-item h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.differential-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-green);
}

.footer-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

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

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

.footer-social a:hover {
    background: var(--primary-blue-light);
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-info,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-info li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-blue-light);
}

.footer-info li,
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 0.9;
}

.footer-info i,
.footer-contact i {
    margin-top: 0.25rem;
    color: var(--primary-green);
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-blue-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-powered {
    margin-top: 0.5rem;
}

.footer-powered i {
    color: #ef4444;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gray-200);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--gray-300);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 1.25rem;
    color: var(--gray-700);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

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

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

.progress-step span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

.progress-step.active span {
    color: var(--primary-blue);
}

/* Modal Steps */
.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.modal-info {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

/* Form Styling */
.loan-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    cursor: pointer;
    color: var(--gray-700);
}

/* Installments Table */
.installments-table {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 2rem;
}

#installmentsOptions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.installment-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.installment-option:hover {
    border-color: var(--primary-blue-light);
    background: var(--white);
}

.installment-option input {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.installment-option.selected {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.installment-info {
    flex: 1;
}

.installment-info h4 {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.installment-info p {
    color: var(--gray-600);
}

/* Payment Options */
.payment-options-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-option-card {
    display: block;
    cursor: pointer;
}

.payment-option-card input {
    display: none;
}

.payment-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: var(--transition);
}

.payment-option-card:hover .payment-card-content {
    border-color: var(--primary-blue-light);
    background: var(--white);
}

.payment-option-card input:checked ~ .payment-card-content {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

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

.payment-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.payment-card-text h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.payment-card-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Approval Section */
.approval-header {
    text-align: center;
    margin-bottom: 2rem;
}

.approval-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

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

.approval-summary {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.approval-summary h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.summary-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Guarantee Section */
.guarantee-section {
    margin-bottom: 2rem;
}

.guarantee-section h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.guarantee-intro {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.guarantee-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-card {
    display: block;
    cursor: pointer;
}

.guarantee-card input {
    display: none;
}

.guarantee-content {
    padding: 2rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: var(--transition);
}

.guarantee-card:hover .guarantee-content {
    border-color: var(--primary-blue-light);
    background: var(--white);
}

.guarantee-card input:checked ~ .guarantee-content {
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guarantee-number {
    font-size: 2rem;
}

.guarantee-header h4 {
    font-size: 1.3rem;
    color: var(--gray-900);
    font-weight: 700;
}

.guarantee-description {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guarantee-benefits {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.guarantee-benefits p {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.guarantee-benefits ul {
    list-style: none;
    margin-bottom: 1rem;
}

.guarantee-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.guarantee-benefits i {
    color: var(--primary-green);
}

.guarantee-price {
    text-align: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    margin-top: 1rem;
}

.guarantee-price strong {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.guarantee-price small {
    color: var(--gray-600);
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .hero-content,
    .form-highlight-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rates-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card,
    .step-card:nth-child(2n) {
        grid-column: span 1;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navegação mobile */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-header {
        display: none;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Grids */
    .benefits-grid,
    .testimonials-grid,
    .profiles-grid,
    .rates-content,
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row,
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Modal */
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .progress-bar {
        overflow-x: auto;
    }
    
    .progress-step span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-xlarge {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
    }
    
    .progress-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}