/* Mostrar texto de experiencia diferente en móvil y escritorio */
.exp-text.exp-mobile {
    display: none;
}
.exp-text.exp-desktop {
    display: inline;
}
@media (max-width: 600px) {
    .exp-text.exp-mobile {
        display: inline;
    }
    .exp-text.exp-desktop {
        display: none;
    }
}
/* === Planes de Selección (Paso 2) === */
.plan-group {
    margin-bottom: 2rem;
}
.plan-label {
    font-weight: 600;
    color: #bfa16a;
    margin-bottom: 0.7rem;
    display: block;
    font-size: 1.08rem;
}
.plan-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.plan-option {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.1rem 1.3rem 1.1rem 3.2rem;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(191,161,106,0.06);
    min-height: 70px;
}
.plan-option input[type="radio"] {
    position: absolute;
    left: 1.2rem;
    top: 1.3rem;
    width: 1.2rem;
    height: 1.2rem;
    accent-color: #bfa16a;
    margin: 0;
}
.plan-option .plan-title {
    font-weight: 600;
    color: #3a3a3a;
    font-size: 1.08rem;
    margin-bottom: 0.2rem;
    display: block;
}
.plan-option .plan-desc {
    color: #7a7a7a;
    font-size: 0.98rem;
    margin-left: 0;
    display: block;
    line-height: 1.4;
}
.plan-option input[type="radio"]:checked + .plan-title {
    color: #bfa16a;
}
.plan-option:has(input[type="radio"]:checked) {
    border-color: #bfa16a;
    box-shadow: 0 0 0 2px #f7ecd7;
}
@media (max-width: 600px) {
    .plan-option {
        padding: 1rem 0.7rem 1rem 2.5rem;
        font-size: 0.98rem;
    }
    .plan-label {
        font-size: 1rem;
    }
}
/* Brand Board Colors - Viviana Woolrich */
:root {
    /* Colores principales del brand board */
    --primary-blue: #324A6E;        /* #324A6E - Azul principal */
    --light-blue: #92ACC5;          /* #92ACC5 - Azul claro */
    --gold: #AF9277;                /* #AF9277 - Dorado */
    --cream: #FBFBF9;               /* #FBFBF9 - Crema */
    --light-gray: #CDD5DD;          /* #CDD5DD - Gris claro */
    --pure-white: #FFFFFF;          /* #FFFFFF - Blanco puro */
    --pure-black: #000000;          /* #000000 - Negro puro */
    
    /* Variaciones de colores */
    --gold-hover: #9A8069;
    --gold-light: rgba(175, 146, 119, 0.1);
    --blue-light: rgba(146, 172, 197, 0.1);
    
    /* Tipografías del brand board */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Sombras y efectos */
    --shadow-light: 0 2px 12px rgba(50, 74, 110, 0.08);
    --shadow-medium: 0 4px 20px rgba(50, 74, 110, 0.12);
    --shadow-heavy: 0 8px 32px rgba(50, 74, 110, 0.16);
    
    --border-radius: 16px;
    --border-radius-small: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--primary-blue);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

/* Hero Section - Rediseñado */
.hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    background: #232946;
    overflow: visible;
    padding: 3rem 0;
}

.hero-background {
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    min-height: 80vh;
    width: 100%;
    padding: 0 2rem;
}

/* Sección Ejemplo */
.ejemplo {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.ejemplo .container {
    max-width: 1400px;
}

.ejemplo .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    width: 100%;
    padding: 0 2rem;
}

.ejemplo .hero-title {
    color: var(--pure-white);
}

.ejemplo .title-highlight {
    color: var(--gold);
}

.ejemplo .title-main {
    color: var(--pure-white);
}

.ejemplo .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

.hero-text {
    color: var(--pure-white);
    max-width: 100%;
}

/* Brand Section */
.brand-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.brand-logo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-circle {
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.brand-logo-img {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: auto;
    display: block;
    object-fit: contain;
}
.brand-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-info {
    flex: 1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
    color: var(--pure-white);
    font-style: italic;
}

.brand-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.3rem 0 1.5rem 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.brand-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    color: var(--gold);
}

