/* ==================== VARIABLES ==================== */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #60a5fa;
    --accent: #93c5fd;
    
    --white: #ffffff;
    --black: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==================== RESET Y BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    line-height: 1.7;
    font-size: 1rem;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
}

section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-900);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== HERO MODERN ==================== */
.hero-modern {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
    padding: 4rem 0;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -250px;
    right: -250px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -200px;
    left: -200px;
    animation-delay: 5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-primary {
    background: var(--white);
    color: var(--primary);
    padding: 1.125rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.125rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease-out 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== SECTION HEADERS ==================== */
.section-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-header-modern h2 {
    margin-bottom: 1rem;
}

.section-header-modern p {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ==================== CARDS GRID ==================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-200);
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.card-modern.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.card-icon.pension {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.card-modern h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-modern p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-benefits {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.card-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.card-benefits li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.card-cta:hover {
    gap: 0.75rem;
}

.card-cta:hover svg {
    transform: translateX(3px);
}

/* ==================== SECCIONES EPS Y PENSIONES ==================== */
.section-eps {
    background: var(--gray-50);
}

.section-pensiones {
    background: var(--white);
}

/* ==================== SEGURIDAD SOCIAL INTEGRAL ==================== */
.section-integral {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-integral::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.integral-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.integral-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.integral-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.integral-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.integral-feature {
    display: flex;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.integral-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integral-feature h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.integral-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-integral {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-integral:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.integral-visual {
    position: relative;
}

.integral-visual img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

.overlay-stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* ==================== EMPRESAS ==================== */
.section-empresas {
    background: var(--gray-50);
}

.empresas-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.empresas-visual {
    position: relative;
}

.empresas-visual img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.empresas-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-xl);
}

.empresas-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.empresas-content h2 {
    margin-bottom: 1.5rem;
}

.empresas-content > p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.empresas-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.empresa-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.empresa-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.item-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.item-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.item-content p {
    color: var(--gray-600);
    margin: 0;
}

.btn-empresas {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-empresas:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==================== CTA FINAL ==================== */
.section-cta-final {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-final-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-final-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.25rem;
}

.cta-final-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-final-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-cta-phone {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-cta-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-trust svg {
    color: #10b981;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gray-900);
    
    color: var(--gray-300);
    position: relative;
    padding-bottom: 10px;
}

.footer-wave {
    position: absolute;
    
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    fill: var(--white);
}

.footer-content {
    padding-top: 5rem;
}

.footer-main {
    display: grid;
    padding-left: 50px;
    padding-top: 5rem;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.logo-icon-footer {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image-footer {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.whatsapp:hover {
    background: #25D366;
}

.social-btn.facebook:hover {
    background: #1877f2;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-contact .contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary-light);
}

.footer-contact .contact-item a {
    display: inline;
    color: var(--gray-300);
    margin: 0;
}

.footer-contact .contact-item a:hover {
    color: var(--white);
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-bottom-links span {
    color: var(--gray-700);
}

/* ==================== WHATSAPP BUBBLE ==================== */
.whatsapp-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse-scale 2s ease-in-out infinite;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-bubble svg {
    width: 36px;
    height: 36px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #25D366;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .integral-container,
    .empresas-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .empresas-container {
        direction: ltr;
    }

    .integral-visual img,
    .empresas-visual img {
        height: 500px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        align-items: flex-start;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-dropdown .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        background: var(--gray-50);
    }

    .hero-modern {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .integral-visual img,
    .empresas-visual img {
        height: 400px;
    }

    .visual-overlay {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .empresas-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }

    .empresas-badge span {
        font-size: 0.95rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-final-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-whatsapp,
    .btn-cta-phone {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-bubble {
        width: 60px;
        height: 60px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-bubble svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .card-modern {
        padding: 2rem;
    }

    .section-header-modern h2 {
        font-size: 1.75rem;
    }

    .integral-feature {
        padding: 1.25rem;
    }

    .empresa-item {
        padding: 1.25rem;
    }

    .item-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ==================== LOADING STATES ==================== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ==================== ACCESSIBILITY ==================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==================== SMOOTH SCROLLING ==================== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .whatsapp-bubble,
    .section-cta-final,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: underline;
    }
    
}


/* ==================== HERO PAGE ==================== */
.hero-page {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span:last-child {
    color: var(--white);
    font-weight: 500;
}

.hero-page h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-action {
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-action.primary {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-action.primary:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-action.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-action.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* ==================== PROCESS SECTION ==================== */
.section-process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light) 0%, transparent 100%);
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==================== EPS CARDS ==================== */
.section-eps-list {
    background: var(--gray-50);
}

.eps-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.eps-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.eps-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.eps-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.eps-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.eps-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.eps-logo img {
    max-width: 120px;
    height: auto;
}

.eps-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.eps-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.eps-features {
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.eps-types {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.type-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.eps-cta {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.eps-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== TIPOS DE AFILIACIÓN ==================== */
.section-tipos-afiliacion {
    background: var(--white);
}

.tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.tipo-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.tipo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tipo-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tipo-icon.blue {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
}

.tipo-icon.green {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: var(--white);
}

.tipo-icon.orange {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: var(--white);
}

.tipo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.tipo-card > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tipo-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tipo-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.tipo-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.link-arrow::after {
    content: "→";
    transition: var(--transition);
}

.link-arrow:hover {
    gap: 0.75rem;
}

.link-arrow:hover::after {
    transform: translateX(3px);
}

/* ==================== FAQ ==================== */
.section-faq {
    background: var(--gray-50);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* ==================== CTA SIMPLE ==================== */
.section-cta-simple {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-simple-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-simple-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.25rem;
}

.cta-simple-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-large {
    background: #25D366;
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-large:hover {
    background: #20ba5a;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-cta-secondary-large {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-cta-secondary-large:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

/* ==================== RESPONSIVE - PAGE SPECIFIC ==================== */
@media (max-width: 768px) {
    .hero-page {
        padding: 5rem 0 3rem;
    }

    .process-step::after {
        display: none;
    }

    .eps-cards-grid {
        grid-template-columns: 1fr;
    }

    .tipos-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }

    .cta-buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-large,
    .btn-cta-secondary-large {
        width: 100%;
        justify-content: center;
    }

    .hero-quick-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-page h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .eps-card {
        padding: 2rem;
    }

    .tipo-card {
        padding: 2rem;
    }
}

/* ==================== HERO PENSIONES ==================== */
.hero-pensiones {
    background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #10b981 100%);
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 500;
}

.trust-badge svg {
    flex-shrink: 0;
}

/* ==================== WHY PENSION SECTION ==================== */
.section-why-pension {
    background: var(--white);
    overflow: hidden;
}

.why-pension-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content h2 {
    margin-bottom: 1.5rem;
}

.why-content > p {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.why-benefits {
    display: grid;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.benefit-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.benefit-text p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.why-visual {
    display: flex;
    justify-content: center;
}

.pension-comparison-card {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.pension-comparison-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.card-subtitle {
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.comparison-item {
    margin-bottom: 2rem;
}

.comparison-item:last-of-type {
    margin-bottom: 1.5rem;
}

.comparison-age {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.comparison-bar {
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.comparison-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    opacity: 0.15;
}

.comparison-bar span {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 1.3rem;
    color: #059669;
}

.comparison-bar.bar-high::before {
    width: 100%;
}

.comparison-bar.bar-medium::before {
    width: 72%;
}

.comparison-bar.bar-low::before {
    width: 48%;
}

.card-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
    margin: 0;
}

/* ==================== FONDOS LIST ==================== */
.section-fondos-list {
    background: var(--gray-50);
}

.fondos-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.fondo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fondo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #059669;
}

.fondo-card.featured {
    border-color: #059669;
}

.fondo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 2;
}

.fondo-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.fondo-logo {
    display: flex;
    align-items: center;
}

.fondo-logo img {
    max-width: 140px;
    height: auto;
}

.fondo-type {
    display: flex;
}

.type-label {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.fondo-type.public .type-label {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.fondo-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 2rem 1rem;
    color: var(--gray-900);
}

.fondo-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 2rem 1.5rem;
    flex-grow: 1;
}

.fondo-highlights {
    background: var(--gray-50);
    padding: 1.5rem 2rem;
    margin: 0 0 1.5rem;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.highlight-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.highlight-row:last-child {
    margin-bottom: 0;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.highlight-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.highlight-value.positive {
    color: #059669;
}

.fondo-features {
    padding: 0 2rem 1.5rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.feature-check:last-child {
    margin-bottom: 0;
}

.feature-check svg {
    color: #059669;
    flex-shrink: 0;
}

.fondo-target {
    background: rgba(5, 150, 105, 0.05);
    padding: 1.25rem 2rem;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-top: 1px solid var(--gray-200);
}

.fondo-target strong {
    color: var(--gray-900);
}

.fondo-cta {
    margin: 0 2rem 2rem;
    background: #059669;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.fondo-cta:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== COMPARISON TABLE ==================== */
.section-comparison {
    background: var(--white);
}

.comparison-table-wrapper {
    margin-bottom: 3rem;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.comparison-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.column-header {
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.column-header.private {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.column-header.public {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.column-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.column-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.column-content {
    padding: 2rem;
}

.comparison-point {
    margin-bottom: 2rem;
}

.comparison-point:last-child {
    margin-bottom: 0;
}

.comparison-point h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.comparison-point p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.comparison-point ul {
    list-style: none;
    padding: 0;
}

.comparison-point li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.comparison-point li::before {
    content: "→";
    position: absolute;
    left: 0.5rem;
    color: #059669;
    font-weight: bold;
}

.comparison-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-cta p {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.btn-comparison {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #059669;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-comparison:hover {
    background: #047857;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==================== PROCESS TIMELINE ==================== */
.section-process-pension {
    background: var(--gray-50);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, #059669 0%, #10b981 100%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    flex-grow: 1;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ==================== RESPONSIVE - PENSIONES PAGE ==================== */
@media (max-width: 1024px) {
    .why-pension-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pension-comparison-card {
        max-width: 100%;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .why-benefits {
        gap: 1.5rem;
    }

    .benefit-item {
        gap: 1.25rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .pension-comparison-card {
        padding: 2rem;
    }

    .comparison-bar {
        height: 50px;
        padding: 0 1rem;
    }

    .comparison-bar span {
        font-size: 1.15rem;
    }

    .fondos-cards-grid {
        grid-template-columns: 1fr;
    }

    .fondo-header {
        flex-direction: column;
        gap: 1rem;
    }

    .process-timeline::before {
        left: 35px;
    }

    .timeline-marker {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .timeline-item {
        gap: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-trust-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-badge {
        justify-content: center;
    }

    .comparison-item {
        margin-bottom: 1.5rem;
    }

    .comparison-bar {
        height: 45px;
    }

    .fondo-card h3 {
        font-size: 1.4rem;
        margin: 1.25rem 1.5rem 0.75rem;
    }

    .fondo-description {
        margin: 0 1.5rem 1.25rem;
    }

    .fondo-highlights {
        padding: 1.25rem 1.5rem;
    }

    .fondo-features {
        padding: 0 1.5rem 1.25rem;
    }

    .fondo-target {
        padding: 1rem 1.5rem;
    }

    .fondo-cta {
        margin: 0 1.5rem 1.5rem;
    }

    .column-header {
        padding: 1.5rem;
    }

    .column-header h3 {
        font-size: 1.5rem;
    }

    .column-content {
        padding: 1.5rem;
    }

    .comparison-point {
        margin-bottom: 1.5rem;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .timeline-marker {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fondo-card,
.comparison-column,
.timeline-item {
    animation: fadeInScale 0.5s ease-out;
}

.fondo-card:nth-child(1) { animation-delay: 0.1s; }
.fondo-card:nth-child(2) { animation-delay: 0.2s; }
.fondo-card:nth-child(3) { animation-delay: 0.3s; }
.fondo-card:nth-child(4) { animation-delay: 0.4s; }

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

/* ==================== HERO EMPRESAS ==================== */
.hero-empresas {
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 50%, #f97316 100%);
}

.hero-stats-empresas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.stat-empresas {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-empresas .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-empresas .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== PROBLEMS SECTION ==================== */
.section-problems {
    background: var(--gray-50);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.problem-card:hover {
    border-color: #ea580c;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ea580c;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.problem-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.problems-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(234, 88, 12, 0.2);
}

.problems-cta p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.problems-cta p:last-child {
    margin-bottom: 0;
}

/* ==================== SERVICIOS EMPRESAS ==================== */
.section-servicios-empresas {
    background: var(--white);
}

.servicios-empresas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.servicio-empresa-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.servicio-empresa-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.servicio-empresa-card.featured {
    border-color: #ea580c;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.servicio-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.servicio-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(234, 88, 12, 0.08);
    line-height: 1;
}

.servicio-icon-wrapper {
    margin-bottom: 1.5rem;
}

.servicio-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.servicio-icon.blue {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.servicio-icon.green {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.servicio-icon.orange {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.servicio-icon.purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.servicio-icon.red {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.servicio-icon.teal {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.servicio-empresa-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.servicio-empresa-card > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.servicio-includes {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.servicio-includes li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.servicio-includes li:last-child {
    margin-bottom: 0;
}

.servicio-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ea580c;
    font-weight: bold;
    font-size: 1.2rem;
}

.servicio-tiempo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.servicio-tiempo svg {
    color: #ea580c;
}

/* ==================== BENEFICIOS EMPRESAS ==================== */
.section-beneficios-empresas {
    background: var(--gray-50);
}

.beneficios-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.beneficio-big-card {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    height: 100%;
}

.beneficio-icon-big {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.beneficio-big-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.beneficio-big-card > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.beneficio-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-benefit {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-benefit .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.beneficios-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.beneficio-item {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 1.25rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.beneficio-item:hover {
    border-color: #ea580c;
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.beneficio-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ea580c;
}

.beneficio-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.beneficio-item p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ==================== PROCESO EMPRESAS ==================== */
.section-como-funciona-empresas {
    background: var(--white);
}

.proceso-empresas-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1300px;
    margin: 0 auto;
}

.proceso-empresa-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

.step-circle span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.proceso-empresa-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.proceso-empresa-step p {
    color: var(--gray-600);
    line-height: 1.6;
}

.proceso-empresa-arrow {
    color: #ea580c;
    opacity: 0.3;
    flex-shrink: 0;
}

/* ==================== PRECIOS EMPRESAS ==================== */
.section-precios-empresas {
    background: var(--gray-50);
}

.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.precio-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.precio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.precio-card.destacado {
    border-color: #ea580c;
    box-shadow: var(--shadow-lg);
}

.precio-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.precio-header {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.precio-card.destacado .precio-header {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.precio-header h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.precio-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.precio-empleados {
    padding: 1.5rem;
    text-align: center;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.empleados-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.empleados-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.precio-monto {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.precio-desde {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.precio-valor {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.precio-periodo {
    font-size: 1rem;
    color: var(--gray-600);
}

.precio-includes {
    list-style: none;
    padding: 2rem;
}

.precio-includes li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.precio-includes li:last-child {
    margin-bottom: 0;
}

.precio-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ea580c;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-precio {
    display: block;
    margin: 0 2rem 2rem;
    padding: 1.25rem;
    background: #ea580c;
    color: var(--white);
    text-align: center;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-precio:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.precios-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(234, 88, 12, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(234, 88, 12, 0.2);
    text-align: center;
}

.precios-note p {
    color: var(--gray-700);
    margin: 0;
    line-height: 1.7;
}

/* ==================== RESPONSIVE - EMPRESAS ==================== */
@media (max-width: 1024px) {
    .beneficios-layout {
        grid-template-columns: 1fr;
    }

    .proceso-empresas-grid {
        flex-wrap: wrap;
    }

    .proceso-empresa-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-stats-empresas {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-empresas {
        padding: 1.25rem;
    }

    .stat-empresas .stat-number {
        font-size: 2rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .servicios-empresas-grid {
        grid-template-columns: 1fr;
    }

    .servicio-empresa-card {
        padding: 2rem;
    }

    .servicio-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .beneficio-big-card {
        padding: 2rem;
    }

    .beneficio-icon-big {
        width: 70px;
        height: 70px;
    }

    .beneficio-big-card h3 {
        font-size: 1.75rem;
    }

    .beneficio-stats {
        grid-template-columns: 1fr;
    }

    .proceso-empresas-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .proceso-empresa-step {
        max-width: 100%;
    }

    .precios-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .problem-card {
        padding: 2rem;
    }

    .problem-icon {
        width: 70px;
        height: 70px;
    }

    .servicio-icon {
        width: 60px;
        height: 60px;
    }

    .beneficio-big-card {
        padding: 1.75rem;
    }

    .stat-big {
        font-size: 2.5rem;
    }

    .beneficio-item {
        padding: 1.5rem;
    }

    .step-circle {
        width: 70px;
        height: 70px;
    }

    .step-circle span {
        font-size: 1.75rem;
    }

    .precio-valor {
        font-size: 2.5rem;
    }
}

/* ==================== ANIMATIONS - EMPRESAS ==================== */
.problem-card,
.servicio-empresa-card,
.beneficio-item {
    animation: fadeInScale 0.5s ease-out;
}

.problem-card:nth-child(1),
.servicio-empresa-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2),
.servicio-empresa-card:nth-child(2) { animation-delay: 0.15s; }
.problem-card:nth-child(3),
.servicio-empresa-card:nth-child(3) { animation-delay: 0.2s; }
.problem-card:nth-child(4),
.servicio-empresa-card:nth-child(4) { animation-delay: 0.25s; }
.problem-card:nth-child(5),
.servicio-empresa-card:nth-child(5) { animation-delay: 0.3s; }
.problem-card:nth-child(6),
.servicio-empresa-card:nth-child(6) { animation-delay: 0.35s; }

.precio-card:nth-child(1) { animation-delay: 0.1s; }
.precio-card:nth-child(2) { animation-delay: 0.2s; }
.precio-card:nth-child(3) { animation-delay: 0.3s; }

/* ==================== HERO INDEPENDIENTES ==================== */
.hero-independientes {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.hero-perfiles {
    margin-top: 3rem;
    text-align: center;
}

.perfiles-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.perfiles-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.perfil-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.perfil-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ==================== OBLIGATORIO SECTION ==================== */
.section-obligatorio {
    background: var(--white);
}

.obligatorio-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.obligatorio-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: sticky;
    top: 100px;
}

.obligatorio-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.obligatorio-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.obligatorio-card > p {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.obligatorio-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.obligatorio-warning svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.obligatorio-warning span {
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.6;
}

.obligatorio-content h2 {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.obligados-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.obligado-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.obligado-item:hover {
    border-color: #6366f1;
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.obligado-check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6366f1;
    font-size: 1.5rem;
    font-weight: bold;
}

.obligado-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.obligado-item p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ==================== QUÉ NECESITAS ==================== */
.section-que-necesitas {
    background: var(--gray-50);
}

.sistemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sistema-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.sistema-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.sistema-header {
    padding: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sistema-header.salud {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

.sistema-header.pension {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.sistema-header.arl {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.sistema-header.caja {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.sistema-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sistema-header h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin: 0;
}

.sistema-content {
    padding: 2rem;
}

.sistema-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.sistema-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.sistema-detail:last-of-type {
    margin-bottom: 1.5rem;
}

.detail-label {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--gray-900);
    font-weight: 600;
}

.sistema-opciones {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.sistema-opciones strong {
    color: var(--gray-900);
}

.total-cotizacion {
    display: flex;
    justify-content: center;
}

.total-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: var(--white);
    padding: 3rem 4rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
}

.total-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.total-monto {
    margin-bottom: 1.5rem;
}

.monto-big {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.monto-aprox {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.total-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* ==================== SERVICIOS INDEPENDIENTES ==================== */
.section-servicios-independientes {
    background: var(--white);
}

.servicios-indep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.servicio-indep-card {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.servicio-indep-card:hover {
    border-color: #6366f1;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.servicio-indep-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.servicio-indep-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.servicio-indep-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.servicio-indep-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ==================== CÓMO FUNCIONA INDEPENDIENTES ==================== */
.section-como-funciona-indep {
    background: var(--gray-50);
}

.steps-indep-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-indep {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-indep:last-child {
    margin-bottom: 0;
}

.step-indep:last-child .step-indep-line {
    display: none;
}

.step-indep-visual {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-indep-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    margin-bottom: 1rem;
}

.step-indep-line {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
}

.step-indep-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    flex-grow: 1;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.step-indep-content:hover {
    border-color: #6366f1;
    box-shadow: var(--shadow-md);
}

.step-indep-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.step-indep-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* ==================== CASOS ESPECIALES ==================== */
.section-casos-especiales {
    background: var(--white);
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.caso-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: var(--transition);
}

.caso-card:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.caso-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.caso-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ==================== PRECIOS INDEPENDIENTES ==================== */
.section-precios-indep {
    background: var(--gray-50);
}

.precios-indep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.precio-indep-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.precio-indep-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.precio-indep-card.destacado {
    border-color: #6366f1;
    box-shadow: var(--shadow-lg);
}

.precio-indep-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.precio-indep-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.precio-indep-monto {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.precio-indep-valor {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.precio-indep-unico,
.precio-indep-periodo {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.precio-indep-desc {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.precio-indep-list {
    list-style: none;
    flex-grow: 1;
}

.precio-indep-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.precio-indep-list li:last-child {
    margin-bottom: 0;
}

.precio-indep-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
    font-size: 1.2rem;
}

.precios-indep-note {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
}

.precios-indep-note p {
    color: var(--gray-700);
    margin: 0;
    line-height: 1.7;
}

/* ==================== RESPONSIVE - INDEPENDIENTES ==================== */
@media (max-width: 1024px) {
    .obligatorio-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .obligatorio-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .perfiles-tags {
        flex-direction: column;
        align-items: stretch;
    }

    .perfil-tag {
        text-align: center;
    }

    .obligatorio-card {
        padding: 2rem;
    }

    .obligatorio-icon {
        width: 70px;
        height: 70px;
    }

    .obligado-item {
        padding: 1.25rem;
    }

    .sistemas-grid {
        grid-template-columns: 1fr;
    }

    .total-card {
        padding: 2.5rem 2rem;
    }

    .monto-big {
        font-size: 3rem;
    }

    .servicios-indep-grid {
        grid-template-columns: 1fr;
    }

    .step-indep {
        gap: 1.5rem;
    }

    .step-indep-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .step-indep-content {
        padding: 1.75rem;
    }

    .casos-grid {
        grid-template-columns: 1fr;
    }

    .precios-indep-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .obligatorio-card h3 {
        font-size: 1.5rem;
    }

    .obligado-check {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .sistema-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .sistema-content {
        padding: 1.5rem;
    }

    .total-card {
        padding: 2rem 1.5rem;
    }

    .monto-big {
        font-size: 2.5rem;
    }

    .servicio-indep-card {
        padding: 2rem;
    }

    .servicio-indep-icon {
        width: 70px;
        height: 70px;
    }

    .step-indep {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-indep-line {
        display: none;
    }

    .caso-card {
        padding: 1.75rem;
    }

    .precio-indep-card {
        padding: 2.5rem 2rem;
    }

    .precio-indep-valor {
        font-size: 2.5rem;
    }
}

/* ==================== ANIMATIONS - INDEPENDIENTES ==================== */
.obligado-item,
.sistema-card,
.servicio-indep-card,
.caso-card {
    animation: fadeInScale 0.5s ease-out;
}

.obligado-item:nth-child(1) { animation-delay: 0.1s; }
.obligado-item:nth-child(2) { animation-delay: 0.15s; }
.obligado-item:nth-child(3) { animation-delay: 0.2s; }
.obligado-item:nth-child(4) { animation-delay: 0.25s; }
.obligado-item:nth-child(5) { animation-delay: 0.3s; }

.sistema-card:nth-child(1) { animation-delay: 0.1s; }
.sistema-card:nth-child(2) { animation-delay: 0.2s; }
.sistema-card:nth-child(3) { animation-delay: 0.3s; }
.sistema-card:nth-child(4) { animation-delay: 0.4s; }

.servicio-indep-card:nth-child(1) { animation-delay: 0.1s; }
.servicio-indep-card:nth-child(2) { animation-delay: 0.15s; }
.servicio-indep-card:nth-child(3) { animation-delay: 0.2s; }
.servicio-indep-card:nth-child(4) { animation-delay: 0.25s; }
.servicio-indep-card:nth-child(5) { animation-delay: 0.3s; }
.servicio-indep-card:nth-child(6) { animation-delay: 0.35s; }


/* ==================== HERO NOSOTROS ==================== */
.hero-nosotros {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
}

/* ==================== HISTORIA SECTION ==================== */
.section-historia {
    background: var(--white);
    padding: 6rem 0;
}

.historia-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.historia-imagen {
    position: sticky;
    top: 100px;
}

.imagen-placeholder {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.imagen-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.imagen-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f766e;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 600;
}

.historia-contenido h2 {
    margin-bottom: 1.5rem;
}

.historia-intro {
    font-size: 1.2rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.historia-text {
    margin-bottom: 2.5rem;
}

.historia-text p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.historia-text p:last-child {
    margin-bottom: 0;
}

.historia-text em {
    font-style: italic;
    color: var(--gray-700);
}

.fundador-firma {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.firma-linea {
    width: 120px;
    height: 2px;
    background: #0f766e;
}

.firma-info p {
    margin: 0;
    line-height: 1.4;
}

.firma-nombre {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.firma-cargo {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ==================== VALORES SECTION ==================== */
.section-valores {
    background: var(--gray-50);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.valor-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.valor-card:hover {
    border-color: #14b8a6;
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
    margin-bottom: 1.5rem;
}

.valor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.valor-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ==================== POR QUÉ SECTION ==================== */
.section-por-que {
    background: var(--white);
}

.por-que-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.por-que-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.por-que-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.por-que-numero {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.por-que-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.por-que-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.por-que-visual {
    position: sticky;
    top: 100px;
}

.estadisticas-card {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.estadisticas-card h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.estadistica-item {
    text-align: center;
    padding: 1.5rem 0;
}

.estadistica-valor {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.estadistica-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.estadistica-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}

/* ==================== EQUIPO SECTION ==================== */
.section-equipo {
    background: var(--gray-50);
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.equipo-member {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.equipo-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #14b8a6;
}

.member-foto {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.member-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.equipo-member:hover .member-foto img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.member-cargo {
    color: #0f766e;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-desc {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ==================== TESTIMONIOS SECTION ==================== */
.section-testimonios {
    background: var(--white);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonio-card {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonio-card:hover {
    border-color: #14b8a6;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonio-estrellas {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonio-texto {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.05rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-300);
}

.autor-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #14b8a6;
}

.autor-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autor-info p {
    margin: 0;
    line-height: 1.4;
}

.autor-nombre {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1rem;
}

.autor-empresa {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ==================== UBICACIÓN SECTION ==================== */
.section-ubicacion {
    background: var(--gray-50);
}

.ubicacion-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ubicacion-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ubicacion-detalle {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 1.5rem;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.ubicacion-detalle:hover {
    border-color: #14b8a6;
    box-shadow: var(--shadow-md);
}

.detalle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
    flex-shrink: 0;
}

.ubicacion-detalle h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.ubicacion-detalle p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.ubicacion-detalle p:last-child {
    margin-bottom: 0;
}

.ubicacion-detalle a {
    color: #0f766e;
    font-weight: 600;
    transition: var(--transition);
}

.ubicacion-detalle a:hover {
    color: #14b8a6;
}

.detalle-note {
    font-size: 0.9rem;
    color: var(--gray-500) !important;
}

.ubicacion-cta {
    margin-top: 1rem;
}

.btn-ubicacion {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-ubicacion:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.ubicacion-mapa {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--gray-200);
}

.ubicacion-mapa iframe {
    display: block;
}

/* ==================== RESPONSIVE - NOSOTROS ==================== */
@media (max-width: 1024px) {
    .historia-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .historia-imagen {
        position: relative;
        top: 0;
    }

    .por-que-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .por-que-visual {
        position: relative;
        top: 0;
    }

    .ubicacion-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-historia {
        padding: 4rem 0;
    }

    .overlay-badge {
        padding: 1.25rem;
    }

    .badge-number {
        font-size: 2rem;
    }

    .historia-intro {
        font-size: 1.1rem;
    }

    .historia-text p {
        font-size: 1rem;
    }

    .fundador-firma {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .valor-card {
        padding: 2rem;
    }

    .valor-icon {
        width: 70px;
        height: 70px;
    }

    .por-que-item {
        gap: 1.5rem;
    }

    .por-que-numero {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .estadisticas-card {
        padding: 2.5rem 2rem;
    }

    .estadistica-valor {
        font-size: 3rem;
    }

    .equipo-grid {
        grid-template-columns: 1fr;
    }

    .member-foto {
        height: 280px;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .testimonio-card {
        padding: 2rem;
    }

    .ubicacion-info {
        gap: 1.5rem;
    }

    .ubicacion-detalle {
        padding: 1.75rem;
        gap: 1.25rem;
    }

    .detalle-icon {
        width: 50px;
        height: 50px;
    }

    .ubicacion-mapa iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .historia-intro {
        font-size: 1.05rem;
    }

    .valor-card h3 {
        font-size: 1.3rem;
    }

    .por-que-content h3 {
        font-size: 1.15rem;
    }

    .estadisticas-card h3 {
        font-size: 1.5rem;
    }

    .estadistica-valor {
        font-size: 2.5rem;
    }

    .member-foto {
        height: 250px;
    }

    .member-info {
        padding: 1.75rem;
    }

    .testimonio-estrellas {
        font-size: 1.1rem;
    }

    .testimonio-texto {
        font-size: 1rem;
    }

    .autor-foto {
        width: 50px;
        height: 50px;
    }

    .ubicacion-detalle {
        flex-direction: column;
        text-align: center;
    }

    .detalle-icon {
        margin: 0 auto;
    }

    .btn-ubicacion {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== ANIMATIONS - NOSOTROS ==================== */
.valor-card,
.por-que-item,
.equipo-member,
.testimonio-card {
    animation: fadeInScale 0.5s ease-out;
}

.valor-card:nth-child(1) { animation-delay: 0.1s; }
.valor-card:nth-child(2) { animation-delay: 0.15s; }
.valor-card:nth-child(3) { animation-delay: 0.2s; }
.valor-card:nth-child(4) { animation-delay: 0.25s; }
.valor-card:nth-child(5) { animation-delay: 0.3s; }
.valor-card:nth-child(6) { animation-delay: 0.35s; }

.por-que-item:nth-child(1) { animation-delay: 0.1s; }
.por-que-item:nth-child(2) { animation-delay: 0.2s; }
.por-que-item:nth-child(3) { animation-delay: 0.3s; }
.por-que-item:nth-child(4) { animation-delay: 0.4s; }
.por-que-item:nth-child(5) { animation-delay: 0.5s; }

.equipo-member:nth-child(1) { animation-delay: 0.1s; }
.equipo-member:nth-child(2) { animation-delay: 0.2s; }
.equipo-member:nth-child(3) { animation-delay: 0.3s; }

.testimonio-card:nth-child(1) { animation-delay: 0.1s; }
.testimonio-card:nth-child(2) { animation-delay: 0.15s; }
.testimonio-card:nth-child(3) { animation-delay: 0.2s; }
.testimonio-card:nth-child(4) { animation-delay: 0.25s; }
.testimonio-card:nth-child(5) { animation-delay: 0.3s; }
.testimonio-card:nth-child(6) { animation-delay: 0.35s; }

/* Animación suave al hacer scroll */
@media (prefers-reduced-motion: no-preference) {
    .historia-contenido,
    .estadisticas-card {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out forwards;
    }
}

/* ==================== HERO CONTACTO ==================== */
.hero-contacto {
    background: linear-gradient(135deg, #be123c 0%, #e11d48 50%, #f43f5e 100%);
}

.hero-contact-quick {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-quick-btn.whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.contact-quick-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.contact-quick-btn.phone {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.contact-quick-btn.phone:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.contact-quick-btn.email {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.contact-quick-btn.email:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* ==================== FORMAS DE CONTACTO ==================== */
.section-formas-contacto {
    background: var(--white);
}

.formas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.forma-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.forma-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.forma-card.destacada {
    border-color: #25D366;
    box-shadow: var(--shadow-lg);
}

.forma-header {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    color: var(--white);
}

.forma-header.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
}

.forma-header.phone {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.forma-header.email {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.forma-header.oficina {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.forma-header svg {
    margin-bottom: 1rem;
}

.forma-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.forma-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.forma-body {
    padding: 2rem;
}

.forma-desc {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.forma-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.forma-detail svg {
    color: #25D366;
    flex-shrink: 0;
}

.forma-numero,
.forma-email {
    text-align: center;
    margin: 1.5rem 0;
}

.forma-numero a,
.forma-email a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.forma-numero a:hover,
.forma-email a:hover {
    color: var(--primary-dark);
}

.forma-horario {
    background: var(--gray-50);
    padding: 1.25rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.forma-horario p {
    margin: 0.5rem 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.forma-direccion {
    background: var(--gray-50);
    padding: 1.25rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.forma-direccion p {
    margin: 0.5rem 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.btn-forma {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-forma.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.btn-forma.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-forma.phone-btn {
    background: var(--primary);
    color: var(--white);
}

.btn-forma.phone-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-forma.email-btn {
    background: #7c3aed;
    color: var(--white);
}

.btn-forma.email-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-forma.oficina-btn {
    background: #dc2626;
    color: var(--white);
}

.btn-forma.oficina-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== FORMULARIO ==================== */
.section-formulario {
    background: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
    color: var(--white);
}

.formulario-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.formulario-info {
    position: sticky;
    top: 100px;
}

.formulario-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.formulario-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.formulario-beneficios {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.beneficio-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.beneficio-form svg {
    flex-shrink: 0;
}

.formulario-urgente {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.formulario-urgente svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.formulario-urgente strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.formulario-urgente p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.formulario-urgente a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
}

.formulario-contenedor {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-row:has(.form-group:nth-child(2)) {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    color: var(--gray-700);
    line-height: 1.6;
    cursor: pointer;
}

.form-checkbox label a {
    color: #e11d48;
    text-decoration: underline;
}

.btn-submit {
    background: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    color: #065f46;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #991b1b;
}

/* ==================== MAPA ==================== */
.section-mapa {
    padding: 0;
}

.mapa-contenedor {
    position: relative;
    height: 500px;
}

.mapa-contenedor iframe {
    width: 100%;
    height: 100%;
}

.mapa-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
}

.mapa-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 350px;
}

.mapa-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.mapa-card p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.btn-mapa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e11d48;
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-mapa:hover {
    background: #be123c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== FAQ RAPIDO ==================== */
.section-faq-rapido {
    background: var(--gray-50);
}

.faq-rapido-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-rapido-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.faq-rapido-card:hover {
    border-color: #e11d48;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.faq-rapido-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.faq-rapido-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ==================== RESPONSIVE - CONTACTO ==================== */
@media (max-width: 1024px) {
    .formulario-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .formulario-info {
        position: relative;
        top: 0;
    }

    .mapa-overlay {
        position: static;
        padding: 2rem;
    }

    .mapa-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-contact-quick {
        flex-direction: column;
        width: 100%;
    }

    .contact-quick-btn {
        width: 100%;
        justify-content: center;
    }

    .formas-grid {
        grid-template-columns: 1fr;
    }

    .formulario-contenedor {
        padding: 2rem;
    }

    .form-row:has(.form-group:nth-child(2)) {
        grid-template-columns: 1fr;
    }

    .faq-rapido-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .forma-header {
        padding: 2rem 1.5rem;
    }

    .forma-body {
        padding: 1.75rem;
    }

    .forma-numero a,
    .forma-email a {
        font-size: 1.4rem;
    }

    .formulario-contenedor {
        padding: 1.75rem;
    }

    .btn-submit {
        padding: 1.125rem 2rem;
    }

    .faq-rapido-card {
        padding: 1.75rem;
    }
}

/* ==================== ANIMATIONS - CONTACTO ==================== */
.forma-card,
.faq-rapido-card {
    animation: fadeInScale 0.5s ease-out;
}

.forma-card:nth-child(1) { animation-delay: 0.1s; }
.forma-card:nth-child(2) { animation-delay: 0.2s; }
.forma-card:nth-child(3) { animation-delay: 0.3s; }
.forma-card:nth-child(4) { animation-delay: 0.4s; }

.faq-rapido-card:nth-child(1) { animation-delay: 0.1s; }
.faq-rapido-card:nth-child(2) { animation-delay: 0.2s; }
.faq-rapido-card:nth-child(3) { animation-delay: 0.3s; }
.faq-rapido-card:nth-child(4) { animation-delay: 0.4s; }