/* Hero Main Content */
.hero-main {
    margin-top: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.title-highlight {
    display: block;
    color: var(--gold);
    font-size: 0.7em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    color: var(--pure-white);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 100%;
}

/* Value Proposition */
.value-proposition {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--pure-white);
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--pure-white);
}

.value-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.trust-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(175, 146, 119, 0.05);
    border-radius: var(--border-radius-small);
    border: 1px solid rgba(175, 146, 119, 0.1);
    transition: var(--transition);
}

.benefit:hover {
    background: rgba(175, 146, 119, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.benefit i {
    color: var(--gold);
    font-size: 1.3rem;
    width: 24px;
    flex-shrink: 0;
}

.benefit span {
    font-weight: 500;
    color: var(--primary-blue);
    font-size: 0.95rem;
    line-height: 1.3;
}

/* Form Container - Rediseñado Completamente */
.form-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}

.form-card {
    width: 100%;
    max-width: 580px;
    /* max-height: 95vh; */
    /* overflow-y: auto; */
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(50,74,110,0.15),
        0 4px 20px rgba(175,146,119,0.12),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(175,146,119,0.2);
    backdrop-filter: blur(20px);
    overflow-x: hidden;
    position: relative;
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 2rem;
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(60px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover), var(--primary-blue));
    z-index: 1;
}

/* Header Moderno */
.form-header-modern {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(50,74,110,0.03), rgba(175,146,119,0.03));
    border-bottom: 1px solid rgba(175,146,119,0.1);
}

.form-icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 8px 24px rgba(175,146,119,0.3),
        0 2px 8px rgba(175,146,119,0.2);
    position: relative;
}

.form-icon-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--primary-blue));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

.form-header-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.form-header-modern p {
    color: var(--light-blue);
    font-size: 1rem;
    margin: 0 0 1.5rem;
}

/* Barra de Progreso */
.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(175,146,119,0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    border-radius: 3px;
    width: 33.33%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    font-size: 0.85rem;
    color: var(--light-blue);
    font-weight: 500;
}

.retirement-form {
    padding: 2rem;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.form-step.active {
    display: block;
}

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

/* Header de Step */
.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(175,146,119,0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(175,146,119,0.3);
}

.step-info h4 {
    margin: 0 0 0.25rem;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

.step-info p {
    margin: 0;
    color: var(--light-blue);
    font-size: 0.9rem;
}

/* Floating Labels */
.floating-label {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-label input {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    border: 2px solid rgba(175,146,119,0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
}

.floating-label input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,1);
    box-shadow: 0 0 0 4px rgba(175,146,119,0.1);
    transform: translateY(-1px);
}

.floating-label label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-blue);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
    top: -8px;
    left: 1rem;
    font-size: 0.75rem;
    color: var(--gold);
    background: white;
    padding: 0 0.5rem;
    font-weight: 600;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    z-index: 1;
}

/* Select Groups */
/* Mejora visual de selects y campos agregados */
.form-group.select-group {
    margin-bottom: 1.2rem;
}
.form-group.select-group label {
    font-weight: 600;
    color: #bfa16a;
    margin-bottom: 0.3rem;
    display: block;
    letter-spacing: 0.01em;
}
.form-group.select-group .select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 0.7rem 1.2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(191,161,106,0.06);
}
.form-group.select-group .select-wrapper:focus-within {
    border-color: #bfa16a;
    box-shadow: 0 0 0 2px #f7ecd7;
}
.form-group.select-group select {
    border: none;
    outline: none;
    background: transparent !important;
    font-size: 1.08rem;
    color: #3a3a3a;
    width: 100%;
    padding: 0.5rem 0;
    appearance: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.form-group.select-group select:focus {
    background: transparent !important;
}
.form-group.select-group i {
    color: #bfa16a;
    margin-left: 0.7rem;
    font-size: 1.25rem;
    pointer-events: none;
}

/* Mejora visual para el campo de fecha de nacimiento */
.form-group.floating-label input#fecha_nacimiento {
    padding-left: 2.2rem;
    font-size: 1.08rem;
    border-radius: 14px;
    border: 2px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 2px 8px 0 rgba(191,161,106,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group.floating-label input#fecha_nacimiento:focus {
    border-color: #bfa16a;
    background: #f7ecd7;
    box-shadow: 0 0 0 2px #f7ecd7;
}
.form-group.floating-label input#fecha_nacimiento + label {
    color: #bfa16a;
    font-weight: 600;
}
.form-group.floating-label .input-icon i.fa-calendar-alt {
    color: #bfa16a;
    left: 0.8rem;
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Mejora visual para el select de sexo */
.form-group.select-group .select-wrapper i.fa-venus-mars {
    color: #bfa16a;
    font-size: 1.25rem;
    margin-left: 0.7rem;
}

/* Mejora visual para el select de estado civil */
.form-group.select-group .select-wrapper i.fa-ring {
    color: #bfa16a;
    font-size: 1.25rem;
    margin-left: 0.7rem;
}

/* Ajuste de espaciado para los nuevos campos */
.form-row .form-group.select-group {
    min-width: 48%;
}
.form-row .form-group.floating-label input#fecha_nacimiento {
    min-width: 100%;
}

.select-wrapper select:focus + i {
    transform: translateY(-50%) rotate(180deg);
}

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

/* Checkbox */
.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-text {
    color: var(--primary-blue);
}

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

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

/* Navegación */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nav-button {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nav-button:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(175,146,119,0.3);
}

.submit-button {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(175,146,119,0.3);
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(175,146,119,0.4);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.submit-button:hover::before {
    left: 100%;
}

/* Seguridad */
.form-security {
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(175,146,119,0.05);
    border-radius: 8px;
    border: 1px solid rgba(175,146,119,0.1);
}

.form-security i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Botón scroll-form-btn llamativo */
.scroll-form-btn {
    display: block;
    margin: 1.5rem auto 2.5rem auto;
    padding: 1.2rem 2.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(175,146,119,0.25), 0 2px 8px rgba(175,146,119,0.18);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.5px;
    text-align: center;
}
.scroll-form-btn:hover,
.scroll-form-btn:focus {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(175,146,119,0.35);
    outline: none;
}
.scroll-form-btn::after {
    content: '\f061'; /* FontAwesome flecha derecha */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.8em;
    font-size: 1.1em;
    vertical-align: middle;
    opacity: 0.85;
    transition: margin-left 0.3s;
}
.scroll-form-btn:hover::after {
    margin-left: 1.2em;
    opacity: 1;
}
@media (max-width: 768px) {
    .form-container {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .form-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
        max-height: none;
        overflow-y: visible;
        border-radius: 16px;
        box-sizing: border-box;
    }
    .retirement-form {
        padding: 1.5rem 1rem;
    }
    .scroll-form-btn {
        display: block;
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem 0.8rem;
        border-radius: 12px;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--pure-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-blue);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

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

.service-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold);
}

.service-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--gold-light) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--light-blue);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 16px;
}

.service-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--border-radius-small);
    text-align: center;
}

.price-from {
    font-size: 0.9rem;
    color: var(--light-blue);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0.25rem;
}

.price-period {
    font-size: 0.9rem;
    color: var(--light-blue);
}

.service-button {
    width: 100%;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.service-button:hover {
    background: var(--primary-blue);
    color: var(--pure-white);
}

.featured-button {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--pure-white);
    border-color: var(--gold);
}

.featured-button:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blue-light) 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--light-blue);
    font-weight: 400;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    background: var(--pure-white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    min-height: 180px;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.method-info {
    flex: 1;
    margin-left: 1rem;
}

.method-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-detail {
    font-size: 1rem;
    color: var(--light-blue);
    font-weight: 400;
}

.contact-action {
    background: var(--primary-blue);
    color: var(--pure-white);
    padding: 1rem 1.75rem;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    flex-shrink: 0;
    min-width: 120px;
    text-align: center;
}

.contact-action:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.contact-action.whatsapp {
    background: #25D366;
}

.contact-action.whatsapp:hover {
    background: #1faa52;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--pure-white);
    padding: 60px 0 20px;
}

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

.footer-logo .logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-circle {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 0;
    max-width: 400px;
    align-self: flex-start;
}

.brand-logo-img {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: auto;
    display: block;
    object-fit: contain;
}

.footer-description {
    color: var(--light-blue);
    line-height: 1.6;
    font-size: 1rem;
}

.footer-info h4,
.footer-contact h4 {
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

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

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

.footer-info a {
    color: var(--light-blue);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-info a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--light-blue);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(146, 172, 197, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--light-blue);
    font-size: 0.9rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(175, 146, 119, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--pure-white);
    transform: translateY(-2px);
}

/* Responsive Design */
/* Para pantallas muy grandes */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .hero .container {
        max-width: 1600px;
    }
    
    .hero-content {
        gap: 5rem;
        padding: 0 3rem;
    }
    
    .form-card {
        max-width: 700px;
    }
}

@media (min-width: 1200px) {
    .form-card {
        max-width: 650px;
    }
    
    .hero-content {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .ejemplo .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .form-container {
        order: -1;
    }
    
    .form-card {
        margin: 0 -20px;
        max-width: calc(100% + 40px);
        max-height: 80vh;
        width: calc(100% + 40px);
        box-sizing: border-box;
    }
    
    .retirement-form {
        padding: 2rem 1.5rem;
    }
    
    .brand-logo {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    /* Media Queries for Mobile */
    @media (max-width: 768px) {
        .hero-content {
            display: flex;
            flex-direction: column;
        }
        .hero-text {
            order: 1;
        }
        .form-container {
            order: 2;
        }
    }
    
    .value-proposition {
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-card {
        max-width: 95vw;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .form-header-modern {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .retirement-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .floating-label input {
        padding: 1rem 1rem 1rem 2.5rem;
    }
    
    .floating-label label {
        left: 2.5rem;
    }
    
    .input-icon {
        left: 0.75rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .nav-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 0 5px;
        width: 100vw;
        margin-left: -5px;
        margin-right: -5px;
        box-sizing: border-box;
    }
    
    .form-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
        max-height: none;
        overflow-y: visible;
        border-radius: 12px;
        box-sizing: border-box;
    }
    
    .retirement-form {
        padding: 1.5rem 0.8rem;
    }
    
    .form-header-modern {
        padding: 1.5rem 1rem 1rem;
    }
    
    .form-header-modern h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
}

/* Media Query específica para móviles muy pequeños */
@media (max-width: 480px) {
    .ejemplo {
        padding: 20px 0;
    }
    
    .ejemplo .container {
        padding: 0;
    }
    
    .ejemplo .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .form-container {
        padding: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        box-sizing: border-box;
    }
    
    .form-card {
        max-width: 100vw;
        width: 100vw;
        margin: 0;
        border-radius: 0;
        box-sizing: border-box;
        border-left: none;
        border-right: none;
    }
    
    .retirement-form {
        padding: 1rem 0.75rem;
    }
    
    .form-header-modern {
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .form-header-modern h3 {
        font-size: 1.3rem;
    }
    
    .form-header-modern p {
        font-size: 0.9rem;
    }
    
    .form-icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-info h4 {
        font-size: 1.1rem;
    }
    
    .step-info p {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.9rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .navigation-buttons {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 30px 0 10px;
        text-align: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-logo .logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    .footer-logo-img {
        margin: 0 auto;
        display: block;
        max-width: 220px;
        height: auto;
    }
    .footer-description {
        font-size: 1.35rem;
        margin-bottom: 1.4rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1rem;
    }
    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }
}

/* Media Query para móviles medianos */
@media (max-width: 600px) {
    .ejemplo .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .form-container {
        padding: 0 5px;
        width: calc(100% - 10px);
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .form-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 12px;
        box-sizing: border-box;
    }
    
    .retirement-form {
        padding: 1.5rem 1rem;
    }
    
    .form-header-modern {
        padding: 1.5rem 1rem 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input,
    .form-group select {
        width: 100%;
        box-sizing: border-box;
    }
}