/* Reset y Variables */
:root {
    --primary: #0a4a8e;
    --primary-dark: #083a6f;
    --primary-light: #1565c0;
    --accent: #ffa000;
    --accent-dark: #ff8f00;
    --accent-light: #ffb300;
    --success: #25d366;
    --success-dark: #128C7E;
    --text-dark: #1a1a1a;
    --text-gray: #545454;
    --text-light: #757575;
    --bg-light: #f5f7fa;
    --bg-lighter: #fafbfc;
    --white: #ffffff;
    --border-light: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 50px;
    --transition: all 0.3s linear;
    
    /* Variables Optimizadas para Premium Effects */
    --primary-color: #0a4a8e;
    --secondary-color: #1565c0;
    --accent-color: #ffa000;
    --glass-bg: rgba(248, 250, 252, 0.85);
    --glass-bg-light: rgba(255, 255, 255, 0.90);
    --glass-border: rgba(10, 74, 142, 0.08);
    --glass-border-light: rgba(255, 255, 255, 0.6);
    --shadow-premium: 0 8px 32px rgba(10, 74, 142, 0.08);
    --shadow-soft: 0 4px 20px rgba(10, 74, 142, 0.06);
    --shadow-ultra: 0 12px 40px rgba(10, 74, 142, 0.12);
    --logo-elegant: #1e88e5;
    --logo-elegant-dark: #0d47a1;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Prevenir scroll horizontal */
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevenir zoom en inputs en iOS */
    -webkit-text-size-adjust: 100%;
    /* Mejorar scroll en móvil */
    -webkit-overflow-scrolling: touch;
    /* Espacio para header fixed */
    padding-top: 62px;
    /* Prevenir scroll horizontal */
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 768px) {
    body {
        padding-top: 54px;
    }
}

/* Asegurar que los touch targets sean de al menos 44x44px (iOS guidelines) */
button, a, input, select, textarea {
    min-height: 44px;
    min-width: 44px;
}

/* Utilidades */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden; /* Prevenir scroll horizontal */
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255,160,0,0.5);
}

/* Header Fijo y Compacto */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    /* Mejorar interacción táctil */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

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

.btn-whatsapp {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.btn-whatsapp:hover {
    background: var(--success-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
    font-weight: 900;
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Hero Section - Above the Fold - Optimizado para móvil */
.hero {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(255,140,0,0.05) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(255,140,0,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(10,74,142,0.3) 0%, transparent 50%),
        linear-gradient(135deg, #1c5d9f 0%, #1c5d9f 50%, #1c5d9f 100%);
    background-size: 200% 200%, 100% 100%, 150% 150%, 150% 150%, 200% 200%;
    background-position: 0% 0%, 0% 0%, top right, bottom left, 0% 0%;
    animation: gradientShift 15s linear infinite;
    color: var(--white);
    padding: 32px 0 48px;
    overflow: hidden;
    /* FIX CLS: Definir altura mínima para evitar layout shift */
    min-height: 500px;
    /* Reservar espacio para el contenido */
    contain: layout;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes gradientShift {
    0%, 100% {
        opacity: 0.95;
    }
    50% {
        opacity: 1;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, 
            rgba(255,255,255,0.03) 0px, 
            transparent 1px, 
            transparent 80px, 
            rgba(255,255,255,0.03) 81px
        ),
        repeating-linear-gradient(0deg, 
            rgba(255,255,255,0.03) 0px, 
            transparent 1px, 
            transparent 80px, 
            rgba(255,255,255,0.03) 81px
        );
    pointer-events: none;
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,140,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: ctaGlowPulse 8s linear infinite;
    pointer-events: none;
}

/* ANIMACIÓN DE AGUA - BURBUJAS FLOTANTES REDONDEADAS */
.hero-water-effect::before,
.hero-water-effect::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

/* Burbuja grande azul */
.hero-water-effect::before {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), rgba(10,74,142,0.3) 40%, transparent 70%);
    top: -120px;
    left: 20%;
    animation: waterDrop1 8s ease-in-out infinite;
    box-shadow: 
        inset 0 -15px 30px rgba(255,255,255,0.25),
        0 10px 25px rgba(10,74,142,0.2);
    z-index: 1;
}

/* Burbuja mediana naranja */
.hero-water-effect::after {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.45), rgba(255,140,0,0.25) 40%, transparent 70%);
    top: -100px;
    right: 25%;
    animation: waterDrop2 10s ease-in-out 2s infinite;
    box-shadow: 
        inset 0 -12px 25px rgba(255,255,255,0.2),
        0 8px 20px rgba(255,140,0,0.15);
    z-index: 1;
}

/* Animación de caída de burbuja 1 - movimiento natural redondeado */
@keyframes waterDrop1 {
    0% {
        top: -120px;
        left: 20%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    5% {
        opacity: 0.8;
    }
    15% {
        top: 15%;
        left: 22%;
        transform: scale(1) rotate(15deg);
    }
    30% {
        top: 35%;
        left: 18%;
        transform: scale(1.1) rotate(-10deg);
    }
    50% {
        top: 55%;
        left: 24%;
        transform: scale(0.9) rotate(20deg);
    }
    70% {
        top: 75%;
        left: 20%;
        transform: scale(1.05) rotate(-5deg);
    }
    85% {
        top: 92%;
        left: 23%;
        opacity: 0.6;
        transform: scale(0.7) rotate(10deg);
    }
    100% {
        top: 110%;
        left: 25%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
}

/* Animación de caída de burbuja 2 - trayectoria diferente */
@keyframes waterDrop2 {
    0% {
        top: -100px;
        right: 25%;
        opacity: 0;
        transform: scale(0.4) rotate(0deg);
    }
    6% {
        opacity: 0.75;
    }
    18% {
        top: 18%;
        right: 22%;
        transform: scale(1) rotate(-12deg);
    }
    35% {
        top: 38%;
        right: 28%;
        transform: scale(1.08) rotate(18deg);
    }
    52% {
        top: 58%;
        right: 24%;
        transform: scale(0.92) rotate(-15deg);
    }
    72% {
        top: 78%;
        right: 26%;
        transform: scale(1.02) rotate(8deg);
    }
    88% {
        top: 95%;
        right: 23%;
        opacity: 0.65;
        transform: scale(0.65) rotate(-6deg);
    }
    100% {
        top: 112%;
        right: 25%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
}

@keyframes ctaGlowPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) translate(-30px, 30px);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    /* FIX CLS: Mejorar estabilidad del layout */
    contain: layout style paint;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-highlight {
    color: var(--accent);
    display: block;
    margin-top: 4px;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 24px;
}

.btn-hero {
    padding: 18px 32px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    font-weight: 900;
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.trust-item .icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* Benefits Bar - Premium Design */
.benefits {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255,160,0,0.3);
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
    );
    pointer-events: none;
}

.benefits::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    transition: var(--transition);
    cursor: default;
}

.benefit-item:hover {
    transform: scale(1.05);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
    position: relative;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
    opacity: 0;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.benefit-item:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-text {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ===================================
   BENEFITS MODERN - PREMIUM GLASSMORPHISM 2025
   =================================== */

.benefits-modern {
    position: relative;
    padding: 4rem 0;
    background: rgba(240, 248, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-top: 1px solid rgba(10, 74, 142, 0.15);
    border-bottom: 1px solid rgba(10, 74, 142, 0.15);
    box-shadow: 
        0 4px 30px rgba(10, 74, 142, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.benefits-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(10, 74, 142, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(90deg, 
            rgba(10, 74, 142, 0.02) 0px, 
            transparent 1px, 
            transparent 100px, 
            rgba(10, 74, 142, 0.02) 101px
        );
    pointer-events: none;
    animation: benefitsPatternShift 20s linear infinite;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes benefitsPatternShift {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.7;
    }
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.benefit-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(10, 74, 142, 0.12);
    box-shadow: 
        0 4px 20px rgba(10, 74, 142, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s linear;
    cursor: pointer;
    overflow: hidden;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s linear;
    animation: benefitGradientSlide 3s linear infinite;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes benefitGradientSlide {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.benefit-card-modern:hover::before {
    transform: scaleX(1);
}

.benefit-card-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 74, 142, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s linear;
}

.benefit-card-modern:hover::after {
    opacity: 1;
}

.benefit-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 16px 50px rgba(10, 74, 142, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(10, 74, 142, 0.25);
}

.benefit-icon-wrapper-modern {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(10, 74, 142, 0.12) 0%, rgba(255, 140, 0, 0.12) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s linear;
    box-shadow: 
        0 4px 15px rgba(10, 74, 142, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.benefit-card-modern:hover .benefit-icon-wrapper-modern {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 8px 25px rgba(10, 74, 142, 0.25),
        0 0 20px rgba(255, 140, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.benefit-icon-svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
    transition: all 0.5s linear;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(10, 74, 142, 0.2));
}

.benefit-card-modern:hover .benefit-icon-svg {
    color: white;
    transform: scale(1.15) rotate(-8deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.benefit-icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--accent), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s linear;
    filter: blur(15px);
    animation: iconGlowPulse 2s linear infinite;
}

@keyframes iconGlowPulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

.benefit-card-modern:hover .benefit-icon-glow {
    opacity: 0.5;
}

.benefit-content-modern {
    text-align: center;
    flex: 1;
}

.benefit-title-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.benefit-description-modern {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.benefit-badge-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    box-shadow: 
        0 2px 8px rgba(255, 140, 0, 0.3),
        0 4px 16px rgba(255, 140, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s linear;
    animation: badgePulse 2s linear infinite;
}

/* OPTIMIZADO: Solo transform para GPU acceleration, box-shadow estático */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.benefit-badge-modern svg {
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Trust indicators row */
.benefits-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: rgba(10, 74, 142, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(10, 74, 142, 0.12);
    box-shadow: 
        0 4px 15px rgba(10, 74, 142, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(10, 74, 142, 0.08);
    transition: all 0.3s linear;
}

.trust-indicator:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 74, 142, 0.1);
}

.trust-indicator svg {
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(255, 140, 0, 0.3));
    transition: transform 0.3s linear;
}

.trust-indicator:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.trust-indicator strong {
    color: var(--primary);
    font-weight: 800;
}

/* Stagger animation on scroll */
.benefit-card-modern {
    opacity: 0;
    transform: translateY(30px);
    animation: none;
}

.benefit-card-modern[data-benefit="1"] {
    animation: fadeInUp 0.6s linear 0.1s forwards;
}

.benefit-card-modern[data-benefit="2"] {
    animation: fadeInUp 0.6s linear 0.2s forwards;
}

.benefit-card-modern[data-benefit="3"] {
    animation: fadeInUp 0.6s linear 0.3s forwards;
}

.benefit-card-modern[data-benefit="4"] {
    animation: fadeInUp 0.6s linear 0.4s forwards;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-modern {
        padding: 3rem 0;
    }
    
    .benefits-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .benefit-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon-wrapper-modern {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon-svg {
        width: 30px;
        height: 30px;
    }
    
    .benefit-title-modern {
        font-size: 0.95rem;
    }
    
    .benefit-description-modern {
        font-size: 0.8rem;
    }
    
    .benefits-trust-row {
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .trust-indicator {
        font-size: 0.8rem;
    }
}

/* ===================================
   PROBLEMS MODERN - PREMIUM 2025
   =================================== */

.problems-modern {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
    overflow: hidden;
}

.problems-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(10, 74, 142, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(10, 74, 142, 0.08), rgba(255, 140, 0, 0.08));
    border: 1px solid rgba(10, 74, 142, 0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header-modern h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-header-modern p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.problems-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.problem-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(10, 74, 142, 0.08);
    box-shadow: 
        0 4px 24px rgba(10, 74, 142, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.6);
    transition: all 0.4s linear;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

/* Stagger animations */
.problem-card-modern[data-problem="1"] {
    animation: problemFadeIn 0.6s linear 0.1s forwards;
}

.problem-card-modern[data-problem="2"] {
    animation: problemFadeIn 0.6s linear 0.2s forwards;
}

.problem-card-modern[data-problem="3"] {
    animation: problemFadeIn 0.6s linear 0.3s forwards;
}

.problem-card-modern[data-problem="4"] {
    animation: problemFadeIn 0.6s linear 0.4s forwards;
}

.problem-card-modern[data-problem="5"] {
    animation: problemFadeIn 0.6s linear 0.5s forwards;
}

.problem-card-modern[data-problem="6"] {
    animation: problemFadeIn 0.6s linear 0.6s forwards;
}

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

.problem-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s linear;
}

.problem-card-modern:hover::before {
    transform: scaleX(1);
}

.problem-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(10, 74, 142, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    border-color: rgba(10, 74, 142, 0.15);
}

/* Severity tags */
.problem-severity {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.urgent-tag {
    background: linear-gradient(135deg, #ffa000, #ff8c00);
    color: white;
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
}

.danger-tag {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
    animation: dangerPulse 2s linear infinite;
}

/* OPTIMIZADO: Solo transform para GPU acceleration, box-shadow estático */
@keyframes dangerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.info-tag {
    background: linear-gradient(135deg, rgba(10, 74, 142, 0.12), rgba(10, 74, 142, 0.08));
    color: var(--primary);
    border: 1px solid rgba(10, 74, 142, 0.2);
}

/* Icon styling */
.problem-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 74, 142, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-radius: 20px;
    transition: all 0.4s linear;
}

.problem-card-modern:hover .icon-background {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 24px rgba(10, 74, 142, 0.25);
}

.problem-icon-modern svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: all 0.4s linear;
}

.problem-card-modern:hover .problem-icon-modern svg {
    color: white;
    transform: scale(1.15);
}

/* Content styling */
.problem-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.problem-content-modern p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Feature list */
.problem-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(10, 74, 142, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Modern buttons */
.btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s linear;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s linear;
}

.btn-modern:hover::before {
    opacity: 1;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary), #1c5d9f);
    color: white;
    box-shadow: 0 4px 16px rgba(10, 74, 142, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 74, 142, 0.4);
}

.btn-urgent-modern {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
    animation: urgentPulse 2s linear infinite;
}

/* OPTIMIZADO: Solo opacity para GPU acceleration, box-shadow estático */
@keyframes urgentPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.btn-urgent-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.5);
}

.btn-modern svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .problems-modern {
        padding: 3rem 0;
    }
    
    .section-header-modern {
        margin-bottom: 2rem;
    }
    
    .problems-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card-modern {
        padding: 1.5rem;
    }
    
    .problem-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .problem-icon-modern svg {
        width: 35px;
        height: 35px;
    }
    
    .problem-content-modern h3 {
        font-size: 1.3rem;
    }
    
    .problem-severity {
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .section-header-modern p {
        font-size: 1rem;
    }
    
    .problem-features {
        padding: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
}

/* ===================================
   PROBLEMS ENHANCED - ADDITIONAL FEATURES
   =================================== */

/* Floating particles decoration */
.problems-floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--accent), transparent);
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle 20s infinite linear;
}

.particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 20s;
    background: radial-gradient(circle, var(--primary), transparent);
}

.particle-4 {
    top: 60%;
    right: 30%;
    animation-delay: 9s;
    animation-duration: 24s;
}

.particle-5 {
    bottom: 35%;
    right: 10%;
    animation-delay: 12s;
    animation-duration: 19s;
    background: radial-gradient(circle, var(--accent), transparent);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.25;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.1;
    }
    75% {
        transform: translate(-40px, -30px) scale(1.1);
        opacity: 0.2;
    }
}

/* Section stats bar */
.section-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50px;
    border: 1px solid rgba(10, 74, 142, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a4a8e !important;
    line-height: 1;
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-label {
    font-size: 0.8rem;
    color: #1a1a1a !important;
    font-weight: 600;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

.section-tag svg {
    margin-right: 0.25rem;
    vertical-align: middle;
}

/* Time badge on cards */
.problem-time-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    background: rgba(10, 74, 142, 0.08);
    border: 1px solid rgba(10, 74, 142, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    transition: all 0.3s linear;
}

.problem-card-modern:hover .problem-time-badge {
    background: rgba(10, 74, 142, 0.12);
    border-color: rgba(10, 74, 142, 0.25);
    transform: translateY(-2px);
}

.problem-time-badge.urgent-badge {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
    position: relative; /* Para pseudo-elemento */
}

/* OPTIMIZADO: Pseudo-elemento para efecto de pulso (GPU accelerated) */
.problem-time-badge.urgent-badge::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.3), transparent 70%);
    z-index: -1;
    animation: urgentPulseGlow 2s linear infinite;
    pointer-events: none;
}

@keyframes urgentPulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.problem-time-badge svg {
    width: 14px;
    height: 14px;
}

/* Icon pulse effect */
.icon-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 20px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    opacity: 0;
    animation: iconPulse 3s linear infinite;
}

.problem-card-modern:hover .icon-pulse {
    animation-play-state: paused;
    opacity: 0.2;
}

.icon-pulse.danger-pulse {
    background: radial-gradient(circle, #ef4444, transparent 70%);
    animation: iconPulseDanger 2s linear infinite;
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.15);
    }
}

@keyframes iconPulseDanger {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Problem meta information */
.problem-meta {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(10, 74, 142, 0.04), rgba(255, 140, 0, 0.04));
    border-radius: 12px;
    border: 1px solid rgba(10, 74, 142, 0.08);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.meta-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Enhanced responsive */
@media (max-width: 768px) {
    .section-stats {
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
        color: #0a4a8e !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .stat-label {
        font-size: 0.7rem;
        color: #1a1a1a !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .stat-divider {
        height: 25px;
    }
    
    .problem-time-badge {
        bottom: 1rem;
        left: 1rem;
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }
    
    .problem-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .meta-item {
        font-size: 0.7rem;
    }
    
    .particle {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .section-stats {
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    
    .stat-item {
        gap: 0.15rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
        color: #0a4a8e !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .stat-label {
        font-size: 0.65rem;
        color: #1a1a1a !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .section-tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.9rem;
    }
    
    .section-tag svg {
        width: 12px;
        height: 12px;
    }
}

/* ===================================
   PREMIUM ULTRA ENHANCEMENTS - 2025
   =================================== */

/* Geometric decorative shapes */
.problems-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    opacity: 0.4;
}

.shape {
    position: absolute;
    animation: shapeFloat 25s infinite linear;
}

.shape-circle-1 {
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    top: 15%;
    left: 5%;
    opacity: 0.08;
    animation-delay: 0s;
}

.shape-square-1 {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent);
    top: 60%;
    right: 8%;
    opacity: 0.08;
    transform: rotate(45deg);
    animation-delay: 5s;
}

.shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 90px solid var(--primary);
    opacity: 0.06;
    bottom: 25%;
    left: 15%;
    animation-delay: 10s;
}

/* CSS INNECESARIO ELIMINADO: .shape-circle-2, .shape-square-1, .shape-line-1 */

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, -40px) rotate(180deg);
    }
    75% {
        transform: translate(-25px, -15px) rotate(270deg);
    }
}

/* Premium tag with shimmer effect */
.premium-tag {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(10, 74, 142, 0.12) 0%, 
        rgba(255, 140, 0, 0.12) 50%,
        rgba(10, 74, 142, 0.12) 100%
    );
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado (instancia 2) */
@keyframes gradientShift {
    0%, 100% {
        opacity: 0.95;
    }
    50% {
        opacity: 1;
    }
}

/* Pseudo-element glow/shimmer for premium-tag */
.premium-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 140, 0, 0.3), transparent 70%);
    opacity: 0;
    animation: glowPulse 4s linear infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.premium-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textGradient 5s linear infinite;
}

.gradient-text .title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes textGradient {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

.subtitle-enhanced {
    position: relative;
    padding-bottom: 0.5rem;
}

.subtitle-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
}

/* Premium card enhancements */
.premium-card {
    position: relative;
}

/* Card shine effect on hover */
.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s linear;
    pointer-events: none;
}

.premium-card:hover .card-shine {
    opacity: 1;
    animation: cardShine 1.5s linear;
}

@keyframes cardShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Animated border glow */
.card-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 300% 300%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s linear;
    animation: borderGlow 3s linear infinite;
}

.premium-card:hover .card-border-glow {
    opacity: 0.6;
}

.danger-card .card-border-glow.danger-glow {
    background: linear-gradient(135deg, #ef4444, #dc2626, #ef4444);
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Corner decorations */
.card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: all 0.4s linear;
}

.premium-card:hover .card-corner {
    opacity: 1;
}

.card-corner-tl {
    top: 10px;
    left: 10px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    border-radius: 4px 0 0 0;
}

.card-corner-br {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-radius: 0 0 4px 0;
}

.danger-card .card-corner-tl,
.danger-card .card-corner-br {
    border-color: #ef4444;
}

/* Icon concentric rings effect */
.icon-rings {
    position: absolute;
    inset: -10px;
    border-radius: 20px;
    border: 2px solid var(--accent);
    opacity: 0;
    animation: ringsPulse 3s linear infinite;
}

.icon-rings.danger-rings {
    border-color: #ef4444;
}

@keyframes ringsPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Enhanced stat items with animations */
.stat-item {
    animation: statFadeIn 0.6s linear backwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(5) {
    animation-delay: 0.6s;
}

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

.stat-value {
    position: relative;
    display: inline-block;
}

.stat-value::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.6s linear;
}

.section-stats:hover .stat-value::after {
    transform: scaleX(1);
}

/* Button enhanced effects */
.btn-modern {
    position: relative;
    overflow: visible;
}

.btn-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: inherit;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s linear;
    z-index: -1;
}

.btn-modern:hover::after {
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shape {
        display: none;
    }
    
    .card-corner {
        width: 15px;
        height: 15px;
    }
    
    .gradient-text {
        background-size: 100% auto;
        animation: none;
    }
}

@media (max-width: 480px) {
    .premium-tag::before,
    .premium-tag::after {
        display: none;
    }
    
    .card-shine,
    .card-border-glow {
        display: none;
    }
}

/* ============================================
   HERO SECTION - ULTRA PREMIUM 2025
   ============================================ */

/* Formas geométricas decorativas del hero */
.hero-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    opacity: 0.08;
    animation: heroShapeFloat 20s linear infinite;
}

@keyframes heroShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-10px, -40px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(-30px, -20px) rotate(270deg) scale(1.05);
    }
}

.hero-shape-circle-1 {
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.hero-shape-square-1 {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 160, 0, 0.3);
    transform: rotate(45deg);
    top: 60%;
    right: 8%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.hero-shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(255, 255, 255, 0.2);
    top: 70%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.hero-shape-circle-2 {
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(255, 160, 0, 0.4);
    border-radius: 50%;
    top: 40%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.hero-shape-line-1 {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    top: 80%;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    animation-delay: 3s;
    animation-duration: 24s;
}

.hero-shape-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    top: 20%;
    right: 20%;
    animation-delay: 5s;
    animation-duration: 30s;
}

/* Badge ultra-premium con efectos avanzados */
.hero-badge-ultra {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: badgeFloat 4s linear infinite;
    /* FIX CLS: Dimensiones fijas para evitar layout shift */
    min-height: 40px;
    line-height: 1.4;
    /* FIX Render Delay: Forzar capa GPU para renderizado inmediato */
    transform: translateZ(0);
    will-change: transform;
    /* Contenedor aislado para evitar recálculos de layout */
    contain: layout style paint;
}

/* Pseudo-element for badge glow ring */
.hero-badge-ultra::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 160, 0, 0.6), rgba(255, 255, 255, 0.6));
    animation: badgeRingPulse 3s linear infinite;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

@keyframes badgeRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* FIX LCP Render Delay: Optimizar elemento de texto (LCP) */
.hero-badge-ultra > span:not([class]) {
    display: inline-block;
    transform: translateZ(0);
    /* Forzar renderizado temprano */
    content-visibility: auto;
}

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

.badge-shimmer {
    position: absolute;
    top: 0;
    left: 0; /* OPTIMIZADO: posición fija, animación usa transform */
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShimmer 3s linear infinite;
    will-change: transform; /* GPU acceleration hint */
}

/* OPTIMIZADO: Solo transform para GPU acceleration */
@keyframes badgeShimmer {
    0% {
        transform: translateX(-100%);
    }
    50%, 100% {
        transform: translateX(100%);
    }
}

/* Título con efectos ultra-premium */
.hero-title-ultra {
    position: relative;
    z-index: 1;
    /* FIX CLS: Line-height fijo para evitar shifts al cargar fuentes */
    line-height: 1.2;
    /* Reservar espacio vertical */
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(255, 160, 0, 0.15), transparent 70%);
    filter: blur(30px);
    z-index: -1;
    animation: titleGlowPulse 4s linear infinite;
}

@keyframes titleGlowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #fff5e6 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTextGradient 5s linear infinite;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes heroTextGradient {
    0%, 100% {
        opacity: 0.95;
    }
    50% {
        opacity: 1;
    }
}

.hero-highlight-ultra {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffa000 0%, #ffb300 50%, #ff8c00 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: highlightShift 4s linear infinite;
    text-shadow: none;
}

.hero-highlight-ultra::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffa000, transparent);
    animation: highlightUnderline 2s linear infinite;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes highlightShift {
    0%, 100% {
        opacity: 0.95;
    }
    50% {
        opacity: 1;
    }
}

@keyframes highlightUnderline {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Pills con efectos mejorados */
.hero-lead-ultra .hero-feature-pill {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s linear;
}

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

.hero-lead-ultra .hero-feature-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-lead-ultra .hero-feature-pill:hover::before {
    left: 100%;
}

/* Botones ultra-premium con efectos neón */
.btn-hero-ultra {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #25d366 0%, #20bd5f 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s linear;
}

.btn-hero-ultra:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.5),
                0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 40px rgba(37, 211, 102, 0.6);
}

.btn-glow-ultra {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.8), rgba(32, 189, 95, 0.8));
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s linear;
    z-index: -1;
}

.btn-hero-ultra:hover .btn-glow-ultra {
    opacity: 1;
}

.btn-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.btn-particles::before,
.btn-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
}

.btn-hero-ultra:hover .btn-particles::before {
    animation: particle1 1.5s linear;
}

.btn-hero-ultra:hover .btn-particles::after {
    animation: particle2 1.5s linear 0.2s;
}

@keyframes particle1 {
    0% {
        opacity: 1;
        transform: translate(50%, 50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(-30px, -50px) scale(1.5);
    }
}

@keyframes particle2 {
    0% {
        opacity: 1;
        transform: translate(50%, 50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(70px, -40px) scale(1.5);
    }
}

.btn-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.6),
        rgba(37, 211, 102, 0.6),
        rgba(255, 255, 255, 0.6)
    );
    background-size: 300% 300%;
    animation: borderGlowMove 4s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s linear;
}

.btn-hero-ultra:hover .btn-border-glow {
    opacity: 1;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes borderGlowMove {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Botón secundario ultra */
.btn-hero-ultra-secondary {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s linear;
}

.btn-hero-ultra-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 40px rgba(255, 255, 255, 0.3);
}

.btn-glow-secondary {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s linear;
    z-index: -1;
}

.btn-hero-ultra-secondary:hover .btn-glow-secondary {
    opacity: 1;
}

.btn-border-glow-secondary {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 160, 0, 0.4),
        rgba(255, 255, 255, 0.4)
    );
    background-size: 300% 300%;
    animation: borderGlowMove 4s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s linear;
}

.btn-hero-ultra-secondary:hover .btn-border-glow-secondary {
    opacity: 1;
}

/* Trust badges ultra-premium */
.hero-trust-ultra .trust-item-ultra {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s linear;
    overflow: hidden;
}

/* Pseudo-element for trust glow effect */
.trust-item-ultra::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255, 160, 0, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s linear;
    filter: blur(20px);
}

.trust-item-ultra:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.trust-item-ultra:hover::before {
    opacity: 1;
}

.trust-icon-rings {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    pointer-events: none;
}

.trust-icon-rings::before,
.trust-icon-rings::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 160, 0, 0.4);
    border-radius: 50%;
    animation: trustRingExpand 2s linear infinite;
}

.trust-icon-rings::after {
    animation-delay: 1s;
}

@keyframes trustRingExpand {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Responsive para hero ultra-premium */
@media (max-width: 768px) {
    .hero-geometric-shapes {
        display: none;
    }
    
    .hero-shape {
        display: none;
    }
    
    .title-glow {
        display: none;
    }
    
    .btn-particles {
        display: none;
    }
    
    .trust-icon-rings {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-badge-ultra::before,
    .badge-shimmer,
    .btn-glow-ultra,
    .btn-border-glow,
    .btn-glow-secondary,
    .btn-border-glow-secondary,
    .trust-item-ultra::before {
        display: none;
    }
    
    .hero-gradient-text,
    .hero-highlight-ultra {
        -webkit-text-fill-color: white;
        background: none;
    }
}

/* ============================================
   HERO ENHANCEMENTS - PARTÍCULAS Y LUZ
   ============================================ */

/* Partículas flotantes de fondo */
.hero-particles-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: heroParticleFloat 15s infinite linear;
}

.hero-particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.hero-particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 20%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.hero-particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 30%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.hero-particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 30%;
    right: 25%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.hero-particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 50%;
    right: 15%;
    animation-duration: 16s;
    animation-delay: 3s;
}

.hero-particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 70%;
    right: 30%;
    animation-duration: 13s;
    animation-delay: 5s;
}

.hero-particle:nth-child(7) {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 40%;
    animation-duration: 17s;
    animation-delay: 2.5s;
}

.hero-particle:nth-child(8) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 50%;
    animation-duration: 14s;
    animation-delay: 4.5s;
}

.hero-particle:nth-child(9) {
    width: 4px;
    height: 4px;
    top: 25%;
    right: 40%;
    animation-duration: 15s;
    animation-delay: 1.5s;
}

.hero-particle:nth-child(10) {
    width: 6px;
    height: 6px;
    top: 55%;
    left: 60%;
    animation-duration: 16s;
    animation-delay: 3.5s;
}

@keyframes heroParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -70px) scale(1.1);
        opacity: 0.7;
    }
}

/* Rayos de luz volumétricos */
.hero-light-rays {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.6) 70%,
        transparent 100%
    );
    filter: blur(4px);
    transform-origin: top center;
}

.light-ray-1 {
    left: 20%;
    animation: lightRayAnimation 8s linear infinite;
    animation-delay: 0s;
}

.light-ray-2 {
    left: 50%;
    animation: lightRayAnimation 10s linear infinite;
    animation-delay: 2s;
}

.light-ray-3 {
    left: 75%;
    animation: lightRayAnimation 12s linear infinite;
    animation-delay: 4s;
}

@keyframes lightRayAnimation {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1) translateX(0);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(1.2) translateX(20px);
    }
}

/* Iconos con pulso en pills */
.hero-lead-ultra .hero-feature-pill .pill-icon {
    animation: iconPulse 2s linear infinite;
}

.hero-feature-pill:nth-child(1) .pill-icon {
    animation-delay: 0s;
}

.hero-feature-pill:nth-child(2) .pill-icon {
    animation-delay: 0.3s;
}

.hero-feature-pill:nth-child(3) .pill-icon {
    animation-delay: 0.6s;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* Barra de estadísticas animadas */
.hero-stats-bar {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 48px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: statsBarFadeIn 1s linear 0.8s backwards;
}

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

.hero-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: statsBarShimmer 3s linear infinite;
}

@keyframes statsBarShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    animation: statItemFadeIn 0.6s linear backwards;
}

.hero-stat-item:nth-child(1) {
    animation-delay: 1s;
}

.hero-stat-item:nth-child(2) {
    animation-delay: 1.2s;
}

.hero-stat-item:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes statItemFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 160, 0, 0.2);
    border-radius: 12px;
    border: 2px solid rgba(255, 160, 0, 0.4);
    position: relative;
    animation: statIconGlow 3s linear infinite;
}

.stat-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #ffa000;
    filter: drop-shadow(0 0 8px rgba(255, 160, 0, 0.6));
}

@keyframes statIconGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 160, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 160, 0, 0.6);
        transform: scale(1.05);
    }
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    font-family: 'Segoe UI', system-ui, sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    margin-left: 2px;
    opacity: 0.8;
}

.hero-stat-item:nth-child(2) .stat-number::after {
    content: '%';
    margin-left: 0;
}

.hero-stat-item:nth-child(3) .stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Efecto de morphing en el fondo del hero */
.hero {
    background: linear-gradient(135deg, 
        var(--primary) 0%, 
        #1c5d9f 25%,
        var(--primary) 50%,
        #1c5d9f 75%,
        var(--primary) 100%
    );
    background-size: 400% 400%;
    /* OPTIMIZADO: Eliminada animación de background-position para rendimiento */
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes heroMorphGradient {
    0%, 100% {
        opacity: 0.95;
    }
    50% {
        opacity: 1;
    }
}

/* Efecto de cursor parpadeante en título */
.hero-title-line::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1em;
    background: rgba(255, 255, 255, 0.8);
    margin-left: 8px;
    animation: cursorBlink 1.2s step-end infinite;
    vertical-align: middle;
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Animación de números contador con JavaScript */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para nuevas características */
@media (max-width: 768px) {
    .hero-particles-bg,
    .hero-light-rays {
        display: none;
    }
    
    .hero-stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px 16px;
    }
    
    .hero-stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-title-line::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats-bar {
        margin-top: 32px;
        padding: 16px 12px;
    }
    
    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin: 0 auto;
    max-width: 800px;
}

/* Problems Section */
.problems {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.problems::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10,74,142,0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    animation: fadeInUp 0.8s linear;
}

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

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
    margin-top: 24px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s linear;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 74, 142, 0.15);
    border-color: rgba(10, 74, 142, 0.1);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.problem-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

/* Problem card tags */
.problem-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(255,160,0,0.3);
    animation: tagPulse 2s linear infinite;
}

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

.problem-tag.urgent {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.problem-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 16px rgba(10, 74, 142, 0.2);
    transition: var(--transition);
}

.problem-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

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

.problem-card:hover .problem-icon-wrapper::after {
    opacity: 1;
    inset: -4px;
}

.problem-icon-wrapper svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* CTA Section - Final Premium */
/* ==========================================
   CTA FINAL ULTRA-PREMIUM 2025
   ========================================== */

.cta-ultra {
    background: 
        linear-gradient(135deg, rgba(255,140,0,0.05) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(255,140,0,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(10,74,142,0.3) 0%, transparent 50%),
        linear-gradient(135deg, #1c5d9f 0%, #1c5d9f 50%, #1c5d9f 100%);
    background-size: 200% 200%, 100% 100%, 150% 150%, 150% 150%, 200% 200%;
    background-position: 0% 0%, 0% 0%, top right, bottom left, 0% 0%;
    animation: gradientShift 15s linear infinite;
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* BURBUJAS DE AGUA CAYENDO EN CTA */
.cta-ultra::before,
.cta-ultra::after {
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}

/* Burbuja grande azul en CTA */
.cta-ultra::before {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), rgba(10,74,142,0.18) 40%, transparent 70%);
    top: -140px;
    left: 15%;
    animation: ctaWaterDrop1 9s ease-in-out infinite;
    box-shadow: 
        inset 0 -18px 35px rgba(255,255,255,0.18),
        0 8px 25px rgba(10,74,142,0.12);
}

/* Burbuja mediana naranja en CTA */
.cta-ultra::after {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.32), rgba(255,140,0,0.16) 40%, transparent 70%);
    top: -110px;
    right: 20%;
    animation: ctaWaterDrop2 11s ease-in-out 3s infinite;
    box-shadow: 
        inset 0 -14px 28px rgba(255,255,255,0.14),
        0 7px 22px rgba(255,140,0,0.10);
}

/* Animación de caída para CTA burbuja 1 */
@keyframes ctaWaterDrop1 {
    0% {
        top: -140px;
        left: 15%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
    5% {
        opacity: 0.65;
    }
    18% {
        top: 18%;
        left: 17%;
        transform: scale(1) rotate(18deg);
    }
    35% {
        top: 38%;
        left: 13%;
        transform: scale(1.08) rotate(-12deg);
    }
    52% {
        top: 58%;
        left: 19%;
        transform: scale(0.92) rotate(22deg);
    }
    72% {
        top: 78%;
        left: 15%;
        transform: scale(1.04) rotate(-8deg);
    }
    88% {
        top: 95%;
        left: 18%;
        opacity: 0.45;
        transform: scale(0.68) rotate(12deg);
    }
    100% {
        top: 112%;
        left: 20%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
}

/* Animación de caída para CTA burbuja 2 */
@keyframes ctaWaterDrop2 {
    0% {
        top: -110px;
        right: 20%;
        opacity: 0;
        transform: scale(0.35) rotate(0deg);
    }
    6% {
        opacity: 0.6;
    }
    20% {
        top: 20%;
        right: 18%;
        transform: scale(1) rotate(-15deg);
    }
    38% {
        top: 40%;
        right: 24%;
        transform: scale(1.06) rotate(20deg);
    }
    55% {
        top: 60%;
        right: 19%;
        transform: scale(0.94) rotate(-16deg);
    }
    75% {
        top: 80%;
        right: 22%;
        transform: scale(1.02) rotate(10deg);
    }
    90% {
        top: 97%;
        right: 18%;
        opacity: 0.42;
        transform: scale(0.64) rotate(-7deg);
    }
    100% {
        top: 114%;
        right: 20%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
}

.cta-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, 
            rgba(255,255,255,0.03) 0px, 
            transparent 1px, 
            transparent 80px, 
            rgba(255,255,255,0.03) 81px
        ),
        repeating-linear-gradient(0deg, 
            rgba(255,255,255,0.03) 0px, 
            transparent 1px, 
            transparent 80px, 
            rgba(255,255,255,0.03) 81px
        );
    pointer-events: none;
    opacity: 0.5;
}

.cta-ultra::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,140,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: ctaGlowPulse 8s linear infinite;
    pointer-events: none;
}

@keyframes ctaGlowPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) translate(-30px, 30px);
        opacity: 0.5;
    }
}

/* Background decorativo */
.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: ctaShapeFloat 20s linear infinite;
}

.cta-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,140,0,0.2), transparent 70%);
    top: -300px;
    left: -200px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    bottom: -250px;
    right: -150px;
    animation-delay: 3s;
    animation-duration: 18s;
}

.cta-shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,140,0,0.15), transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.cta-shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    bottom: 20%;
    left: 15%;
    animation-delay: 9s;
    animation-duration: 24s;
}

.cta-shape-5 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255,140,0,0.12), transparent 70%);
    top: 15%;
    left: 50%;
    animation-delay: 12s;
    animation-duration: 26s;
}

@keyframes ctaShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

/* Partículas flotantes */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cta-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,140,0,0.4));
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
    animation: ctaParticleFloat 15s linear infinite;
}

.cta-particle.particle-1 {
    left: 15%;
    top: 25%;
    animation-delay: 0s;
}

.cta-particle.particle-2 {
    right: 20%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.cta-particle.particle-3 {
    left: 30%;
    bottom: 30%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.cta-particle.particle-4 {
    right: 10%;
    bottom: 25%;
    animation-delay: 9s;
    animation-duration: 17s;
}

.cta-particle.particle-5 {
    left: 45%;
    top: 15%;
    animation-delay: 12s;
    animation-duration: 19s;
}

.cta-particle.particle-6 {
    right: 35%;
    bottom: 40%;
    animation-delay: 15s;
    animation-duration: 21s;
}

/* Líneas decorativas diagonales */
.cta-diagonal-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.diagonal-line {
    position: absolute;
    width: 2px;
    height: 120%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,140,0,0.15) 20%,
        rgba(255,140,0,0.25) 50%,
        rgba(255,140,0,0.15) 80%,
        transparent 100%
    );
    transform-origin: top center;
    opacity: 0.6;
    animation: diagonalShimmer 8s linear infinite;
}

.diagonal-line.line-1 {
    left: 20%;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.diagonal-line.line-2 {
    left: 50%;
    transform: rotate(-20deg);
    animation-delay: 2.5s;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255,255,255,0.1) 20%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0.1) 80%,
        transparent 100%
    );
}

.diagonal-line.line-3 {
    right: 15%;
    transform: rotate(30deg);
    animation-delay: 5s;
}

@keyframes diagonalShimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-10%) rotate(var(--rotate, 25deg));
    }
    50% {
        opacity: 0.8;
        transform: translateY(10%) rotate(var(--rotate, 25deg));
    }
}

@keyframes ctaParticleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) scale(1.4);
        opacity: 1;
    }
    80% {
        opacity: 0.6;
    }
}

/* Content Container */
.cta-content-ultra {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Badge */
.cta-badge-ultra {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px) saturate(180%);
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.25);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    margin-bottom: 24px;
}

.badge-glow-ultra {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,140,0,0.3) 0%, transparent 70%);
    animation: pulseGlow 2s linear infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.badge-shimmer-ultra {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.3) 50%,
        transparent 100%
    );
    transform: rotate(30deg);
    animation: shimmerSweep 3s linear infinite;
}

.cta-badge-ultra svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Title */
.cta-title-ultra {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-highlight {
    font-weight: 700;
    font-size: 0.75em;
    opacity: 0.9;
}

.title-main {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.9) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* CTA Description */
.cta-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0 auto 32px;
    max-width: 700px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Features */
.cta-features-ultra {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item-ultra {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
}

.feature-item-ultra svg {
    fill: var(--accent);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255,140,0,0.4));
}

/* Buttons */
.cta-buttons-ultra {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary CTA Button - Optimizado */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(255, 160, 0, 0.3),
        0 16px 48px rgba(255, 160, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: var(--blur-light);
}

.btn-cta-primary .btn-glow-ultra {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s linear;
}

.btn-cta-primary:hover .btn-glow-ultra {
    opacity: 1;
}

.btn-cta-primary .btn-shine-ultra {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.5) 50%,
        transparent 100%
    );
    transition: left 0.8s linear;
}

.btn-cta-primary:hover .btn-shine-ultra {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(255,140,0,0.5),
        0 20px 60px rgba(255,140,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-cta-primary .icon {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

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

/* Secondary CTA Button - Cohesivo */
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 20px 40px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-light) saturate(160%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    border: 2px solid var(--glass-border-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        var(--shadow-soft),
        inset 0 1px 0 var(--glass-border-light);
}

.btn-cta-secondary:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        var(--shadow-premium),
        inset 0 1px 0 var(--glass-border-light);
}

.btn-cta-secondary .icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Responsive Tablet */
@media (max-width: 1024px) {
    .cta-ultra {
        padding: 100px 0;
    }

    .cta-title-ultra {
        font-size: clamp(2rem, 5.5vw, 3rem);
    }

    .cta-features-ultra {
        gap: 24px;
    }

    .feature-item-ultra {
        font-size: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 18px 32px;
        font-size: 1.05rem;
    }

    .cta-shape-1 {
        width: 500px;
        height: 500px;
    }

    .cta-shape-2 {
        width: 400px;
        height: 400px;
    }

    .cta-shape-3 {
        width: 350px;
        height: 350px;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .cta-ultra {
        padding: 80px 0;
    }

    .cta-badge-ultra {
        font-size: 0.85rem;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .cta-title-ultra {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 24px;
    }

    .cta-features-ultra {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .feature-item-ultra {
        font-size: 0.95rem;
    }

    .cta-buttons-ultra {
        flex-direction: column;
        gap: 16px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 400px;
        padding: 18px 32px;
        font-size: 1rem;
        justify-content: center !important;
        align-items: center;
        text-align: center;
    }
    
    .btn-cta-primary .icon,
    .btn-cta-secondary .icon {
        margin: 0;
        display: flex;
        align-self: center;
    }
    
    .btn-cta-primary .btn-text,
    .btn-cta-secondary .btn-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cta-shape-1,
    .cta-shape-2,
    .cta-shape-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .cta-ultra {
        padding: 60px 0;
    }

    .cta-title-ultra {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 28px;
        font-size: 0.95rem;
        gap: 6px;
        text-align: center;
        justify-content: center !important;
        align-items: center;
    }

    .btn-cta-primary .icon,
    .btn-cta-secondary .icon {
        width: 20px;
        height: 20px;
        display: flex;
        align-self: center;
    }
    
    .btn-cta-primary .btn-text,
    .btn-cta-secondary .btn-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Footer - Modern Design con Hero Gradient Background */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s linear infinite;
    color: var(--white);
    padding: 70px 0 24px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

/* BURBUJAS DE AGUA CAYENDO EN FOOTER */
/* Rayo de luz diagonal que atraviesa el footer - AHORA BURBUJA BLANCA */
.footer::before {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.38), rgba(255,255,255,0.16) 40%, transparent 70%);
    top: -130px;
    left: 25%;
    border-radius: 50%;
    animation: footerWaterDrop1 10s ease-in-out 1s infinite;
    box-shadow: 
        inset 0 -16px 32px rgba(255,255,255,0.16),
        0 8px 24px rgba(255,255,255,0.10);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}

/* Burbuja azul clara en Footer */
.footer::after {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.32), rgba(135,206,250,0.14) 40%, transparent 70%);
    top: -100px;
    right: 30%;
    border-radius: 50%;
    animation: footerWaterDrop2 12s ease-in-out 4s infinite;
    box-shadow: 
        inset 0 -12px 26px rgba(255,255,255,0.12),
        0 6px 20px rgba(135,206,250,0.08);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}

/* Animación de caída para Footer burbuja 1 (blanca) */
@keyframes footerWaterDrop1 {
    0% {
        top: -130px;
        left: 25%;
        opacity: 0;
        transform: scale(0.32) rotate(0deg);
    }
    5% {
        opacity: 0.7;
    }
    16% {
        top: 16%;
        left: 27%;
        transform: scale(1) rotate(16deg);
    }
    33% {
        top: 36%;
        left: 23%;
        transform: scale(1.1) rotate(-14deg);
    }
    50% {
        top: 56%;
        left: 29%;
        transform: scale(0.88) rotate(24deg);
    }
    70% {
        top: 76%;
        left: 25%;
        transform: scale(1.06) rotate(-10deg);
    }
    86% {
        top: 93%;
        left: 28%;
        opacity: 0.48;
        transform: scale(0.7) rotate(14deg);
    }
    100% {
        top: 110%;
        left: 30%;
        opacity: 0;
        transform: scale(0.32) rotate(0deg);
    }
}

/* Animación de caída para Footer burbuja 2 (azul clara) */
@keyframes footerWaterDrop2 {
    0% {
        top: -100px;
        right: 30%;
        opacity: 0;
        transform: scale(0.36) rotate(0deg);
    }
    6% {
        opacity: 0.65;
    }
    19% {
        top: 19%;
        right: 28%;
        transform: scale(1) rotate(-17deg);
    }
    36% {
        top: 39%;
        right: 34%;
        transform: scale(1.08) rotate(21deg);
    }
    53% {
        top: 59%;
        right: 29%;
        transform: scale(0.90) rotate(-18deg);
    }
    73% {
        top: 79%;
        right: 32%;
        transform: scale(1.04) rotate(11deg);
    }
    89% {
        top: 96%;
        right: 28%;
        opacity: 0.44;
        transform: scale(0.66) rotate(-8deg);
    }
    100% {
        top: 113%;
        right: 30%;
        opacity: 0;
        transform: scale(0.32) rotate(0deg);
    }
}

/* ===================================
   FOOTER ANIMATED BACKGROUND ULTRA-PREMIUM
   =================================== */

.footer-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Efecto de brillo sutil en el fondo */
.footer-animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%
    );
    animation: breatheGlow 8s linear infinite;
    z-index: 1;
}

@keyframes breatheGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Ondas animadas fluidas */
.footer-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.08;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3), transparent 50%);
    border-radius: 40%;
    animation: waveFloat 20s linear infinite;
}

.footer-wave-1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
    animation-duration: 25s;
}

/* CSS INNECESARIO ELIMINADO: .footer-wave-2 y .footer-wave-3 */

@keyframes waveFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg) scale(1.05);
    }
}

/* Partículas flotantes mágicas */
.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 140, 0, 0.3);
    animation: particleFloat 15s linear infinite;
}

.footer-particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.footer-particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 20s;
}

/* CSS INNECESARIO ELIMINADO: .footer-particle:nth-child(3-10) - solo quedan 2 partículas */

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(50px, -100px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
}

/* Luces orbitales espectaculares */
.footer-orbital-lights {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbital-light {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbitalRotate 20s linear infinite;
}

.orbital-1 {
    top: 20%;
    left: 20%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.4), transparent 70%);
    animation-duration: 25s;
}

/* CSS INNECESARIO ELIMINADO: .orbital-2 y .orbital-3 */

@keyframes orbitalRotate {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(80px, -80px) scale(1.3);
        opacity: 0.6;
    }
    50% {
        transform: translate(160px, 0) scale(1);
        opacity: 0.4;
    }
    75% {
        transform: translate(80px, 80px) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.4s linear;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s linear;
    opacity: 0;
    pointer-events: none;
}

.footer-section:hover::before {
    width: 400px;
    height: 400px;
    opacity: 1;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 24px;
    position: relative;
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Estilo especial para Calefon.UY en footer */
.footer-section h3:first-child {
    background: linear-gradient(135deg, 
        var(--white) 0%, 
        var(--accent-color) 50%, 
        var(--white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: none;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px; /* ancho fijo, la animación usa scaleX */
    height: 3px;
    background: linear-gradient(90deg, var(--white), var(--accent));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4); /* estático para rendimiento */
    animation: underlineGlow 3s linear infinite;
    transform-origin: center; /* OPTIMIZADO: centrado */
    will-change: transform, opacity; /* GPU acceleration hint */
}

/* OPTIMIZADO: Solo transform y opacity para GPU acceleration */
@keyframes underlineGlow {
    0%, 100% {
        transform: scaleX(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.footer-section p,
.footer-section li {
    line-height: 2;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-section li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s linear;
}

.footer-section li:hover {
    transform: translateX(3px);
}

.footer-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    transition: all 0.3s linear;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.footer-section li:hover::before {
    left: 5px;
    animation: arrowBounce 0.6s linear infinite;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transition: all 0.3s linear;
    box-shadow: 0 0 10px var(--accent);
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.footer-section a:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px; /* ancho fijo, la animación usa scaleX */
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: lineExpand 3s linear infinite;
    transform-origin: center center; /* OPTIMIZADO: para scaleX desde el centro */
    will-change: transform, opacity; /* GPU acceleration hint */
}

/* OPTIMIZADO: Solo transform y opacity para GPU acceleration */
@keyframes lineExpand {
    0%, 100% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.footer-bottom p {
    margin-bottom: 12px;
}

/* Estilo elegante para Calefon.UY en copyright */
.footer-bottom p {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        var(--accent-color) 30%, 
        var(--accent-color) 70%, 
        rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 160, 0, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    transform: translateX(8px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 140, 0, 0.3);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 140, 0, 0.4));
    transition: all 0.3s linear;
}

.contact-item:hover svg {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(255, 140, 0, 0.6));
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.95);
}

/* Elementos decorativos del footer */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: footerShapeFloat 25s linear infinite;
}

.footer-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

/* CSS INNECESARIO ELIMINADO: .footer-shape-2 y .footer-shape-3 */

@keyframes footerShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(30px, -40px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(-25px, 25px) rotate(240deg) scale(0.95);
    }
}

/* Líneas decorativas del footer */
.footer-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%
    );
    opacity: 0.5;
    animation: footerLineShimmer 6s linear infinite;
}

.footer-line.line-1 {
    left: 30%;
    animation-delay: 0s;
}

.footer-line.line-2 {
    right: 30%;
    animation-delay: 3s;
}

@keyframes footerLineShimmer {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1);
    }
}

/* CTA Section Improvements */
.cta-section h2 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-section p {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Testimonials Section Improvements */
.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Emergency Banner Improvements */
.emergency-text strong {
    color: var(--white);
    font-weight: 900;
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Improved Button Contrast */
.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
    font-weight: 900;
    text-shadow: none;
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s linear;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255,160,0,0.5);
}

/* Better text hierarchy and typography */
h1, h2, h3, h4 {
    color: var(--text-dark);
}

.hero h1,
.hero p,
.cta-section h2,
.cta-section p,
.testimonials h2,
.testimonials p {
    color: var(--white);
}

/* Badge Styles para destacar información clave */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255,160,0,0.3); /* estático para rendimiento */
    position: relative; /* Para pseudo-elemento */
}

/* OPTIMIZADO: Pseudo-elemento para efecto de pulso (GPU accelerated) */
.badge-enhanced::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255,160,0,0.4), transparent 70%);
    z-index: -1;
    animation: badgePulseGlow2 3s linear infinite;
    pointer-events: none;
}

@keyframes badgePulseGlow2 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.badge-success {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
}

.badge-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* Number highlights en el texto */
strong {
    color: var(--primary);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 10px 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .btn-primary span {
        display: none;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }

    .btn-hero {
        min-width: 100%;
        font-size: 1rem;
        padding: 14px 32px;
    }

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

    .problems {
        padding: 60px 0;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .emergency-text {
        font-size: 1rem;
    }
}

/* Social Proof Section */
/* ============================================
   SOCIAL PROOF SECTION - ULTRA PREMIUM 2025
   ============================================ */

.social-proof-ultra {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f5f7fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background pattern decorativo */
.social-proof-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(10,74,142,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,160,0,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.social-proof-bg-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10,74,142,0.02) 0%, transparent 70%);
    animation: bgPatternPulse 15s linear infinite;
}

/* Elementos decorativos flotantes con parallax */
.floating-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: floatDecoFadeIn 1.2s linear forwards;
    will-change: transform;
}

.floating-deco-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0.3s;
}

/* CSS INNECESARIO ELIMINADO: .floating-deco-2 y .floating-deco-3 */

@keyframes floatDecoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.floating-decoration svg {
    animation: floatRotate 20s linear infinite;
}

@keyframes floatRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Líneas conectoras decorativas */
.connecting-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.connection-line {
    position: absolute;
    width: 25%;
    height: 2px;
    opacity: 0;
    animation: lineAppear 1.5s linear forwards;
}

.line-1 {
    top: 50%;
    left: 12.5%;
    animation-delay: 1s;
}

@keyframes lineAppear {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes bgPatternPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Header premium con badge */
.section-header-premium {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s linear;
}

.section-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(10,74,142,0.1), rgba(10,74,142,0.05));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(10,74,142,0.2);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10,74,142,0.15),
                inset 0 1px 0 rgba(255,255,255,0.5);
    transition: all 0.3s linear;
    animation: badgePulseGlow 4s linear infinite;
}

.section-badge-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,74,142,0.25),
                inset 0 1px 0 rgba(255,255,255,0.7);
}

@keyframes badgePulseGlow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(10,74,142,0.15),
                    inset 0 1px 0 rgba(255,255,255,0.5);
    }
    50% {
        box-shadow: 0 6px 24px rgba(10,74,142,0.25),
                    0 0 30px rgba(10,74,142,0.1),
                    inset 0 1px 0 rgba(255,255,255,0.7);
    }
}

.badge-shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: badgeShimmerMove 3s linear infinite;
}

@keyframes badgeShimmerMove {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.section-badge-premium svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.section-title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradientMove 5s linear infinite;
    position: relative;
    display: inline-block;
}

.section-title-gradient .title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-title-gradient::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* ancho fijo, la animación usa scaleX */
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    animation: underlineGlow 3s linear infinite;
    transform-origin: center center; /* OPTIMIZADO: para scaleX desde el centro */
    will-change: transform, opacity; /* GPU acceleration hint */
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes titleGradientMove {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* OPTIMIZADO: Solo transform y opacity para GPU acceleration */
@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.6);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.section-subtitle-enhanced {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 20px auto 0;
    animation: fadeInUp 0.8s linear 0.2s backwards;
}

/* Grid de estadísticas ultra - Compacto en desktop */
.stats-grid-ultra {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

/* Desktop grande - 4 columnas */
@media (max-width: 1199px) {
    .stats-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

/* Tablet - 2 columnas */
@media (max-width: 900px) {
    .stats-grid-ultra {
        gap: 24px;
    }
}

/* Stat box ultra-premium con glassmorphism - Versión compacta desktop */
.stat-box-ultra {
    position: relative;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s linear;
    overflow: hidden;
    animation: statCardFadeIn 0.8s linear backwards;
}

.stat-box-ultra[data-stat="1"] { animation-delay: 0.1s; }
.stat-box-ultra[data-stat="2"] { animation-delay: 0.2s; }
.stat-box-ultra[data-stat="3"] { animation-delay: 0.3s; }
.stat-box-ultra[data-stat="4"] { animation-delay: 0.4s; }

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

.stat-box-ultra:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(10, 74, 142, 0.2),
                0 0 80px rgba(10, 74, 142, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(10, 74, 142, 0.3);
}

.stat-box-ultra:hover .stat-glow {
    opacity: 1;
}

.stat-box-ultra:hover .stat-icon-wrapper-ultra {
    transform: scale(1.1) rotateY(10deg);
}

.stat-box-ultra:hover .stat-number {
    background: linear-gradient(135deg, #0a4a8e 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow effect al hover */
.stat-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(10,74,142,0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s linear;
    filter: blur(30px);
}

.stat-box-ultra:hover .stat-glow {
    opacity: 1;
}

/* Border glow animado mejorado */
.stat-border-glow {
    position: absolute;
    inset: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg,
        rgba(10,74,142,0.7),
        rgba(255,160,0,0.7),
        rgba(37,211,102,0.5),
        rgba(10,74,142,0.7)
    );
    background-size: 400% 400%;
    animation: statBorderGlowMove 6s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s linear;
    filter: blur(8px);
}

.stat-box-ultra:hover .stat-border-glow {
    opacity: 1;
    filter: blur(12px);
    animation: statBorderGlowMove 3s linear infinite;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes statBorderGlowMove {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Corners decorativos */
.stat-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10,74,142,0.3);
    opacity: 0;
    transition: opacity 0.5s linear;
}

.stat-corner-tl {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
    border-radius: 4px 0 0 0;
}

.stat-corner-br {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 4px 0;
}

.stat-box-ultra:hover .stat-corner {
    opacity: 1;
    animation: cornerPulse 1s linear infinite;
}

@keyframes cornerPulse {
    0%, 100% {
        border-color: rgba(10,74,142,0.3);
    }
    50% {
        border-color: rgba(255,140,0,0.6);
    }
}

/* Icono wrapper ultra - Compacto */
.stat-icon-wrapper-ultra {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s linear;
}

.icon-glow-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), #1c5d9f);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(10,74,142,0.3);
    transition: all 0.5s linear;
}

.stat-box-ultra:hover .icon-glow-bg {
    box-shadow: 0 10px 32px rgba(10,74,142,0.5);
    transform: scale(1.1) rotate(5deg);
}

/* Rings pulsantes en el icono */
.icon-pulse-ring {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(10,74,142,0.3);
    border-radius: 16px;
    animation: iconRingPulse 3s linear infinite;
}

@keyframes iconRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.stat-icon-wrapper-ultra svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
    transition: transform 0.5s linear;
}

.stat-box-ultra:hover .stat-icon-wrapper-ultra svg {
    transform: scale(1.1) rotate(-5deg);
}

/* Content ultra */
.stat-content-ultra {
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stat-number-ultra {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: numberGradientShift 4s linear infinite;
    font-family: 'Segoe UI', system-ui, sans-serif;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    transition: all 0.5s linear;
}

.stat-box-ultra:hover .stat-number-ultra {
    text-shadow: 0 0 20px rgba(10,74,142,0.5),
                 0 0 40px rgba(10,74,142,0.3);
    /* OPTIMIZADO: Simplificada animación, eliminado numberGradientShift (background-position) */
    animation: numberTextGlow 2s linear infinite;
}

/* OPTIMIZADO: Eliminada animación de background-position no composited */
@keyframes numberGradientShift {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

@keyframes numberTextGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.stat-decimal,
.stat-plus,
.stat-percent,
.stat-unit {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.9;
}

/* Estrellas de rating - Compacto */
.stat-stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-bottom: 8px;
}

.stat-stars svg {
    width: 16px;
    height: 16px;
    fill: #ffa000;
    filter: drop-shadow(0 2px 4px rgba(255,160,0,0.3));
    animation: starPulse 2s linear infinite;
}

.stat-stars svg:nth-child(1) { animation-delay: 0s; }
.stat-stars svg:nth-child(2) { animation-delay: 0.1s; }
.stat-stars svg:nth-child(3) { animation-delay: 0.2s; }
.stat-stars svg:nth-child(4) { animation-delay: 0.3s; }
.stat-stars svg:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.stat-stars .half-star {
    opacity: 0.5;
}

/* Barra de progreso - Compacta */
.stat-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(10,74,142,0.1);
    border-radius: 2.5px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.stat-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    animation: progressFillAnimation 2s linear;
    position: relative;
    overflow: hidden;
}

@keyframes progressFillAnimation {
    from { width: 0% !important; }
}

.stat-progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Labels - Compacto */
.stat-label-ultra {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.stat-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Color coding por tipo */
.stat-rating .icon-glow-bg {
    background: linear-gradient(135deg, #ffa000, #ff8c00);
}

.stat-rating .icon-pulse-ring {
    border-color: rgba(255,160,0,0.4);
}

.stat-clients .icon-glow-bg {
    background: linear-gradient(135deg, #0a4a8e, #1c5d9f);
}

.stat-success .icon-glow-bg {
    background: linear-gradient(135deg, #25d366, #20bd5f);
}

.stat-success .icon-pulse-ring {
    border-color: rgba(37,211,102,0.4);
}

.stat-time .icon-glow-bg {
    background: linear-gradient(135deg, #0a4a8e, #1565c0);
}

/* Trust badge container */
.trust-badge-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s linear 0.6s backwards;
}

.trust-badge-ultra {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-full);
    border: 2px solid rgba(10,74,142,0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(10,74,142,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.trust-badge-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(10,74,142,0.4), rgba(255,160,0,0.4));
    filter: blur(15px);
    opacity: 0.6;
    animation: trustBadgeGlow 3s linear infinite;
    z-index: -1;
}

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

.trust-badge-ultra svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(10,74,142,0.3));
}

.trust-badge-text {
    font-size: 1rem;
    color: #1a1a1a !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
    opacity: 1 !important;
    visibility: visible !important;
}

.trust-badge-text strong {
    font-size: 1.2rem;
    color: #ffa000 !important;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(255, 140, 0, 0.3);
    display: inline-block;
    padding: 0 4px;
    opacity: 1 !important;
    visibility: visible !important;
}

.trust-badge-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255,160,0,0.5);
    animation: trustPulseRing 2s linear infinite;
}

@keyframes trustPulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive ultra */
@media (max-width: 768px) {
    .social-proof-ultra {
        padding: 60px 0;
    }
    
    .stats-grid-ultra {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .stat-box-ultra {
        padding: 24px 20px;
    }
    
    .stat-icon-wrapper-ultra {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon-wrapper-ultra svg {
        width: 30px;
        height: 30px;
    }
    
    .stat-number-ultra {
        font-size: 2.5rem;
    }
    
    .trust-badge-container {
        margin-top: 40px;
    }
    
    .trust-badge-ultra {
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .stats-grid-ultra {
        gap: 20px;
    }
    
    .stat-border-glow,
    .stat-glow,
    .icon-pulse-ring,
    .trust-badge-glow {
        display: none;
    }
    
    .stat-number-ultra {
        font-size: 2rem;
    }
    
    .trust-badge-text {
        font-size: 0.85rem;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .trust-badge-text strong {
        color: #ffa000 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ============================================
   HOW IT WORKS SECTION - ULTRA PREMIUM 2025
   ============================================ */

.how-it-works-ultra {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background decorativo con formas geométricas */
.how-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.how-shape {
    position: absolute;
    opacity: 0;
    animation: shapeFloatIn 1.5s linear forwards;
}

.how-shape-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(10,74,142,0.08), transparent 70%);
    border-radius: 50%;
    animation-delay: 0.3s;
}

.how-shape-2 {
    top: 60%;
    right: 8%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,160,0,0.08), transparent 70%);
    border-radius: 50%;
    animation-delay: 0.6s;
}

.how-shape-3 {
    bottom: 15%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37,211,102,0.06), transparent 70%);
    border-radius: 50%;
    animation-delay: 0.9s;
}

@keyframes shapeFloatIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Header ultra premium */
.section-header-ultra {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s linear;
}

.section-badge-how {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(10,74,142,0.1), rgba(10,74,142,0.05));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(10,74,142,0.2);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10,74,142,0.15);
    animation: badgeSlideIn 0.8s linear 0.2s backwards;
}

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

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: badgeGlowMove 3s linear infinite;
}

@keyframes badgeGlowMove {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.section-badge-how svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.how-title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradientShift 5s linear infinite;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    word-wrap: break-word;
    max-width: 100%;
}

.how-title-gradient .title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes titleGradientShift {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.how-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s linear 0.4s backwards;
}

/* Timeline connector - Línea que conecta los pasos */
.timeline-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 1000px;
    height: 2px;
    z-index: 0;
    pointer-events: none;
}

.timeline-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(10,74,142,0.15) 25%, 
        rgba(10,74,142,0.15) 75%, 
        transparent 100%);
}

.timeline-progress {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform-origin: left;
    animation: timelineGrow 2s linear 1s both;
}

@keyframes timelineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Grid de pasos ultra */
.steps-grid-ultra {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Step card ultra-premium con glassmorphism */
.step-card-ultra {
    position: relative;
    padding: 48px 28px 32px;
    min-height: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.5s linear;
    overflow: visible;
    animation: stepCardFadeIn 0.8s linear backwards;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-card-ultra[data-step="1"] { animation-delay: 0.2s; }
.step-card-ultra[data-step="2"] { animation-delay: 0.4s; }
.step-card-ultra[data-step="3"] { animation-delay: 0.6s; }
.step-card-ultra[data-step="4"] { animation-delay: 0.8s; }

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

/* Clase para activar con Intersection Observer */
.step-card-ultra.is-visible {
    animation: stepCardEnhanced 1s linear forwards;
}

@keyframes stepCardEnhanced {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9) rotateX(-10deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(20px) scale(0.98) rotateX(-5deg);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0);
    }
}

.step-card-ultra:hover {
    transform: translateY(-12px) scale(1.02) perspective(1000px) rotateX(2deg);
    box-shadow: 0 20px 60px rgba(10, 74, 142, 0.2),
                0 0 80px rgba(10, 74, 142, 0.12),
                0 0 120px rgba(255, 140, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(10, 74, 142, 0.3);
    animation: cardPulseGlow 2s linear infinite;
}

@keyframes cardPulseGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(10, 74, 142, 0.2),
                    0 0 80px rgba(10, 74, 142, 0.12),
                    0 0 120px rgba(255, 140, 0, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 1);
    }
    50% {
        box-shadow: 0 25px 70px rgba(10, 74, 142, 0.25),
                    0 0 100px rgba(10, 74, 142, 0.15),
                    0 0 140px rgba(255, 140, 0, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 1);
    }
}

/* Efectos de glow y brillo en las tarjetas */
.step-bg-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(10,74,142,0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s linear;
    pointer-events: none;
}

.step-card-ultra:hover .step-bg-glow {
    opacity: 1;
}

.step-border-shine {
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg,
        rgba(10,74,142,0.6),
        rgba(255,160,0,0.6),
        rgba(10,74,142,0.6)
    );
    background-size: 300% 300%;
    animation: stepBorderShine 5s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s linear;
    filter: blur(8px);
}

.step-card-ultra:hover .step-border-shine {
    opacity: 1;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes stepBorderShine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Número del paso ultra-premium */
.step-number-ultra {
    position: absolute;
    top: 16px;
    left: 16px;
    transform: none;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.number-inner {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(255,140,0,0.4),
                inset 0 2px 4px rgba(255,255,255,0.3);
    border: 3px solid var(--white);
    transition: all 0.5s linear;
    position: relative;
    z-index: 2;
}

.step-card-ultra:hover .number-inner {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 32px rgba(255,140,0,0.6),
                inset 0 2px 4px rgba(255,255,255,0.5);
}

.number-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255,140,0,0.3);
    border-radius: 50%;
    animation: numberRingPulse 3s linear infinite;
}

@keyframes numberRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.number-pulse {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255,140,0,0.2);
    border-radius: 50%;
    animation: numberPulseWave 3s linear infinite 0.5s;
}

@keyframes numberPulseWave {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Icono del paso ultra */
.step-icon-ultra {
    width: 64px;
    height: 64px;
    margin: 32px auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s linear;
}

.icon-bg-ultra {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 100%);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(10,74,142,0.25);
    transition: all 0.5s linear;
}

.step-card-ultra:hover .icon-bg-ultra {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b00 100%);
    box-shadow: 0 8px 28px rgba(255,140,0,0.4);
    transform: rotate(-10deg) scale(1.1);
}

.step-icon-ultra svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    position: relative;
    z-index: 1;
    transition: transform 0.5s linear;
}

.step-card-ultra:hover .step-icon-ultra svg {
    transform: scale(1.1) rotate(10deg);
}

/* Contenido del paso */
.step-content-ultra {
    text-align: center;
}

.step-title-ultra {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a4a8e;
    margin-bottom: 14px;
    transition: all 0.3s linear;
    line-height: 1.3;
}

.step-card-ultra:hover .step-title-ultra {
    color: #ff8c00;
    transform: translateY(-2px);
}

.step-desc-ultra {
    color: #495057;
    line-height: 1.7;
    font-size: 0.975rem;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* Badge informativo en cada paso */
.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(10,74,142,0.12), rgba(10,74,142,0.08));
    border-radius: var(--radius-full);
    border: 1px solid rgba(10,74,142,0.25);
    font-size: 0.8rem;
    font-weight: 700;
    color: #0a4a8e;
    transition: all 0.3s linear;
    margin-top: auto;
}

.step-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.step-card-ultra:hover .step-badge {
    background: linear-gradient(135deg, rgba(255,140,0,0.2), rgba(255,140,0,0.12));
    border-color: rgba(255,140,0,0.4);
    color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,140,0,0.2);
}

.step-badge-success {
    background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(37,211,102,0.1));
    border-color: rgba(37,211,102,0.3);
    color: #20bd5f;
}

.step-card-ultra:hover .step-badge-success {
    background: linear-gradient(135deg, rgba(37,211,102,0.2), rgba(37,211,102,0.1));
    border-color: rgba(37,211,102,0.5);
}

/* Partículas flotantes decorativas en background */
.how-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, rgba(10,74,142,0.6), rgba(255,140,0,0.6));
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
    box-shadow: 0 0 10px rgba(10,74,142,0.3);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle-2 {
    top: 50%;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle-3 {
    top: 70%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle-4 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.particle-5 {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle-6 {
    top: 80%;
    right: 30%;
    animation-delay: 5s;
    animation-duration: 17s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
        transform: translateY(-80px) scale(1.5);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-160px) scale(0.5);
    }
}

/* CSS INNECESARIO ELIMINADO: .connection-dots, .conn-dot, .dot-1/2/3, dotPulse animation */

/* Sparkles - Destellos brillantes en las tarjetas */
.step-sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px rgba(255,140,0,0.8);
    animation: sparkleShine 4s linear infinite;
}

.sparkle-1 {
    top: 15%;
    right: 15%;
    animation-delay: 0.5s;
}

.sparkle-2 {
    top: 60%;
    left: 10%;
    animation-delay: 1.5s;
}

.sparkle-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 2.5s;
}

@keyframes sparkleShine {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(2);
    }
}

/* Mejora en las sombras progresivas al hacer scroll */
.step-card-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(145deg, 
        rgba(255,255,255,0.8) 0%, 
        rgba(255,255,255,0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s linear;
    pointer-events: none;
}

.step-card-ultra:hover::before {
    opacity: 1;
}

/* Efecto de profundidad 3D mejorado */
.step-card-ultra {
    transform-style: preserve-3d;
}

.step-icon-ultra {
    transform: translateZ(20px);
}

.step-number-ultra {
    transform: translateZ(40px);
}

.step-content-ultra {
    transform: translateZ(10px);
}

/* Animación de badge más sofisticada */
.step-badge {
    position: relative;
    overflow: hidden;
}

.step-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.4), 
        transparent);
    transform: translateX(-100%);
    transition: transform 0.6s linear;
}

.step-card-ultra:hover .step-badge::before {
    transform: translateX(100%);
}

/* Efecto de luz dinámica en el título */
.step-title-ultra {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 5s linear infinite;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes titleShimmer {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

.step-card-ultra:hover .step-title-ultra {
    animation: titleShimmer 2s linear infinite;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .steps-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .timeline-connector {
        display: none;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .how-it-works-ultra {
        padding: 60px 0;
    }
    
    .steps-grid-ultra {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }
    
    .step-card-ultra {
        padding: 28px 20px 24px;
    }
    
    .step-number-ultra {
        width: 56px;
        height: 56px;
    }
    
    .number-inner {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .step-icon-ultra {
        width: 56px;
        height: 56px;
    }
    
    .step-icon-ultra svg {
        width: 28px;
        height: 28px;
    }
    
    .how-shape {
        display: none;
    }
    
    .how-particles,
    .connection-dots {
        display: none;
    }
    
    .step-sparkle {
        display: none;
    }
    
    /* Desactivar efectos 3D en móvil */
    .step-card-ultra,
    .step-icon-ultra,
    .step-number-ultra,
    .step-content-ultra {
        transform: none !important;
    }
}

/* ============================================
   BRANDS SECTION ULTRA PREMIUM - 2025 DESIGN V3
   Diseño ultra moderno con efectos premium avanzados
   ============================================ */

.brands-ultra {
    position: relative;
    padding: 80px 0;
    background: 
        radial-gradient(ellipse 1200px 600px at 50% -100px, rgba(10,74,142,0.04), transparent),
        radial-gradient(ellipse 800px 400px at 0% 100%, rgba(255,140,0,0.03), transparent),
        radial-gradient(ellipse 800px 400px at 100% 100%, rgba(10,74,142,0.02), transparent),
        linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
    overflow: hidden;
}

/* Decoración de grid sutil con patrón moderno */
.brands-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(10,74,142,0.015) 0px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(10,74,142,0.015) 0px, transparent 1px, transparent 60px);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Luz ambiental superior premium */
.brands-ultra::after {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: 
        radial-gradient(
            circle,
            rgba(255,140,0,0.06) 0%,
            rgba(10,74,142,0.04) 25%,
            rgba(255,140,0,0.02) 50%,
            transparent 70%
        );
    pointer-events: none;
    z-index: 0;
    animation: brandsLightPulse 10s linear infinite;
    filter: blur(40px);
}

@keyframes brandsLightPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.15) rotate(5deg);
    }
}

/* Elementos decorativos de fondo - ULTRA MEJORADOS */
.brands-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.brands-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.brands-shape-1 {
    width: 600px;
    height: 600px;
    background: 
        radial-gradient(
            circle,
            rgba(10,74,142,0.12) 0%,
            rgba(10,74,142,0.06) 30%,
            rgba(10,74,142,0.02) 60%,
            transparent 80%
        );
    top: -300px;
    left: -200px;
    animation: brandsShapeFloat 30s linear infinite;
}

.brands-shape-2 {
    width: 550px;
    height: 550px;
    background: 
        radial-gradient(
            circle,
            rgba(255,140,0,0.10) 0%,
            rgba(255,140,0,0.05) 30%,
            rgba(255,140,0,0.02) 60%,
            transparent 80%
        );
    bottom: -250px;
    right: -200px;
    animation: brandsShapeFloat 35s linear infinite reverse;
}

.brands-shape-3 {
    width: 450px;
    height: 450px;
    background: 
        radial-gradient(
            circle,
            rgba(10,74,142,0.08) 0%,
            rgba(10,74,142,0.04) 30%,
            rgba(10,74,142,0.01) 60%,
            transparent 80%
        );
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: brandsShapeFloat 25s linear infinite;
}

@keyframes brandsShapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) scale(1.15) rotate(5deg);
    }
    66% {
        transform: translate(-40px, 40px) scale(0.85) rotate(-5deg);
    }
}

/* Partículas flotantes - ULTRA MEJORADAS */
.brands-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.brands-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: 
        radial-gradient(
            circle,
            rgba(255,140,0,0.8) 0%,
            rgba(10,74,142,0.6) 50%,
            transparent 100%
        );
    border-radius: 50%;
    filter: blur(1px);
    animation: brandsParticleFloat 18s linear infinite;
}

.brands-particle::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: 
        radial-gradient(
            circle,
            rgba(255,140,0,0.4),
            rgba(10,74,142,0.2),
            transparent
        );
    border-radius: 50%;
    filter: blur(6px);
    animation: particlePulse 3s linear infinite;
}

@keyframes particlePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.5);
    }
}

.brands-particle:nth-child(1) {
    top: 15%;
    left: 12%;
    animation-delay: 0s;
    animation-duration: 22s;
}

.brands-particle:nth-child(2) {
    top: 65%;
    right: 18%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.brands-particle:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 8s;
    animation-duration: 20s;
}

.brands-particle:nth-child(4) {
    top: 35%;
    right: 25%;
    animation-delay: 12s;
    animation-duration: 26s;
}

@keyframes brandsParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    20% {
        transform: translate(40px, -60px) scale(1.3);
        opacity: 0.7;
    }
    40% {
        transform: translate(-20px, -120px) scale(0.9);
        opacity: 0.4;
    }
    60% {
        transform: translate(-70px, -80px) scale(1.2);
        opacity: 0.6;
    }
    80% {
        transform: translate(20px, -40px) scale(1.1);
        opacity: 0.5;
    }
}

/* Header de la sección - MEJORADO */
.brands-header-ultra {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Línea decorativa superior */
.brands-header-ultra::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255,140,0,0.4);
}

.brands-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: 
        linear-gradient(135deg, rgba(10,74,142,0.08), rgba(255,140,0,0.05)),
        rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(10,74,142,0.15);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 
        0 4px 20px rgba(10,74,142,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    animation: badgeGlowPulse 3s linear infinite;
    position: relative;
}

.brands-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s linear;
}

.brands-badge:hover::before {
    opacity: 0.1;
}

.badge-icon {
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(255,140,0,0.3));
}

.brands-title-ultra {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    letter-spacing: -0.02em;
}

.brands-title-ultra .title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.title-line {
    display: block;
    color: var(--text-dark);
    position: relative;
}

.title-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: titleGradientShift2 5s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(255,140,0,0.2));
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes titleGradientShift2 {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

.brands-subtitle-ultra {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Grid de marcas ultra premium */
.brands-grid-ultra {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Tarjetas de marca - DISEÑO ULTRA PREMIUM V3 - SIN ICONOS */
.brand-card-ultra {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%),
        radial-gradient(circle at top left, rgba(10,74,142,0.03), transparent 70%),
        radial-gradient(circle at bottom right, rgba(255,140,0,0.02), transparent 70%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid;
    border-color: rgba(10,74,142,0.08);
    border-radius: 16px;
    padding: 18px 16px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 70px;
    transition: all 0.6s linear;
    cursor: pointer;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 
        0 2px 8px rgba(10,74,142,0.04),
        0 8px 32px rgba(10,74,142,0.06),
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(10,74,142,0.03);
}

/* Borde animado premium */
.brand-card-ultra::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    background: conic-gradient(
        from 0deg,
        var(--primary) 0deg,
        var(--accent) 120deg,
        var(--primary) 240deg,
        var(--accent) 360deg
    );
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s linear;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Glow de fondo en hover - ULTRA MEJORADO */
.brand-card-glow {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(
            circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255,140,0,0.12) 0%,
            rgba(10,74,142,0.08) 30%,
            transparent 60%
        );
    opacity: 0;
    transition: opacity 0.6s linear;
    z-index: 0;
    mix-blend-mode: overlay;
}

/* Efecto shine con onda diagonal - MEJORADO */
.brand-card-shine {
    position: absolute;
    top: -50%;
    left: -150%;
    width: 300%;
    height: 200%;
    background: 
        linear-gradient(
            60deg,
            transparent 30%,
            rgba(255,255,255,0.05) 45%,
            rgba(255,255,255,0.6) 50%,
            rgba(255,255,255,0.05) 55%,
            transparent 70%
        );
    transform: translateX(0) skewX(-15deg);
    transition: transform 1s linear;
    z-index: 1;
    pointer-events: none;
}

.brand-card-ultra:hover .brand-card-shine {
    transform: translateX(100%) skewX(-15deg);
}

/* Wrapper del icono - OCULTO (sin iconos en diseño final) */
.brand-icon-wrapper {
    display: none;
}

.brand-icon {
    display: none;
}

/* Nombre de la marca - TIPOGRAFÍA PREMIUM CENTRADA */
.brand-name {
    position: relative;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
    transition: all 0.6s linear;
    z-index: 2;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(10,74,142,0.08);
}

/* Línea decorativa bajo el nombre */
.brand-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    transition: transform 0.6s linear;
    box-shadow: 0 0 16px rgba(255,140,0,0.6);
}

/* Flecha de hover - DISEÑO ULTRA PREMIUM */
.brand-hover-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: 
        linear-gradient(135deg, #ff9500 0%, var(--accent) 100%),
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.2) rotate(-90deg);
    transition: all 0.6s linear;
    z-index: 3;
    box-shadow: 
        0 8px 32px rgba(255,140,0,0.5),
        0 4px 16px rgba(255,140,0,0.3),
        inset 0 2px 4px rgba(255,255,255,0.4),
        inset 0 -2px 4px rgba(0,0,0,0.1);
}

.brand-hover-arrow::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: 
        radial-gradient(
            circle,
            rgba(255,140,0,0.6) 0%,
            rgba(255,140,0,0.3) 40%,
            transparent 70%
        );
    border-radius: 50%;
    filter: blur(12px);
    animation: arrowGlow 2.5s linear infinite;
}

@keyframes arrowGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.brand-hover-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    z-index: 1;
    transition: transform 0.4s linear;
}

/* Efectos de hover - ULTRA PREMIUM V3 */
.brand-card-ultra:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 28px 80px rgba(10,74,142,0.28),
        0 16px 40px rgba(255,140,0,0.22),
        0 0 0 2px rgba(255,140,0,0.4),
        0 0 100px rgba(255,140,0,0.12),
        inset 0 2px 6px rgba(255,255,255,1),
        inset 0 -2px 6px rgba(10,74,142,0.06);
    border-color: rgba(255,140,0,0.5);
}

.brand-card-ultra:hover::before {
    opacity: 1;
}

.brand-card-ultra:hover .brand-card-glow {
    opacity: 1;
}

/* Efecto hover del nombre (sin iconos) */
.brand-card-ultra:hover .brand-name {
    color: var(--accent);
    transform: translateY(-4px) scale(1.08);
    text-shadow: 
        0 4px 16px rgba(255,140,0,0.5),
        0 2px 8px rgba(255,140,0,0.3),
        0 1px 3px rgba(0,0,0,0.2);
}

.brand-card-ultra:hover .brand-name::after {
    transform: translateX(-50%) scaleX(1);
}

.brand-card-ultra:hover .brand-hover-arrow {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.brand-card-ultra:hover .brand-hover-arrow svg {
    transform: translateX(4px);
}

/* Animación de entrada con scroll reveal - MEJORADA */
.brand-card-ultra {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: brandCardReveal 0.8s linear forwards;
}

@keyframes brandCardReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Delay escalonado para las tarjetas - 10 MARCAS */
.brand-card-ultra:nth-child(1) { animation-delay: 0.05s; }
.brand-card-ultra:nth-child(2) { animation-delay: 0.1s; }
.brand-card-ultra:nth-child(3) { animation-delay: 0.15s; }
.brand-card-ultra:nth-child(4) { animation-delay: 0.2s; }
.brand-card-ultra:nth-child(5) { animation-delay: 0.25s; }
.brand-card-ultra:nth-child(6) { animation-delay: 0.3s; }
.brand-card-ultra:nth-child(7) { animation-delay: 0.35s; }
.brand-card-ultra:nth-child(8) { animation-delay: 0.4s; }
.brand-card-ultra:nth-child(9) { animation-delay: 0.45s; }
.brand-card-ultra:nth-child(10) { animation-delay: 0.5s; }

/* Footer message - Mensaje de todas las marcas */
.brands-footer-message {
    margin-top: 60px;
    padding: 0 20px;
}

.brands-footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
    background: 
        linear-gradient(135deg, rgba(10, 74, 142, 0.03), rgba(10, 74, 142, 0.01)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), rgba(248, 250, 251, 0.6));
    border: 1.5px solid rgba(10, 74, 142, 0.08);
    border-radius: 20px;
    box-shadow: 
        0 2px 12px rgba(10, 74, 142, 0.06),
        0 1px 4px rgba(10, 74, 142, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.brands-footer-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(10, 74, 142, 0.01) 20px,
        rgba(10, 74, 142, 0.01) 40px
    );
    pointer-events: none;
}

.brands-footer-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 74, 142, 0.08), rgba(10, 74, 142, 0.04));
    border-radius: 50%;
    border: 1.5px solid rgba(10, 74, 142, 0.12);
    box-shadow: 
        0 2px 8px rgba(10, 74, 142, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.brands-footer-icon svg {
    color: var(--primary);
    opacity: 0.85;
}

.brands-footer-text {
    flex: 1;
    position: relative;
    z-index: 1;
    text-align: center;
}

.brands-footer-title {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.brands-footer-desc {
    font-size: clamp(0.875rem, 1.8vw, 0.95rem);
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.brands-footer-desc strong {
    color: var(--primary);
    font-weight: 600;
}

/* Brand Selector Wrapper */
.brand-selector-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 16px auto 0;
}

.selector-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    fill: var(--primary);
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    transition: all 0.3s linear;
}

.brand-selector:focus ~ .selector-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.selector-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    fill: var(--primary);
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s linear;
}

.brand-selector:hover ~ .selector-arrow {
    transform: translateY(-50%) scale(1.1) rotate(-180deg);
}

.brand-selector:focus ~ .selector-arrow {
    transform: translateY(-50%) rotate(-180deg);
}

/* Loading Spinner */
.selector-loading {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.selector-loading .spinner {
    animation: spin 0.8s linear infinite;
    stroke: var(--primary);
}

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

/* Brand Selector */
.brand-selector {
    width: 100%;
    padding: 16px 48px;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.98) 0%,
        rgba(248,250,251,0.98) 100%
    );
    backdrop-filter: blur(10px) saturate(180%);
    border: 2px solid rgba(10,74,142,0.15);
    border-radius: 16px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.4s linear;
    box-shadow: 
        0 4px 16px rgba(10,74,142,0.08),
        0 8px 32px rgba(10,74,142,0.04),
        inset 0 1px 0 rgba(255,255,255,0.9),
        inset 0 -1px 0 rgba(10,74,142,0.05);
    position: relative;
    z-index: 1;
}

.brand-selector:hover {
    border-color: rgba(10,74,142,0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 28px rgba(10,74,142,0.15),
        0 16px 56px rgba(10,74,142,0.08),
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(10,74,142,0.08);
}

.brand-selector:focus {
    outline: none;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 36px rgba(10,74,142,0.18),
        0 20px 64px rgba(10,74,142,0.1),
        0 0 0 4px rgba(10,74,142,0.12),
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(10,74,142,0.1);
}

.brand-selector.loading {
    pointer-events: none;
    opacity: 0.7;
}

.brand-selector option {
    padding: 14px 16px;
    background: white;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s linear;
}

.brand-selector option:hover,
.brand-selector option:checked {
    background: linear-gradient(135deg, 
        rgba(10,74,142,0.08) 0%,
        rgba(10,74,142,0.04) 100%
    );
}

.brand-selector option[value=""] {
    color: rgba(10,74,142,0.6);
    font-style: italic;
    font-weight: 500;
}

.brand-selector option[value^="tel:"] {
    color: var(--accent);
    font-weight: 700;
    background: linear-gradient(135deg, 
        rgba(255,140,0,0.05) 0%,
        rgba(255,140,0,0.02) 100%
    );
    border-top: 2px solid rgba(255,140,0,0.2);
    padding-top: 16px;
    margin-top: 8px;
}

.brands-footer-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), rgba(10, 74, 142, 0.9));
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 
        0 2px 12px rgba(10, 74, 142, 0.2),
        0 1px 4px rgba(10, 74, 142, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s linear;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.brands-footer-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.brands-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 20px rgba(10, 74, 142, 0.3),
        0 2px 8px rgba(10, 74, 142, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(10, 74, 142, 1), rgba(10, 74, 142, 0.95));
}

.brands-footer-cta:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .brands-grid-ultra {
        grid-template-columns: repeat(5, 1fr);
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .brands-ultra {
        padding: 80px 0;
    }
    
    .brands-grid-ultra {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .brand-card-ultra {
        padding: 16px 14px;
        min-height: 65px;
        border-radius: 14px;
    }
    
    .brand-name {
        font-size: 0.85rem;
    }
    
    .brands-footer-message {
        margin-top: 50px;
    }
    
    .brands-footer-content {
        padding: 24px 28px;
        gap: 20px;
    }
    
    .brands-footer-icon {
        width: 44px;
        height: 44px;
    }
    
    .brand-selector-wrapper {
        max-width: 100%;
    }
    
    .brand-selector {
        font-size: 0.95rem;
        padding: 14px 44px;
    }
}

@media (max-width: 768px) {
    .brands-ultra {
        padding: 50px 0;
    }
    
    .brands-header-ultra {
        margin-bottom: 35px;
    }
    
    .brands-grid-ultra {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .brand-card-ultra {
        padding: 14px 12px;
        min-height: 60px;
        border-radius: 12px;
    }
    
    .brand-name {
        font-size: 0.8rem;
    }
    
    .brand-hover-arrow {
        width: 20px;
        height: 20px;
    }
    
    .brands-footer-message {
        margin-top: 40px;
    }
    
    .brands-footer-content {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    
    .brand-selector-wrapper {
        max-width: 100%;
    }
    
    .brand-selector {
        font-size: 0.9rem;
        padding: 14px 44px;
    }
    
    .brands-footer-cta {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
    
    /* Simplificar efectos en móvil */
    .brands-shape {
        opacity: 0.2;
    }
    
    .brands-particle {
        display: none;
    }
}

@media (max-width: 480px) {
    .brands-ultra {
        padding: 50px 0;
    }
    
    .brands-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .brands-title-ultra {
        font-size: 1.75rem;
    }
    
    .brands-subtitle-ultra {
        font-size: 1rem;
    }
    
    .brands-grid-ultra {
        gap: 12px;
    }
    
    .brand-card-ultra {
        padding: 20px 12px;
        gap: 12px;
    }
    
    .brand-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .brand-icon {
        width: 20px;
        height: 20px;
    }
    
    .brand-name {
        font-size: 0.9rem;
    }
    
    /* Hover effects activos en móvil al tocar */
    .brand-card-ultra:active {
        transform: translateY(-4px);
    }
    
    .brand-card-ultra:active .brand-icon-wrapper {
        transform: scale(1.05);
    }
}

/* Efecto Ripple para clicks */
.brand-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(10,74,142,0.3), transparent 50%);
    border-radius: 50%;
    transform: scale(0);
    animation: brandRipple 0.6s linear;
    pointer-events: none;
    z-index: 10;
}

@keyframes brandRipple {
    to {
        transform: scale(15);
        opacity: 0;
    }
}

/* Accesibilidad - Focus states */
.brand-card-ultra:focus {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.brand-card-ultra:focus-visible {
    box-shadow: 
        0 12px 40px rgba(10,74,142,0.15),
        0 0 0 3px rgba(255,140,0,0.3);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .brand-card-ultra,
    .brands-shape,
    .brands-particle,
    .brand-card-shine,
    .brand-icon-wrapper,
    .brand-hover-arrow {
        animation: none !important;
        transition: none !important;
    }
    
    .brand-card-ultra:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .brands-ultra {
        background: white;
    }
    
    .brands-background,
    .brands-particles,
    .brand-card-glow,
    .brand-card-shine,
    .brand-hover-arrow {
        display: none;
    }
    
    .brand-card-ultra {
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}


/* Testimonials Section - Redesign */
/* ==========================================
   TESTIMONIALS ULTRA-PREMIUM 2025
   ========================================== */

.testimonials-ultra {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorativo */
.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.testimonials-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: testimonialsShapeFloat 20s linear infinite;
}

.testimonials-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10,74,142,0.15), transparent 70%);
    top: -250px;
    left: -200px;
    animation-delay: 0s;
}

.testimonials-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,140,0,0.12), transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 3s;
    animation-duration: 18s;
}

.testimonials-shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(10,74,142,0.1), transparent 70%);
    top: 50%;
    right: 8%;
    animation-delay: 6s;
    animation-duration: 22s;
}

@keyframes testimonialsShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(35px, -45px) rotate(120deg);
    }
    66% {
        transform: translate(-25px, 25px) rotate(240deg);
    }
}

/* Partículas flotantes */
.testimonials-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.testimonials-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, rgba(10,74,142,0.4), rgba(255,140,0,0.3));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(10,74,142,0.3);
    animation: testimonialsParticleFloat 15s linear infinite;
}

.testimonials-particle.particle-1 {
    left: 12%;
    top: 25%;
    animation-delay: 0s;
}

.testimonials-particle.particle-2 {
    right: 18%;
    top: 38%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.testimonials-particle.particle-3 {
    left: 25%;
    bottom: 35%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.testimonials-particle.particle-4 {
    right: 28%;
    bottom: 20%;
    animation-delay: 9s;
    animation-duration: 17s;
}

@keyframes testimonialsParticleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
    80% {
        opacity: 0.5;
    }
}

/* Header */
.testimonials-header-ultra {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.testimonials-title-ultra {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonials-title-ultra .title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.testimonials-title-ultra .title-primary {
    color: var(--primary);
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Cards Ultra-Premium */
.testimonial-card-ultra {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.95) 0%,
        rgba(248,250,251,0.95) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 32px;
    border: 2px solid rgba(10,74,142,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.6s linear;
    box-shadow: 
        0 4px 20px rgba(10,74,142,0.06),
        0 8px 40px rgba(10,74,142,0.04),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Glow effect */
.testimonial-card-ultra .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10,74,142,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s linear;
    pointer-events: none;
}

.testimonial-card-ultra:hover .card-glow {
    opacity: 1;
}

/* Shine effect */
.testimonial-card-ultra .card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.4) 50%,
        transparent 100%
    );
    transition: left 0.8s linear;
    pointer-events: none;
}

.testimonial-card-ultra:hover .card-shine {
    left: 100%;
}

.testimonial-card-ultra:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(10,74,142,0.15);
    box-shadow: 
        0 12px 40px rgba(10,74,142,0.12),
        0 20px 60px rgba(10,74,142,0.08),
        0 0 0 1px rgba(10,74,142,0.08),
        inset 0 1px 0 rgba(255,255,255,1);
}

/* Stars Ultra */
.stars-ultra {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    /* Solo animar propiedades GPU-accelerated */
    transition: transform 0.4s linear, opacity 0.4s linear;
    will-change: transform, opacity;
}

.testimonial-card-ultra:hover .star-icon {
    transform: scale(1.15) rotate(12deg);
    opacity: 0.95;
    /* filter removido - optimización GPU */
}

.star-icon:nth-child(2) {
    transition-delay: 0.05s;
}

.star-icon:nth-child(3) {
    transition-delay: 0.1s;
}

.star-icon:nth-child(4) {
    transition-delay: 0.15s;
}

.star-icon:nth-child(5) {
    transition-delay: 0.2s;
}

/* Testimonial Text */
.testimonial-card-ultra .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 400;
    position: relative;
}

.testimonial-card-ultra .testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -8px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(10,74,142,0.06);
    line-height: 1;
    font-family: Georgia, serif;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.author-avatar-ultra {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--white);
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 100%);
    box-shadow: 
        0 4px 16px rgba(10,74,142,0.3),
        0 8px 32px rgba(10,74,142,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.5s linear;
}

/* Pseudo-element for avatar glow effect */
.author-avatar-ultra::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.5s linear;
    z-index: -1;
}

.testimonial-card-ultra:hover .author-avatar-ultra::before {
    opacity: 0.6;
}

.author-avatar-ultra .avatar-text {
    position: relative;
    z-index: 1;
}

.testimonial-card-ultra:hover .author-avatar-ultra {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 
        0 6px 24px rgba(10,74,142,0.4),
        0 12px 48px rgba(10,74,142,0.25),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

.author-info h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 4px 0;
    color: var(--primary);
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.author-location svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Responsive Tablet */
@media (max-width: 1024px) {
    .testimonials-ultra {
        padding: 80px 0;
    }

    .testimonials-title-ultra {
        font-size: 2.5rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .testimonial-card-ultra {
        padding: 28px;
    }

    .testimonials-shape-1 {
        width: 400px;
        height: 400px;
    }

    .testimonials-shape-2 {
        width: 350px;
        height: 350px;
    }

    .testimonials-shape-3 {
        width: 300px;
        height: 300px;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .testimonials-ultra {
        padding: 60px 0;
    }

    .testimonials-header-ultra {
        margin-bottom: 50px;
        gap: 16px;
    }

    .testimonials-title-ultra {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 0.95rem;
    }

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

    .testimonial-card-ultra {
        padding: 24px;
    }

    .testimonial-card-ultra:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .author-avatar-ultra {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-location {
        font-size: 0.8rem;
    }

    .star-icon {
        width: 18px;
        height: 18px;
    }

    .testimonials-shape-1,
    .testimonials-shape-2,
    .testimonials-shape-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .testimonials-title-ultra {
        font-size: 1.75rem;
    }

    .testimonials-subtitle {
        font-size: 0.9rem;
    }

    .testimonial-card-ultra {
        padding: 20px;
    }

    .testimonial-card-ultra .testimonial-text {
        font-size: 0.95rem;
    }
}

/* Why Choose Us Section */
/* ==========================================
   WHY CHOOSE ULTRA-PREMIUM 2025
   ========================================== */

.why-choose-ultra {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorativo */
.why-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.why-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: whyShapeFloat 20s linear infinite;
}

.why-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10,74,142,0.15), transparent 70%);
    top: -200px;
    left: -150px;
    animation-delay: 0s;
}

.why-shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,140,0,0.12), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
    animation-duration: 18s;
}

.why-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10,74,142,0.1), transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 6s;
    animation-duration: 22s;
}

@keyframes whyShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Partículas flotantes */
.why-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.why-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, rgba(10,74,142,0.4), rgba(255,140,0,0.3));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(10,74,142,0.3);
    animation: whyParticleFloat 15s linear infinite;
}

.why-particle.particle-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.why-particle.particle-2 {
    right: 15%;
    top: 35%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.why-particle.particle-3 {
    left: 20%;
    bottom: 30%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.why-particle.particle-4 {
    right: 25%;
    bottom: 15%;
    animation-delay: 9s;
    animation-duration: 17s;
}

@keyframes whyParticleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) scale(1.3);
        opacity: 0.4;
    }
    90% {
        opacity: 0.2;
    }
}

/* Header con badge */
.section-header-why {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-badge-why {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(10,74,142,0.08), rgba(10,74,142,0.04));
    border-radius: var(--radius-full);
    border: 1px solid rgba(10,74,142,0.15);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.8s linear backwards;
}

.section-badge-why svg {
    width: 16px;
    height: 16px;
}

.badge-glow-why {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10,74,142,0.2), transparent 70%);
    transform: translate(-50%, -50%);
    animation: badgeGlowPulse 3s linear infinite;
}

@keyframes badgeGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.why-title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: whyTitleGradient 6s linear infinite;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes whyTitleGradient {
    0%, 100% {
        opacity: 0.95;
    }
    50% {
        opacity: 1;
    }
}

.why-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s linear 0.2s backwards;
}

/* Grid de features */
.features-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* Tarjetas de features ultra-premium */
.feature-card-ultra {
    position: relative;
    padding: 40px 32px 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    border: 2px solid rgba(10,74,142,0.08);
    box-shadow: 
        0 4px 20px rgba(10,74,142,0.08),
        0 0 40px rgba(10,74,142,0.04);
    transition: all 0.4s linear;
    overflow: visible;
    backdrop-filter: blur(10px);
}

/* Glow background en tarjeta */
.card-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10,74,142,0.1), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s linear;
    pointer-events: none;
}

/* Brillo de borde - DESACTIVADO */
.card-shine {
    display: none;
}

.feature-card-ultra:hover {
    transform: translateY(-12px);
    border-color: rgba(10,74,142,0.2);
    box-shadow: 
        0 12px 40px rgba(10,74,142,0.15),
        0 0 80px rgba(10,74,142,0.08),
        0 0 0 1px rgba(255,255,255,0.5) inset;
}

.feature-card-ultra:hover .card-glow-bg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

/* Número de feature */
.feature-number {
    position: absolute;
    top: -15px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 900;
    color: white;
    box-shadow: 
        0 4px 16px rgba(10,74,142,0.3),
        0 0 0 4px rgba(255,255,255,0.9); /* sombra estática para rendimiento */
    transition: all 0.3s linear;
}

/* OPTIMIZADO: Pseudo-elemento para efecto de pulso (GPU accelerated) */
.feature-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 14px;
    background: radial-gradient(circle, rgba(10,74,142,0.3), transparent 70%);
    z-index: -1;
    animation: numberPulseGlow 2s linear infinite;
    pointer-events: none;
}

.feature-card-ultra:hover .feature-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 24px rgba(255,140,0,0.4),
        0 0 0 4px rgba(255,255,255,1);
}

/* Icono de feature con efectos */
.feature-icon-ultra {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,74,142,0.12), rgba(255,140,0,0.08));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s linear;
}

.feature-card-ultra:hover .icon-bg-circle {
    transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
    background: linear-gradient(135deg, rgba(255,140,0,0.15), rgba(10,74,142,0.1));
}

.feature-icon-ultra svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(10,74,142,0.2));
    transition: all 0.3s linear;
}

.feature-card-ultra:hover .feature-icon-ultra svg {
    fill: var(--accent);
    transform: scale(1.1);
}

/* Sparkles en iconos */
.icon-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,140,0,0.6);
    animation: iconSparkle 3s linear infinite;
    opacity: 0;
}

.icon-sparkle.sparkle-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.icon-sparkle.sparkle-2 {
    bottom: 15%;
    left: 15%;
    animation-delay: 1.5s;
}

@keyframes iconSparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(2);
    }
}

.feature-card-ultra:hover .icon-sparkle {
    animation-play-state: running;
}

/* Contenido de feature */
.feature-content {
    text-align: center;
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.3;
    transition: all 0.3s linear;
}

.feature-card-ultra:hover .feature-title {
    color: var(--accent);
}

.feature-desc {
    color: #495057;
    line-height: 1.7;
    font-size: 0.975rem;
    margin-bottom: 20px;
}

/* Badge informativo */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(10,74,142,0.08), rgba(10,74,142,0.04));
    border-radius: var(--radius-full);
    border: 1px solid rgba(10,74,142,0.15);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s linear;
}

.feature-badge svg {
    width: 14px;
    height: 14px;
}

.feature-card-ultra:hover .feature-badge {
    background: linear-gradient(135deg, rgba(255,140,0,0.15), rgba(255,140,0,0.08));
    border-color: rgba(255,140,0,0.3);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,140,0,0.2);
}

/* Spotlight effect siguiendo el mouse */
.card-spotlight {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,140,0,0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s linear;
    z-index: 1;
}

/* Animación de scroll reveal para tarjetas */
.feature-card-ultra.is-visible {
    animation: featureCardReveal 0.8s linear forwards;
}

@keyframes featureCardReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Efecto de brillo en badges */
.feature-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition: left 0.5s linear;
}

.feature-card-ultra:hover .feature-badge::before {
    left: 100%;
}

/* Efecto de pulso en números */
/* OPTIMIZADO: Solo transform y opacity para GPU acceleration */
@keyframes numberPulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Títulos sin efecto de gradiente - SIMPLIFICADO */
.feature-title {
    position: relative;
    /* Gradiente eliminado para mejor legibilidad */
}

/* Overlay de glassmorphism en hover - REDUCIDO para mejor legibilidad */
.feature-card-ultra::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05)
    );
    opacity: 0;
    transition: opacity 0.4s linear;
    pointer-events: none;
    z-index: 0;
}

.feature-card-ultra:hover::after {
    opacity: 1;
}

/* Z-index para contenido sobre overlay */
.feature-number,
.feature-icon-ultra,
.feature-content {
    position: relative;
    z-index: 2;
}

/* Efecto de resplandor en iconos al aparecer */
.feature-icon-ultra {
    animation: iconGlowAppear 1s linear 0.5s backwards;
}

@keyframes iconGlowAppear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Efecto de onda en el círculo del icono */
.icon-bg-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,74,142,0.3), rgba(255,140,0,0.2));
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.6s linear;
}

.feature-card-ultra:hover .icon-bg-circle::before {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 1;
}

/* Línea decorativa animada en descripción */
.feature-desc {
    position: relative;
    padding-bottom: 20px;
}

.feature-desc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateX(-50%);
    transition: width 0.4s linear;
}

.feature-card-ultra:hover .feature-desc::after {
    width: 80%;
}

/* Efecto de partículas en los badges al hover */
.feature-badge {
    position: relative;
    overflow: hidden;
}

.feature-badge::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.feature-card-ultra:hover .feature-badge::after {
    animation: badgeParticle 1s linear;
}

@keyframes badgeParticle {
    0% {
        left: 0;
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        left: 100%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Efecto de ondulación en toda la tarjeta */
.feature-card-ultra {
    will-change: transform;
}

.feature-card-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.1) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.3s linear;
    pointer-events: none;
    z-index: 1;
}

.feature-card-ultra:hover::before {
    animation: shimmerWave 1.5s linear;
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado */
@keyframes shimmerWave {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Efecto de profundidad 3D en el contenido */
.feature-content {
    transform-style: preserve-3d;
}

.feature-title,
.feature-desc,
.feature-badge {
    transition: transform 0.3s linear;
}

.feature-card-ultra:hover .feature-title {
    transform: translateZ(15px);
}

.feature-card-ultra:hover .feature-desc {
    transform: translateZ(10px);
}

.feature-card-ultra:hover .feature-badge {
    transform: translateZ(20px) translateY(-3px);
}

/* Animación de entrada para el badge del header */
.section-badge-why {
    animation: badgeFloat 3s linear infinite;
}

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

/* Efecto de texto brillante en números */
.feature-number::before {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 0.3s linear;
}

.feature-card-ultra:hover .feature-number::before {
    opacity: 1;
}

/* Animación de resplandor continuo en sparkles */
@keyframes sparkleGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
        box-shadow: 0 0 0 rgba(255,140,0,0);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.5) rotate(90deg);
        box-shadow: 0 0 12px rgba(255,140,0,0.8);
    }
    50% {
        opacity: 1;
        transform: scale(2) rotate(180deg);
        box-shadow: 0 0 16px rgba(255,140,0,1);
    }
    75% {
        opacity: 0.8;
        transform: scale(1.5) rotate(270deg);
        box-shadow: 0 0 12px rgba(255,140,0,0.8);
    }
}

.feature-card-ultra:hover .icon-sparkle {
    animation: sparkleGlow 2s linear infinite;
}

/* Descripción sin efecto typewriter - SIMPLIFICADO para mejor legibilidad */

/* Responsive Why Choose */
@media (max-width: 1024px) {
    .features-grid-ultra {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .why-choose-ultra {
        padding: 70px 0;
    }
    
    .section-header-why {
        margin-bottom: 50px;
    }
    
    .features-grid-ultra {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card-ultra {
        padding: 36px 24px 28px;
    }
    
    .feature-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        top: -12px;
        right: 20px;
    }
    
    .feature-icon-ultra {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-ultra svg {
        width: 36px;
        height: 36px;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-desc {
        font-size: 0.95rem;
    }
    
    /* Ocultar efectos pesados en móvil */
    .why-particles,
    .icon-sparkle,
    .card-spotlight {
        display: none;
    }
    
    .why-shape {
        opacity: 0.03;
    }
    
    .feature-card-ultra:hover {
        transform: translateY(-6px) !important;
    }
    
    /* Deshabilitar efectos 3D en móvil */
    .feature-card-ultra:hover .feature-title,
    .feature-card-ultra:hover .feature-desc,
    .feature-card-ultra:hover .feature-badge {
        transform: none !important;
    }
    
    /* Simplificar animaciones */
    .feature-number {
        animation: none;
    }
    
    .section-badge-why {
        animation: none;
    }
    
    /* Deshabilitar parallax en móvil */
    .why-shape,
    .why-particle {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .why-choose-ultra {
        padding: 60px 0;
    }
    
    .section-header-why {
        margin-bottom: 40px;
    }
    
    .feature-card-ultra {
        padding: 32px 20px 24px;
    }
    
    .feature-number {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        top: -10px;
        right: 16px;
    }
    
    .feature-icon-ultra {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .feature-icon-ultra svg {
        width: 32px;
        height: 32px;
    }
    
    .feature-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .feature-desc {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

/* Emergency Banner - Diseño llamativo y urgente */
/* ==========================================
   EMERGENCY BANNER SUBTLE - VERSIÓN DISCRETA
   ========================================== */

.emergency-banner-subtle {
    background: 
        linear-gradient(135deg, 
            rgba(248, 250, 251, 0.6) 0%, 
            rgba(255, 255, 255, 0.5) 100%
        ),
        radial-gradient(ellipse 800px 200px at 50% 50%, rgba(185, 28, 28, 0.03), transparent);
    backdrop-filter: blur(10px) saturate(120%);
    border-top: 1px solid rgba(185, 28, 28, 0.06);
    border-bottom: 1px solid rgba(185, 28, 28, 0.06);
    color: var(--text-dark);
    padding: clamp(16px, 2.5vw, 22px) 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 1px 3px rgba(185, 28, 28, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Patrón de fondo sutil */
.emergency-banner-subtle::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(185, 28, 28, 0.008) 20px, rgba(185, 28, 28, 0.008) 40px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Background decorativo sutil mejorado */
.emergency-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 400px;
    background: 
        radial-gradient(ellipse, rgba(185, 28, 28, 0.04) 0%, rgba(185, 28, 28, 0.02) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: subtleGlow 8s linear infinite;
    filter: blur(40px);
}

@keyframes subtleGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* Contenedor de contenido simplificado */
.emergency-content-subtle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 3vw, 48px);
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

/* Icono de alerta elegante */
.emergency-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
    flex-shrink: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 251, 0.6)),
        radial-gradient(circle at 30% 30%, rgba(185, 28, 28, 0.08), transparent 70%);
    border-radius: 50%;
    border: 1.5px solid rgba(185, 28, 28, 0.12);
    box-shadow: 
        0 2px 8px rgba(185, 28, 28, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(185, 28, 28, 0.06);
    position: relative;
    overflow: hidden;
}

.emergency-icon-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: iconShine 3s linear infinite;
}

@keyframes iconShine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.emergency-icon {
    width: clamp(20px, 3vw, 24px);
    height: clamp(20px, 3vw, 24px);
    color: #b91c1c;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(185, 28, 28, 0.2));
}

/* Mensaje compacto */
.emergency-message {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
    flex: 1;
    flex-wrap: wrap;
}

/* Texto del mensaje */
.emergency-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 200px;
}

.emergency-title {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b91c1c;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(185, 28, 28, 0.1);
}

.emergency-desc {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 400;
    color: var(--text-medium);
    opacity: 0.8;
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Botón CTA elegante con glassmorphism */
.emergency-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: clamp(12px, 2vw, 14px) clamp(20px, 3vw, 28px);
    background: 
        linear-gradient(135deg, rgba(185, 28, 28, 0.92), rgba(153, 27, 27, 0.96)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 60%);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 
        0 2px 12px rgba(185, 28, 28, 0.2),
        0 1px 4px rgba(185, 28, 28, 0.15),
        0 8px 24px rgba(185, 28, 28, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s linear;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.emergency-cta:hover::before {
    left: 100%;
}

.emergency-cta svg {
    width: clamp(17px, 2.5vw, 20px);
    height: clamp(17px, 2.5vw, 20px);
    flex-shrink: 0;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s linear;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.cta-label {
    font-size: clamp(0.65rem, 1.4vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.cta-phone {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.emergency-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 6px 24px rgba(185, 28, 28, 0.3),
        0 3px 12px rgba(185, 28, 28, 0.2),
        0 12px 36px rgba(185, 28, 28, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    background: 
        linear-gradient(135deg, rgba(185, 28, 28, 1), rgba(153, 27, 27, 1)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 60%);
    border-color: rgba(255, 255, 255, 0.2);
}

.emergency-cta:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.emergency-cta:active {
    transform: translateY(-1px) scale(1);
}

/* Responsive Emergency Banner - Optimizado para todos los dispositivos */
@media (max-width: 992px) {
    .emergency-content-subtle {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .emergency-banner-subtle {
        padding: 14px 0;
    }
    
    .emergency-content-subtle {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .emergency-icon-container {
        width: 40px;
        height: 40px;
    }
    
    .emergency-message {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .emergency-text {
        align-items: center;
        text-align: center;
    }
    
    .emergency-cta {
        width: 100%;
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .emergency-banner-subtle {
        padding: 12px 0;
    }
    
    .emergency-content-subtle {
        gap: 12px;
    }
    
    .emergency-message {
        gap: 10px;
    }
    
    .emergency-cta {
        max-width: 100%;
        padding: 10px 16px;
    }
    
    .cta-content {
        gap: 1px;
    }
}

/* Tablet landscape y desktop pequeño */
@media (min-width: 769px) and (max-width: 1024px) {
    .emergency-content-subtle {
        max-width: 900px;
    }
}

/* Desktop grande */
@media (min-width: 1400px) {
    .emergency-content-subtle {
        max-width: 1200px;
    }
}

/* FAQ Section - Modern Design Premium */
/* ==========================================
   FAQ ULTRA-PREMIUM 2025 - MEJORADO
   ========================================== */

.faq-ultra {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 50%, #f8fafb 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorativo MEJORADO */
.faq-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.faq-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: faqShapeFloat 20s linear infinite;
}

.faq-shape-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(10,74,142,0.15), transparent 70%);
    top: -200px;
    right: -180px;
    animation-delay: 0s;
    filter: blur(60px);
}

.faq-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,140,0,0.12), transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 3s;
    animation-duration: 18s;
    filter: blur(50px);
}

@keyframes faqShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(30px, -40px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translate(-20px, 25px) rotate(240deg) scale(0.95);
    }
}

/* Partículas flotantes FAQ */
.faq-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.faq-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(10,74,142,0.6), transparent);
    border-radius: 50%;
    animation: faqParticleFloat 20s linear infinite;
    box-shadow: 0 0 8px rgba(10,74,142,0.3);
}

.faq-particle:nth-child(1) {
    left: 15%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.faq-particle:nth-child(2) {
    left: 45%;
    top: 35%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.faq-particle:nth-child(3) {
    left: 75%;
    top: 25%;
    animation-delay: 4s;
    animation-duration: 19s;
}

.faq-particle:nth-child(4) {
    left: 25%;
    top: 65%;
    animation-delay: 1s;
    animation-duration: 21s;
}

.faq-particle:nth-child(5) {
    left: 65%;
    top: 70%;
    animation-delay: 3s;
    animation-duration: 17s;
}

.faq-particle:nth-child(6) {
    left: 85%;
    top: 50%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.faq-particle:nth-child(7) {
    left: 35%;
    top: 80%;
    animation-delay: 2.5s;
    animation-duration: 23s;
}

.faq-particle:nth-child(8) {
    left: 55%;
    top: 15%;
    animation-delay: 4.5s;
    animation-duration: 18.5s;
}

@keyframes faqParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -80px) scale(1);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -100px) scale(1.3);
        opacity: 0.7;
    }
}

/* Líneas decorativas animadas */
.faq-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.faq-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10,74,142,0.15), transparent);
    animation: faqLineSlide 15s linear infinite;
}

.faq-line-1 {
    top: 25%;
    width: 300px;
    right: 10%;
    animation-delay: 0s;
}

.faq-line-2 {
    top: 55%;
    width: 400px;
    left: 5%;
    animation-delay: 5s;
}

.faq-line-3 {
    top: 75%;
    width: 250px;
    right: 20%;
    animation-delay: 10s;
}

@keyframes faqLineSlide {
    0%, 100% {
        transform: translateX(0) scaleX(1);
        opacity: 0;
    }
    50% {
        transform: translateX(100px) scaleX(1.5);
        opacity: 1;
    }
}

/* Header */
.faq-header-ultra {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.faq-title-ultra {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-title-ultra .title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.faq-title-ultra .title-primary {
    color: var(--primary);
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* Items Ultra-Premium */
.faq-item-ultra {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.98) 0%,
        rgba(248,250,251,0.98) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(10,74,142,0.08);
    position: relative;
    transition: all 0.5s linear;
    box-shadow: 
        0 4px 16px rgba(10,74,142,0.05),
        0 8px 32px rgba(10,74,142,0.03),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Efecto hover mejorado */
.faq-item-ultra::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10,74,142,0.05), transparent);
    transition: left 0.6s linear;
    pointer-events: none;
}

.faq-item-ultra:hover::after {
    left: 100%;
}

/* Glow effect mejorado */
.faq-item-ultra .faq-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10,74,142,0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s linear;
    pointer-events: none;
    animation: faqGlowPulse 3s linear infinite;
}

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

.faq-item-ultra.active .faq-glow,
.faq-item-ultra:hover .faq-glow {
    opacity: 1;
}

/* Accent bar */
.faq-item-ultra::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s linear;
}

.faq-item-ultra.active::before {
    transform: scaleY(1);
}

.faq-item-ultra:hover,
.faq-item-ultra.active {
    border-color: rgba(10,74,142,0.15);
    box-shadow: 
        0 8px 32px rgba(10,74,142,0.1),
        0 16px 48px rgba(10,74,142,0.06),
        0 0 0 1px rgba(10,74,142,0.08),
        inset 0 1px 0 rgba(255,255,255,1);
    transform: translateY(-4px);
}

/* Question Button Mejorado */
.faq-question-btn-ultra {
    width: 100%;
    text-align: left;
    padding: 24px 28px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s linear;
    position: relative;
}

/* Efecto de brillo al hover */
.faq-question-btn-ultra::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    transform: translateY(-50%);
    transition: height 0.4s linear;
    border-radius: 2px;
}

.faq-question-btn-ultra:hover::before,
.faq-item-ultra.active .faq-question-btn-ultra::before {
    height: 60%;
}

.faq-item-ultra.active .faq-question-btn-ultra {
    color: var(--primary);
}

.faq-question-btn-ultra:hover {
    color: var(--primary);
    padding-left: 32px;
}

/* Question Icon Mejorado */
.question-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(10,74,142,0.1), rgba(10,74,142,0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s linear;
    box-shadow: 0 2px 8px rgba(10,74,142,0.1);
    position: relative;
    overflow: hidden;
}

/* Efecto shimmer en el icono */
.question-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s linear;
}

.faq-question-btn-ultra:hover .question-icon::after,
.faq-item-ultra.active .question-icon::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.question-icon svg {
    fill: var(--primary);
    opacity: 0.8;
    transition: all 0.3s linear;
    position: relative;
    z-index: 1;
}

.faq-item-ultra.active .question-icon,
.faq-question-btn-ultra:hover .question-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #1c5d9f 100%);
    box-shadow: 
        0 4px 16px rgba(10,74,142,0.3),
        0 0 30px rgba(10,74,142,0.2);
    transform: scale(1.1) rotate(8deg);
}

.faq-item-ultra.active .question-icon svg,
.faq-question-btn-ultra:hover .question-icon svg {
    fill: var(--white);
    opacity: 1;
    transform: scale(1.1);
}

/* Question Text */
.question-text {
    flex: 1;
}

/* Dropdown Icon Mejorado */
.faq-icon-ultra {
    width: 28px;
    height: 28px;
    fill: var(--primary);
    transition: all 0.4s linear;
    flex-shrink: 0;
    background: rgba(10,74,142,0.08);
    border-radius: 50%;
    padding: 6px;
    position: relative;
}

/* Pulso animado en el ícono */
.faq-icon-ultra::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: all 0.4s linear;
}

.faq-question-btn-ultra:hover .faq-icon-ultra::before,
.faq-item-ultra.active .faq-icon-ultra::before {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.3;
}

.faq-item-ultra.active .faq-icon-ultra {
    transform: rotate(180deg);
    background: var(--primary);
    fill: var(--white);
    box-shadow: 
        0 4px 12px rgba(10,74,142,0.3),
        0 0 20px rgba(10,74,142,0.2);
}

.faq-question-btn-ultra:hover .faq-icon-ultra {
    background: rgba(10,74,142,0.15);
    transform: scale(1.1);
}

/* Answer Container Mejorado */
.faq-answer-ultra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s linear;
    position: relative;
}

/* Borde superior animado cuando se abre */
.faq-answer-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #1c5d9f, var(--accent));
    transform: scaleX(0);
    transition: transform 0.6s linear;
    transform-origin: left;
}

.faq-item-ultra.active .faq-answer-ultra::before {
    transform: scaleX(1);
}

.faq-item-ultra.active .faq-answer-ultra {
    max-height: 600px;
}

/* Answer Content Mejorado */
.faq-answer-content-ultra {
    padding: 20px 28px 24px 84px;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    display: flex;
    align-items: start;
    gap: 12px;
    animation: fadeInAnswer 0.6s linear forwards;
}

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

/* Checkmark Icon Mejorado */
.answer-checkmark {
    flex-shrink: 0;
    fill: var(--accent);
    margin-top: 2px;
    filter: drop-shadow(0 2px 4px rgba(255,140,0,0.3));
    animation: checkmarkPop 0.6s linear forwards;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Responsive Tablet */
@media (max-width: 1024px) {
    .faq-ultra {
        padding: 80px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 800px;
    }

    .faq-title-ultra {
        font-size: 2.5rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question-btn-ultra {
        font-size: 1.05rem;
    }

    .faq-answer-content-ultra {
        font-size: 1rem;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .faq-ultra {
        padding: 60px 0;
    }

    .faq-header-ultra {
        margin-bottom: 50px;
        gap: 16px;
    }

    .faq-title-ultra {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 0.95rem;
    }

    .faq-question-btn-ultra {
        padding: 20px 20px;
        font-size: 1rem;
        gap: 12px;
    }

    .faq-question-btn-ultra:hover {
        padding-left: 20px;
    }

    .question-icon {
        width: 36px;
        height: 36px;
    }

    .faq-icon-ultra {
        width: 24px;
        height: 24px;
    }

    .faq-answer-content-ultra {
        padding: 18px 20px 20px 68px;
        font-size: 0.95rem;
        gap: 10px;
    }

    .answer-checkmark {
        width: 16px;
        height: 16px;
    }

    .faq-shape-1,
    .faq-shape-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .faq-title-ultra {
        font-size: 1.75rem;
    }

    .faq-subtitle {
        font-size: 0.9rem;
    }

    .faq-question-btn-ultra {
        padding: 18px 16px;
        font-size: 0.95rem;
        gap: 10px;
    }

    .question-icon {
        width: 32px;
        height: 32px;
    }

    .faq-answer-content-ultra {
        padding: 16px 16px 18px 58px;
        font-size: 0.9rem;
    }
}

/* Focus Visible - Accesibilidad */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

a {
    text-decoration: none;
}

a:hover, a:focus-visible {
    text-decoration: underline;
}

.btn:hover, .btn:focus-visible {
    text-decoration: none;
}

/* ===================================
   Optimizaciones Móvil-First
   =================================== */
@media (max-width: 768px) {
    /* Container más ajustado en móvil */
    .container {
        padding: 0 16px;
    }
    
    /* Header más compacto */
    .header-content {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .header-cta .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .header-cta .btn span {
        display: none;
    }
    
    .header-cta .btn .icon {
        margin: 0;
    }
    
    /* Hero más compacto y legible */
    .hero {
        padding: 24px 0 40px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
        margin-bottom: 16px;
    }
    
    .hero h1 {
        font-size: 1.85rem;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .hero-cta {
        margin-top: 20px;
        gap: 10px;
    }
    
    .btn-hero {
        padding: 16px 28px;
        font-size: 1.05rem;
    }
    
    .hero-trust {
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    /* Secciones con padding optimizado */
    .benefits {
        padding: 24px 0;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Grids a columna única */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* Botones más grandes y táctiles */
    .problem-card .btn {
        width: 100%;
        padding: 14px 24px;
    }
    
    /* Footer compacto */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 48px 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Optimizaciones para pantallas pequeñas (< 375px) */
@media (max-width: 374px) {
    html {
        font-size: 15px;
    }
    
    .hero h1 {
        font-size: 1.65rem;
    }
    
    .btn-hero {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Optimizaciones para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .problems-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Performance: Reducir animaciones en móvil si el usuario prefiere */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   Loading States & Skeleton Screens
   =================================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* OPTIMIZADO: transform en lugar de background-position */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ===================================
   Parallax Decorative Elements
   =================================== */
.parallax-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.parallax-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,74,142,0.05), transparent 70%);
    will-change: transform;
}

.parallax-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -50px;
    animation: float 20s linear infinite;
}

.parallax-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -30px;
    animation: float 15s linear infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.shadow-glow-primary {
    box-shadow: 0 4px 20px rgba(10,74,142,0.3);
}

.shadow-glow-accent {
    box-shadow: 0 4px 20px rgba(255,160,0,0.4);
}

/* ===================================
   Accessibility Improvements
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-to-content:focus {
    top: 0;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .mobile-sticky-cta,
    .emergency-banner,
    .btn,
    .scroll-indicator {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
    
    .hero,
    .cta-section {
        background: white !important;
        color: black !important;
    }
}

/* ===================================
   OPTIMIZACIONES DE PERFORMANCE PARA SCROLL
   Mejora dramática en Chrome/móviles
   =================================== */

/* Habilitar aceleración GPU en elementos clave */
.header,
.hero,
.scroll-progress,
.benefit-item-ultra,
.stat-card-ultra,
.trust-badge-ultra,
.faq-item-ultra,
.footer {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Reducir efectos pesados en dispositivos móviles y tablets */
@media (max-width: 1024px) {
    
    /* Deshabilitar backdrop-filter (muy costoso en móvil) */
    .header,
    .benefit-item-ultra,
    .stat-card-ultra,
    .trust-badge-ultra,
    .faq-item-ultra,
    .cta-card-ultra {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Hacer backgrounds más opacos para compensar */
    .header {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    /* Mobile menu: Mantener visible con fondo sólido (sin backdrop-filter) */
    .mobile-menu {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    .benefit-item-ultra {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    .stat-card-ultra {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 250, 251, 0.98) 100%) !important;
    }
    
    .trust-badge-ultra {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    .faq-item-ultra {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 250, 251, 0.98) 100%) !important;
    }
    
    /* Ocultar partículas decorativas (no se notan en móvil) */
    .faq-particles,
    .faq-particle,
    .footer-particles,
    .footer-particle,
    .footer-wave,
    .footer-orbital-lights,
    .orbital-light,
    .how-particles,
    .particle,
    .hero-particles,
    .hero-particle {
        display: none !important;
    }
    
    /* PAUSAR solo animaciones infinitas pesadas (mantener contenido visible) */
    .faq-shape,
    .footer-shape,
    .how-shape,
    .hero-shape,
    .scroll-indicator {
        animation: none !important;
    }
    
    /* Pausar animaciones de background (muy costosas) */
    .hero,
    .benefits-ultra::before,
    .social-proof-ultra::before,
    .how-it-works-ultra::before {
        animation: none !important;
        background-size: 100% 100% !important;
    }
    
    /* PERMITIR animaciones de burbujas de agua en hero, CTA y footer (son ligeras y visuales) */
    .hero-water-effect::before {
        animation: waterDrop1 8s ease-in-out infinite !important;
    }
    
    .hero-water-effect::after {
        animation: waterDrop2 10s ease-in-out 2s infinite !important;
    }
    
    .cta-ultra::before {
        animation: ctaWaterDrop1 9s ease-in-out infinite !important;
    }
    
    .cta-ultra::after {
        animation: ctaWaterDrop2 11s ease-in-out 3s infinite !important;
    }
    
    .footer::before {
        animation: footerWaterDrop1 10s ease-in-out 1s infinite !important;
    }
    
    .footer::after {
        animation: footerWaterDrop2 12s ease-in-out 4s infinite !important;
    }
    
    /* Eliminar filters completamente en móvil (muy costosos) */
    .question-icon,
    .stat-icon-ultra,
    .benefit-icon-ultra,
    .seal-icon,
    .badge-icon,
    .emergency-icon,
    * {
        filter: none !important;
        -webkit-filter: none !important;
    }
    
    /* Simplificar sombras a UNA sola capa */
    .benefit-item-ultra,
    .stat-card-ultra,
    .faq-item-ultra,
    .trust-badge-ultra,
    .cta-card-ultra,
    .btn,
    .mobile-sticky-cta,
    .header {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Deshabilitar animaciones de líneas decorativas */
    .faq-lines,
    .faq-line,
    .footer-lines,
    .footer-line {
        display: none !important;
    }
    
    /* Reducir complejidad de transiciones */
    * {
        transition-duration: 0.15s !important;
    }
    
    /* Deshabilitar transforms complejos en hover */
    .benefit-item-ultra:hover,
    .stat-card-ultra:hover,
    .cta-card-ultra:hover {
        transform: none !important;
    }
    
    /* Simplificar gradientes a colores sólidos */
    .stat-card-ultra,
    .faq-item-ultra {
        background: rgba(255, 255, 255, 0.98) !important;
    }
}

/* Optimizaciones adicionales solo para móviles pequeños */
@media (max-width: 768px) {
    
    /* Eliminar TODOS los transforms (muy costosos) */
    .benefit-item-ultra:hover,
    .stat-card-ultra:hover,
    .faq-item-ultra:hover,
    .btn:hover,
    .cta-button:hover {
        transform: none !important;
    }
    
    /* Hacer gradientes estáticos */
    .hero,
    .footer,
    .benefits-ultra,
    .social-proof-ultra,
    .how-it-works-ultra {
        background-size: 100% 100% !important;
        animation: none !important;
    }
    
    /* PERMITIR animaciones de burbujas de agua en hero, CTA y footer (son ligeras y visuales) */
    .hero-water-effect::before {
        animation: waterDrop1 8s ease-in-out infinite !important;
    }
    
    .hero-water-effect::after {
        animation: waterDrop2 10s ease-in-out 2s infinite !important;
    }
    
    .cta-ultra::before {
        animation: ctaWaterDrop1 9s ease-in-out infinite !important;
    }
    
    .cta-ultra::after {
        animation: ctaWaterDrop2 11s ease-in-out 3s infinite !important;
    }
    
    .footer::before {
        animation: footerWaterDrop1 10s ease-in-out 1s infinite !important;
    }
    
    .footer::after {
        animation: footerWaterDrop2 12s ease-in-out 4s infinite !important;
    }
    
    /* Transiciones instantáneas */
    * {
        transition: none !important;
    }
    
    /* Simplificar sombras aún más */
    * {
        box-shadow: none !important;
    }
    
    /* Solo mantener sombras esenciales */
    .header,
    .mobile-sticky-cta {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
    }
}

/* Optimización para scroll suave nativo */
html {
    scroll-behavior: auto; /* smooth causa lag en Chrome */
    -webkit-overflow-scrolling: touch;
}

/* Mejorar rendering de texto durante scroll */
body {
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
}

/* Forzar compositing en layers para mejor performance */
.hero,
.how-it-works-ultra,
.faq-ultra,
.footer,
.social-proof-ultra {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ===================================
   OPTIMIZACIONES ADICIONALES NIVEL 2
   Para ganar el 50% restante
   =================================== */

/* Prevenir over-scroll bounce en Chrome */
body {
    overscroll-behavior-y: none;
}

/* Optimizar rendering de secciones con contain */
.hero,
.benefits-ultra,
.social-proof-ultra,
.how-it-works-ultra,
.faq-ultra,
.footer {
    contain: layout style;
}

/* Lazy rendering de imágenes */
img {
    content-visibility: auto;
}

/* Reducir repaints en header fijo */
.header {
    will-change: transform;
    contain: strict;
}

/* Desactivar pointer events en elementos decorativos durante scroll */
@media (max-width: 1024px) {
    .faq-particles,
    .footer-particles,
    .how-particles,
    .hero-particles {
        pointer-events: none !important;
    }
}

/* Optimizar rendering de texto */
h1, h2, h3, h4, h5, h6, p, span, a {
    text-rendering: optimizeSpeed;
}

/* Forzar hardware acceleration global en móvil */
@media (max-width: 1024px) {
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
/* ===================================
   OPTIMIZACIONES NIVEL 3 - SCROLL EXTREMO
   Eliminar trabado de scroll definitivamente
   =================================== */

/* Simplificar header sticky (principal culpable del lag) */
@media (max-width: 1024px) {
    .scroll-progress {
        display: none !important;
    }
    
    .header,
    .header-modern {
        position: absolute !important;
        will-change: auto !important;
    }
}

/* Reducir complejidad de rendering en secciones */
@media (max-width: 1024px) {
    section,
    .hero,
    .benefits-ultra,
    .social-proof-ultra,
    .how-it-works-ultra,
    .faq-ultra,
    .cta-section,
    .footer {
        will-change: auto !important;
        contain: none !important;
    }
}

/* Eliminar opacity transitions (muy costosas) */
@media (max-width: 1024px) {
    * {
        transition-property: transform, background-color, color !important;
    }
}

/* Deshabilitar hover en dispositivos t�ctiles */
@media (hover: none) {
    *:hover {
        transform: none !important;
        box-shadow: inherit !important;
    }
}

/* Forzar rendering m�s simple en Chrome m�vil */
@media (max-width: 1024px) {
    body {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

/* OPTIMIZACIONES BASADAS EN ANÁLISIS */
@media (max-width: 1024px) {
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        animation-duration: 0s !important;
        filter: none !important;
        box-shadow: none !important;
    }
    .header, .mobile-sticky-cta, .btn {
        box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   HEADER MODERN - Unificado desde header-modern.css
   ═══════════════════════════════════════════════════════════════ */

/* ===================================
   HEADER MODERN V2 - PREMIUM DESIGN 2025
   Glassmorphism Blanco Translúcido Mejorado
   =================================== */

.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(10, 74, 142, 0.1);
    box-shadow: 
        0 4px 20px rgba(10, 74, 142, 0.15),
        0 0 0 1px rgba(10, 74, 142, 0.05);
    transition: all 0.3s ease;
    animation: slideDown 0.5s ease backwards;
    overflow: hidden;
}

/* Header V2 Optimizado - Colores Cohesivos */
.header-modern-v2 {
    background: var(--glass-bg-light) !important;
    backdrop-filter: var(--blur-medium) saturate(180%) brightness(102%);
    -webkit-backdrop-filter: var(--blur-medium) saturate(180%) brightness(102%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 
        0 1px 0 0 var(--glass-border-light) inset,
        var(--shadow-premium),
        var(--shadow-soft),
        0 0 0 1px var(--glass-border);
    position: relative;
}

/* Efecto cristal adicional */
.header-modern-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 20%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(255, 255, 255, 0.8) 80%, 
        transparent 100%
    );
    z-index: 1;
}

/* Efecto de scroll mejorado */
.header-modern-v2.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(40px) saturate(220%) brightness(108%);
    -webkit-backdrop-filter: blur(40px) saturate(220%) brightness(108%);
    box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 40px rgba(10, 74, 142, 0.12),
        0 6px 20px rgba(10, 74, 142, 0.06),
        0 0 0 1px rgba(10, 74, 142, 0.05);
    transform: translateY(-1px);
}

/* Decoración de agua simplificada */
.water-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(10, 74, 142, 0.3) 20%, 
        rgba(255, 160, 0, 0.4) 50%, 
        rgba(10, 74, 142, 0.3) 80%, 
        transparent 100%
    );
    animation: waterFlow 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes waterFlow {
    0%, 100% { 
        transform: translateX(-100px);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(100px);
        opacity: 1;
    }
}

/* Water drops effect - Decorative shower theme */
.water-drops-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    /* Optimización móvil: Reduce impacto en scroll */
    transform: translateZ(0);
    will-change: auto;
}

.water-drop {
    position: absolute;
    top: 0; /* OPTIMIZADO: posición fija, animación usa transform */
    width: 2.5px;
    height: 35px;
    background: linear-gradient(
        180deg,
        rgba(10, 74, 142, 0.8) 0%,
        rgba(10, 74, 142, 0.6) 30%,
        rgba(10, 74, 142, 0.4) 70%,
        transparent 100%
    );
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: dropFall 1.2s linear infinite;
    opacity: 0;
    filter: blur(0.2px);
    box-shadow: 
        0 0 2px rgba(10, 74, 142, 0.3),
        inset 0 0 1px rgba(255, 255, 255, 0.4);
    will-change: transform, opacity; /* GPU acceleration hint */
    /* Optimización móvil: Prevenir interferencia con scroll */
    transform: translateZ(0);
    pointer-events: none !important;
}

/* Variaciones de tamaño para más realismo - gotas más delgadas */
.water-drop:nth-child(odd) {
    width: 2px;
    height: 30px;
    animation-duration: 1s;
}

.water-drop:nth-child(3n) {
    width: 3px;
    height: 40px;
    animation-duration: 1.4s;
}

.water-drop:nth-child(2n) {
    width: 2.5px;
    height: 38px;
    animation-duration: 1.3s;
}

.water-drop:nth-child(5n) {
    width: 2.2px;
    height: 32px;
    animation-duration: 1.1s;
}

/* OPTIMIZADO: Solo transform y opacity para GPU acceleration */
@keyframes dropFall {
    0% {
        transform: translateY(-40px) scaleY(0.8);
        opacity: 0;
    }
    3% {
        opacity: 1;
    }
    10% {
        transform: translateY(10vh) scaleY(1.2);
    }
    50% {
        opacity: 0.85;
        transform: translateY(50vh) scaleY(1.4);
    }
    97% {
        opacity: 0.6;
        transform: translateY(97vh) scaleY(1.6);
    }
    100% {
        transform: translateY(100vh) scaleY(1.8);
        opacity: 0;
    }
}

/* Efecto de splash rápido - estilo ducha */
.water-drop::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(10, 74, 142, 0.6), rgba(10, 74, 142, 0.25) 50%, transparent 75%);
    border-radius: 50%;
    opacity: 0;
    animation: splash 1.2s linear infinite;
}

.water-drop:nth-child(odd)::after {
    animation-duration: 1s;
}

.water-drop:nth-child(3n)::after {
    animation-duration: 1.4s;
}

.water-drop:nth-child(2n)::after {
    animation-duration: 1.3s;
}

.water-drop:nth-child(5n)::after {
    animation-duration: 1.1s;
}

@keyframes splash {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    85% {
        opacity: 0;
    }
    90% {
        opacity: 0.7;
        transform: translateX(-50%) scale(0.7);
    }
    96% {
        opacity: 0.4;
        transform: translateX(-50%) scale(1.3);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(1.8);
    }
}

/* Background water pattern - más visible */
.header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(10, 74, 142, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(10, 74, 142, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 30%, rgba(10, 74, 142, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Header con scroll - efecto más compacto */
.header-modern.scrolled {
    background: rgba(240, 248, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 
        0 4px 30px rgba(10, 74, 142, 0.15),
        0 0 0 1px rgba(10, 74, 142, 0.12);
}

.header-content-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0;
    gap: 1rem;
}

/* Header content enhanced */
.header-content-enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1.5rem;
}

/* Logo mejorado - Ultra Elegante */
.logo-enhanced {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(10, 74, 142, 0.08);
}

.logo-enhanced:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(10, 74, 142, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(10, 74, 142, 0.1);
}

.logo-enhanced .logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.logo-enhanced .logo-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--logo-elegant) !important;
    white-space: nowrap;
    display: inline-block;
    text-shadow: 0 0 20px rgba(30, 136, 229, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-enhanced:hover .logo-brand {
    color: var(--logo-elegant-dark) !important;
    text-shadow: 0 0 25px rgba(13, 71, 161, 0.6);
}

.logo-enhanced .logo-domain {
    color: var(--logo-elegant) !important;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(30, 136, 229, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-enhanced:hover .logo-domain {
    color: var(--logo-elegant-dark) !important;
    text-shadow: 0 0 20px rgba(13, 71, 161, 0.6);
}

.logo-enhanced .logo-tagline {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    opacity: 0.7;
    line-height: 1;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-enhanced:hover .logo-tagline {
    opacity: 1;
    color: var(--accent-dark);
}

/* Mega navegación - Colores Optimizados */
.mega-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: var(--glass-bg);
    padding: 0.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
}

.nav-section {
    position: relative;
}

.nav-link-enhanced {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.0);
    border: 1px solid transparent;
    overflow: hidden;
}

.nav-link-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(10, 74, 142, 0.05) 50%, 
        transparent 100%
    );
    transition: left 0.5s ease;
    z-index: -1;
}

.nav-link-enhanced:hover::before {
    left: 100%;
}

.nav-link-enhanced:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    border-color: rgba(10, 74, 142, 0.1);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(10, 74, 142, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: var(--glass-bg-light);
    backdrop-filter: var(--blur-medium) saturate(160%);
    -webkit-backdrop-filter: var(--blur-medium) saturate(160%);
    box-shadow: 
        var(--shadow-ultra),
        var(--shadow-premium),
        0 0 0 1px var(--glass-border-light) inset;
    border-radius: 16px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    z-index: 1001;
}

.nav-section:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    backdrop-filter: var(--blur-medium);
    -webkit-backdrop-filter: var(--blur-medium);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.dropdown-link:last-child {
    margin-bottom: 0;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-link:hover::before {
    transform: scaleY(1);
}

.dropdown-link:hover {
    background: rgba(10, 74, 142, 0.03);
    border-color: rgba(10, 74, 142, 0.08);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(10, 74, 142, 0.05);
}

.dropdown-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.dropdown-title {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    font-size: 0.9rem;
}

.dropdown-desc {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
}

/* Info cluster - Colores Cohesivos */
.header-info-cluster {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 1.25rem;
    background: var(--glass-bg-light);
    backdrop-filter: var(--blur-light) saturate(140%);
    -webkit-backdrop-filter: var(--blur-light) saturate(140%);
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--shadow-soft),
        0 0 0 1px var(--glass-border-light) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header-info-cluster::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
    );
    transition: left 1.5s ease;
}

.header-info-cluster:hover::before {
    left: 100%;
}

.header-info-cluster:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border);
    transform: translateY(-2px);
    box-shadow: 
        var(--shadow-premium),
        0 0 0 1px var(--glass-border-light) inset;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    color: #ffd700;
    font-size: 0.8rem;
    letter-spacing: -1px;
}

.score {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.active {
    background: #25d366;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
}

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

/* CTAs diferenciados - Ultra Premium */
.cta-cluster {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-phone-compact {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(10, 74, 142, 0.15);
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(10, 74, 142, 0.08);
}

.btn-phone-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(10, 74, 142, 0.1) 50%, 
        transparent 100%
    );
    transition: left 0.6s ease;
}

.btn-phone-compact:hover::before {
    left: 100%;
}

.btn-phone-compact:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(10, 74, 142, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 74, 142, 0.15);
    color: var(--primary-dark);
}

.btn-whatsapp-primary {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 
        0 6px 20px rgba(37, 211, 102, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-whatsapp-primary:hover::before {
    left: 100%;
}

.btn-whatsapp-primary:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0da35b 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(37, 211, 102, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
    transition: padding 0.3s linear;
    position: relative;
    z-index: 1;
}

.header-modern.scrolled .header-content-modern {
    padding: 0.5rem 0;
}

/* Logo Modern con icon + text */
.logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s linear;
}

.logo-modern:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--accent) 0%, #ffb300 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 3px 12px rgba(255, 160, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s linear;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s;
}

.logo-modern:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 
        0 6px 24px rgba(10, 74, 142, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.logo-modern:hover .logo-icon::before {
    left: 100%;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.logo-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ff8c00;
    letter-spacing: -0.02em;
    text-shadow: none;
}

.logo-domain {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ff8c00;
    letter-spacing: -0.02em;
    text-shadow: none;
}

/* Menú de Navegación */
.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: all 0.3s linear;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s linear;
}

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

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

/* Trust Badge en Header */
.header-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 160, 0, 0.15);
    border: 1px solid rgba(255, 160, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 160, 0, 0.2);
    transition: all 0.3s linear;
    position: relative;
    overflow: hidden;
}

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

.header-trust-badge:hover::before {
    left: 100%;
}

.trust-badge-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(255, 160, 0, 0.3));
    animation: pulse 2s linear infinite;
}

.trust-badge-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.trust-badge-text strong {
    color: var(--accent);
    font-size: 1.05em;
    font-weight: 800;
}

/* CTA Buttons Modern */
.header-cta-modern {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.3s linear;
    position: relative;
    overflow: hidden;
}

.btn-icon-wrapper {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s linear;
}

.header-btn .icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s linear;
}

.btn-label {
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}

/* Phone Button */
.header-btn-phone {
    background: linear-gradient(135deg, var(--primary) 0%, #0a5da0 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(10, 74, 142, 0.3);
}

.header-btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10, 74, 142, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-btn-phone:hover .btn-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.header-btn-phone:hover .icon {
    animation: shake 0.5s linear;
}

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

/* WhatsApp Button */
.header-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.header-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-btn-whatsapp:hover .btn-icon-wrapper {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.header-btn-whatsapp:hover .icon {
    animation: bounce 0.6s linear;
}

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

/* Animaciones */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
        background: rgba(255, 255, 255, 0.85);
    }
    to {
        transform: translateY(0);
        opacity: 1;
        background: rgba(255, 255, 255, 0.85);
    }
}

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

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content-modern {
        gap: 0.5rem;
        padding: 0.625rem 0;
    }
    
    .header-modern.scrolled .header-content-modern {
        padding: 0.5rem 0;
    }
    
    /* Asegurar que las gotas de agua funcionen en móvil */
    .water-drops-container {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateZ(0);
    }
    
    .water-drop {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        /* Menor intensidad en móvil para mejor rendimiento */
        width: 2px;
        height: 28px;
        filter: blur(0.1px);
    }
    
    /* Ocultar logo icon en móvil */
    .logo-icon-desktop {
        display: none;
    }
    
    .logo-modern {
        gap: 0;
    }
    
    .logo-brand,
    .logo-domain {
        font-size: 1.1rem;
    }
    
    /* Ocultar menú de navegación en móvil */
    .header-nav {
        display: none;
    }
    
    /* Trust badge oculto en móvil para ahorrar espacio */
    .header-trust-badge {
        display: none;
    }
    
    .header-cta-modern {
        gap: 5px;
        margin-left: auto;
    }
    
    .header-btn {
        padding: 7px 10px;
        gap: 5px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .btn-icon-wrapper {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }
    
    .header-btn .icon {
        width: 14px;
        height: 14px;
    }
    
    .btn-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    /* En móviles muy pequeños, solo iconos */
    @media (max-width: 374px) {
        .header-btn {
            padding: 8px;
        }
        
        .btn-label {
            display: none;
        }
        
        .btn-icon-wrapper {
            width: 32px;
            height: 32px;
        }
        
        .header-btn .icon {
            width: 18px;
            height: 18px;
        }
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-trust-badge {
        padding: 6px 12px;
    }
    
    .trust-badge-text {
        font-size: 0.85rem;
    }
    
    .trust-badge-icon {
        width: 18px;
        height: 18px;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .header-content-modern {
        gap: 1.25rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .logo-brand,
    .logo-domain {
        font-size: 1.35rem;
    }
    
    .header-btn {
        padding: 9px 16px;
    }
    
    .btn-icon-wrapper {
        width: 30px;
        height: 30px;
    }
    
    .header-btn .icon {
        width: 17px;
        height: 17px;
    }
    
    .btn-label {
        font-size: 0.9rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .header-modern {
        background: rgba(18, 18, 18, 0.85);
        border-bottom-color: rgba(255, 255, 255, 0.1);
        box-shadow: 
            0 2px 20px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    
    .header-modern.scrolled {
        background: rgba(18, 18, 18, 0.95);
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .trust-badge-text {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .header-modern {
        animation: none;
    }
    
    .logo-icon::before,
    .header-trust-badge::before {
        display: none;
    }
    
    .trust-badge-icon {
        animation: none;
    }
    
    .header-btn:hover .icon {
        animation: none;
    }
}

/* ===================================
   MOBILE MENU - PREMIUM DESIGN 2025
   =================================== */

/* Hamburger Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(10, 74, 142, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s linear;
    position: relative;
    z-index: 1001;
    gap: 5px;
    padding: 0;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(10, 74, 142, 0.15);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Área de controles móviles */
.mobile-controls-area {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

/* Iconos de Contacto Móvil */
.mobile-contact-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.mobile-contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-contact-icon svg {
    width: 22px;
    height: 22px;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Icono de teléfono */
.phone-icon {
    background: linear-gradient(135deg, #2196F3 0%, #1E88E5 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.phone-icon svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.phone-icon:hover {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.5);
}

/* Icono de WhatsApp */
.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.whatsapp-icon:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #128C7E 100%);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* Efecto de pulso sutil */
.mobile-contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.mobile-contact-icon:active::before {
    transform: scale(1);
}

/* Mobile Menu Overlay V2 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s linear;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Content Enhanced - Ultra Fluido */
.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(240, 248, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.88) 100%
    );
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: -10px 0 40px rgba(10, 74, 142, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s linear;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu-content-enhanced {
    background: linear-gradient(180deg, 
        var(--glass-bg) 0%, 
        var(--glass-bg-light) 100%
    );
    backdrop-filter: var(--blur-heavy) saturate(180%) brightness(103%);
    -webkit-backdrop-filter: var(--blur-heavy) saturate(180%) brightness(103%);
    box-shadow: 
        var(--shadow-ultra),
        var(--shadow-premium),
        0 0 0 1px var(--glass-border-light) inset;
    border-left: 1px solid var(--glass-border);
}

/* Header compacto - Premium */
.mobile-header-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    background: var(--glass-bg-light);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: var(--blur-light) saturate(150%);
    -webkit-backdrop-filter: var(--blur-light) saturate(150%);
    box-shadow: var(--shadow-soft);
}

.logo-mobile {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--logo-elegant) !important;
    text-shadow: 0 0 15px rgba(30, 136, 229, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-mobile:hover {
    color: var(--logo-elegant-dark) !important;
    text-shadow: 0 0 20px rgba(13, 71, 161, 0.6);
    transform: scale(1.02);
}

.close-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(10, 74, 142, 0.08) 0%,
        rgba(10, 74, 142, 0.12) 100%
    );
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(10, 74, 142, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.close-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
    transform: scale(0);
    transition: transform 0.6s ease;
}

.close-btn:hover::before {
    transform: scale(1);
}

.close-btn svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.close-btn:hover {
    background: linear-gradient(135deg, 
        rgba(10, 74, 142, 0.15) 0%,
        rgba(10, 74, 142, 0.25) 100%
    );
    transform: rotate(180deg) scale(1.1);
    box-shadow: 
        0 4px 15px rgba(10, 74, 142, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.close-btn:active {
    transform: rotate(180deg) scale(0.95);
    transition: all 0.15s ease;
}

/* Navegación por categorías */
.mobile-nav-categories {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-category {
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.15rem;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, 
        var(--primary-color) 0%,
        var(--accent) 50%,
        transparent 100%
    ) 1;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 8px rgba(10, 74, 142, 0.3);
}

.category-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 74, 142, 0.05);
}

.category-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, 
        var(--primary-color) 0%,
        var(--accent) 100%
    );
    transform: translateX(-5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(10, 74, 142, 0.4);
    border-radius: 0 3px 3px 0;
}

.category-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(10, 74, 142, 0.1) 50%, 
        transparent 100%
    );
    transition: left 0.8s ease;
}

.category-link:hover::before {
    transform: translateX(0);
    box-shadow: 0 0 20px rgba(10, 74, 142, 0.6);
}

.category-link:hover::after {
    left: 100%;
}

.category-link:hover {
    background: linear-gradient(135deg, 
        rgba(10, 74, 142, 0.08) 0%,
        rgba(255, 255, 255, 0.6) 100%
    );
    backdrop-filter: blur(20px) saturate(150%);
    transform: translateX(10px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(10, 74, 142, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.category-icon {
    font-size: 1.2rem;
    width: 32px;
    text-align: center;
}

.category-info {
    flex: 1;
}

.category-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.category-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Quick Actions */
.mobile-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem;
    margin-top: 0;
}

.action-card {
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-card:hover::before {
    opacity: 1;
}

.action-card.emergency {
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.action-card.quote {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.action-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.action-card p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.action-btn {
    display: block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Info footer compacta */
.mobile-footer-info {
    padding: 1.5rem;
    border-top: 1px solid rgba(10, 74, 142, 0.1);
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.rating-display {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.availability-status {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Water drops effect for mobile menu */
.mobile-menu-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(10, 74, 142, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(10, 74, 142, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(10, 74, 142, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

/* Water drops container for mobile menu */
.mobile-menu-drops {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Mobile menu drops use same animation as header drops */
.mobile-menu-drops .water-drop {
    position: absolute;
    top: -20px;
    width: 2.5px;
    height: 35px;
    background: linear-gradient(
        180deg,
        rgba(10, 74, 142, 0.7) 0%,
        rgba(10, 74, 142, 0.5) 30%,
        rgba(10, 74, 142, 0.3) 70%,
        transparent 100%
    );
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: dropFall 1.2s linear infinite;
    opacity: 0;
    filter: blur(0.2px);
    box-shadow: 
        0 0 2px rgba(10, 74, 142, 0.3),
        inset 0 0 1px rgba(255, 255, 255, 0.4);
}

/* Mobile Menu Header - Colores Cohesivos */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(180deg, 
        var(--glass-bg-light) 0%, 
        var(--glass-bg) 100%
    );
    backdrop-filter: var(--blur-medium) saturate(150%) brightness(102%);
    -webkit-backdrop-filter: var(--blur-medium) saturate(150%) brightness(102%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 
        var(--shadow-soft),
        0 0 0 1px var(--glass-border-light) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-logo {
    display: flex;
    gap: 2px;
    font-size: 1.35rem;
    font-weight: 800;
}

.mobile-menu-logo .logo-brand {
    color: var(--primary);
}

.mobile-menu-logo .logo-domain {
    color: var(--accent);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 74, 142, 0.1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s linear;
    padding: 0;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.mobile-menu-close:hover {
    background: rgba(10, 74, 142, 0.15);
    transform: rotate(90deg);
}

.mobile-menu-close:active {
    transform: rotate(90deg) scale(0.9);
}

/* Mobile Navigation - Ultra Premium */
.mobile-menu-nav {
    flex: 1;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, 
        var(--primary-color) 0%,
        var(--accent) 100%
    );
    transform: translateX(-5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(10, 74, 142, 0.4);
    border-radius: 0 3px 3px 0;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(10, 74, 142, 0.08) 50%, 
        transparent 100%
    );
    transition: left 0.6s ease;
}

.mobile-nav-link:hover::before {
    transform: translateX(0);
    box-shadow: 0 0 20px rgba(10, 74, 142, 0.6);
}

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

.mobile-nav-link:hover {
    background: linear-gradient(90deg, 
        rgba(10, 74, 142, 0.03) 0%,
        rgba(10, 74, 142, 0.06) 100%
    );
    padding-left: 2.2rem;
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        0 4px 15px rgba(10, 74, 142, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    text-shadow: 0 0 8px rgba(10, 74, 142, 0.3);
}

.mobile-nav-link:active {
    background: rgba(10, 74, 142, 0.12);
    transform: translateX(6px) scale(0.98);
    transition: all 0.15s ease;
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.mobile-nav-link span {
    flex: 1;
}

.mobile-nav-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    opacity: 0.5;
    transition: all 0.3s linear;
}

.mobile-nav-link:hover .mobile-nav-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Mobile CTA Buttons */
.mobile-menu-cta {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(10, 74, 142, 0.1);
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s linear;
    position: relative;
    overflow: hidden;
}

.mobile-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s linear;
}

.mobile-cta-btn:hover::before {
    opacity: 1;
}

.mobile-cta-phone {
    background: linear-gradient(135deg, var(--primary) 0%, #1565c0 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 74, 142, 0.3);
}

.mobile-cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 74, 142, 0.4);
}

.mobile-cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mobile-cta-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.mobile-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mobile-cta-label {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

.mobile-cta-number {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(10, 74, 142, 0.1);
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
    position: relative;
    z-index: 1;
}

.mobile-menu-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.mobile-menu-trust svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.mobile-menu-hours {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-nav,
    .header-trust-badge {
        display: none !important;
    }
}

/* Animation delays for stagger effect */
.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
    animation: slideInRight 0.4s linear 0.1s backwards;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
    animation: slideInRight 0.4s linear 0.15s backwards;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
    animation: slideInRight 0.4s linear 0.2s backwards;
}

.mobile-menu-overlay.active .mobile-cta-btn:nth-child(1) {
    animation: slideInRight 0.4s linear 0.25s backwards;
}

.mobile-menu-overlay.active .mobile-cta-btn:nth-child(2) {
    animation: slideInRight 0.4s linear 0.3s backwards;
}

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

/* Print Styles */
@media print {
    .header-modern {
        position: static;
        background: white;
        box-shadow: none;
        border-bottom: 2px solid var(--primary);
    }
    
    .header-cta-modern,
    .mobile-menu-btn,
    .mobile-menu-overlay {
        display: none;
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATION - MOBILE
   Elimina backdrop-filter, sticky,
   animaciones y efectos costosos
   EXCEPTO en menú móvil que debe funcionar
   =================================== */
@media (max-width: 1024px) {
    /* Eliminar backdrop-filters SOLO del header fijo */
    .header-modern {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.92) !important; /* Fondo transparente más sólido */
    }
    
    /* Optimizar gotas de agua para dispositivos con bajo rendimiento */
    .water-drops-container {
        display: block !important;
        transform: translateZ(0) !important;
    }
    
    .water-drop {
        display: block !important;
        width: 1.8px;
        height: 25px;
        filter: none; /* Remover blur en dispositivos lentos */
        animation-duration: 1.5s; /* Más lenta para mejor rendimiento */
    }
    
    /* Menú móvil: Usar fondo sólido en lugar de backdrop-filter */
    .mobile-menu-content {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: linear-gradient(
            180deg,
            rgba(240, 248, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.98) 100%
        ) !important;
    }
    
    .mobile-menu-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    .mobile-menu-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.7) !important; /* Fondo sólido oscuro */
    }
    
    /* Cambiar sticky a absolute SOLO en header */
    .header-modern {
        position: absolute !important;
    }
    
    /* Ocultar gotas de agua animadas (decorativas) */
    .water-drops-container,
    .mobile-menu-drops {
        display: none !important;
    }
    
    /* Simplificar fondos decorativos */
    .header-modern::before,
    .mobile-menu-content::before {
        display: none !important;
    }
    
    /* Pausar animaciones infinitas */
    .trust-badge-icon {
        animation: none !important;
    }
    
    /* Simplificar filtros costosos */
    .logo-icon,
    .logo-icon svg,
    .trust-badge-icon,
    .header-btn .icon {
        filter: none !important;
    }
    
    /* Asegurar que los botones del menú móvil sean visibles */
    .mobile-cta-btn,
    .mobile-nav-link {
        will-change: auto !important;
    }
}

/* OVERRIDE: Forzar visibilidad de CTAs dentro del menú móvil
   (restaurar botones WhatsApp/Phone dentro del menú sin perder optimizaciones) */
@media (max-width: 1024px) {
    .mobile-menu-cta {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 1011 !important;
    }

    .mobile-cta-btn {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 1rem 1.25rem !important;
        border-radius: 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        will-change: auto !important;
        z-index: 1012 !important;
    }

    /* Asegurar que iconos y textos del CTA sean interactivos */
    .mobile-cta-icon,
    .mobile-cta-text,
    .mobile-cta-number {
        pointer-events: auto !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   HERO MODERN - Unificado desde hero-modern.css
   ═══════════════════════════════════════════════════════════════ */

/* ===================================
   HERO SECTION - MODERN REDESIGN 2025
   Tendencias: Glassmorphism, Neumorphism, 
   Micro-interactions, Fluid Typography
   =================================== */

/* Badge Premium con Glassmorphism */
.hero-badge-wrapper {
    display: inline-flex;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    animation: floatBadge 3s linear infinite;
}

.hero-badge-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(10, 74, 142, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s linear;
}

.hero-badge-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.hero-badge-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(10, 74, 142, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-badge-enhanced .icon {
    width: 20px;
    height: 20px;
    animation: rotate360 6s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Título con Fluid Typography y Gradiente Animado */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s linear backwards;
}

.hero-title-line {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 160, 0, 0.2);
    letter-spacing: -0.02em;
}

.hero-highlight-modern {
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 900;
    background: linear-gradient(
        135deg,
        #ffa000 0%,
        #ffb300 25%,
        #ffd54f 50%,
        #ffb300 75%,
        #ffa000 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(255, 160, 0, 0.4));
    line-height: 1.1;
    letter-spacing: -0.03em;
    display: block;
    /* FIX CLS: Reservar espacio exacto según clamp(2.2rem * 1.1, 7vw * 1.1, 4rem * 1.1) */
    min-height: 4.4rem; /* 4rem * 1.1 line-height = espacio máximo necesario */
    contain: layout style paint;
    will-change: opacity;
    /* FIX Render Delay: Forzar GPU layer y evitar recálculos */
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Feature Pills - Diseño moderno con Neumorphism */
.hero-description {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s linear 0.2s backwards;
}

.hero-lead {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
    justify-content: center;
}

.hero-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s linear;
}

.hero-feature-pill:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(255, 160, 0, 0.3);
}

.pill-icon {
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-subtext {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-subtext strong {
    color: var(--accent);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 160, 0, 0.5);
}

/* CTAs Modernos con Glow Effect */
.hero-cta-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s linear 0.4s backwards;
}

.btn-primary-modern,
.btn-secondary-modern {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s linear;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Primary Button - Accent con Glow */
.btn-primary-modern {
    background: linear-gradient(135deg, #ffa000 0%, #ff8f00 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(255, 160, 0, 0.5),
        0 0 40px rgba(255, 160, 0, 0.4);
}

.btn-primary-modern:active {
    transform: translateY(-1px) scale(0.98);
}

/* Secondary Button - Glass Effect */
.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

/* Glow effect animado */
.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.btn-primary-modern:hover .btn-glow {
    left: 100%;
}

/* Button Text Layout */
.btn-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.btn-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 1;
}

.btn-main-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.btn-sub-text {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.btn-primary-modern .icon,
.btn-secondary-modern .icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-secondary-modern .btn-text {
    align-items: center;
    gap: 12px;
}

.btn-primary-modern .btn-text {
    align-items: center;
    gap: 12px;
}

.btn-primary-modern .btn-text .btn-text-content,
.btn-secondary-modern .btn-text .btn-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-primary-modern .btn-text .btn-main-text,
.btn-primary-modern .btn-text .btn-sub-text,
.btn-secondary-modern .btn-text .btn-main-text,
.btn-secondary-modern .btn-text .btn-sub-text {
    text-align: left;
}

/* Trust Badges Premium con Cards */
.hero-trust-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    animation: fadeInUp 0.8s linear 0.6s backwards;
}

.trust-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s linear;
    position: relative;
    overflow: hidden;
}

.trust-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s linear;
}

.trust-item-modern:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(10, 74, 142, 0.2);
}

.trust-item-modern:hover::before {
    transform: scaleX(1);
}

.trust-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 160, 0, 0.15);
    border-radius: 12px;
    transition: all 0.3s linear;
}

.trust-item-modern:hover .trust-icon-wrapper {
    background: rgba(255, 160, 0, 0.25);
    transform: rotate(5deg) scale(1.1);
}

.trust-icon-wrapper .icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(255, 160, 0, 0.3));
}

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

.trust-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trust-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Animaciones */
@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* OPTIMIZADO: Eliminada animación de background-position, efecto simplificado (instancia 3) */
@keyframes gradientShift {
    0%, 100% {
        opacity: 0.95;
    }
    50% {
        opacity: 1;
    }
}

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .hero-badge-enhanced {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-badge-enhanced .icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-title-line {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .hero-highlight-modern {
        font-size: clamp(2rem, 9vw, 3rem);
    }
    
    .hero-lead {
        justify-content: center;
        gap: 8px;
    }
    
    .hero-feature-pill {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .pill-icon {
        width: 14px;
        height: 14px;
    }
    
    .hero-subtext {
        font-size: 0.95rem;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 16px 24px;
        gap: 6px;
        border-radius: 14px;
        justify-content: center !important;
    }
    
    .btn-primary-modern .btn-text,
    .btn-secondary-modern .btn-text {
        text-align: center;
        justify-content: center;
    }
    
    .btn-primary-modern .btn-text-content,
    .btn-secondary-modern .btn-text-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Overrides específicos para centrar contenido anidado en móvil */
    .btn-primary-modern .btn-text .btn-text-content,
    .btn-secondary-modern .btn-text .btn-text-content {
        align-items: center;
        text-align: center;
    }

    .btn-primary-modern .btn-text .btn-main-text,
    .btn-primary-modern .btn-text .btn-sub-text,
    .btn-secondary-modern .btn-text .btn-main-text,
    .btn-secondary-modern .btn-text .btn-sub-text {
        text-align: center;
    }
    
    .btn-main-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .btn-sub-text {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .btn-primary-modern .icon,
    .btn-secondary-modern .icon {
        width: 24px;
        height: 24px;
    }
    
    .hero-trust-modern {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trust-item-modern {
        flex-direction: row;
        padding: 16px;
        text-align: left;
    }
    
    .trust-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .trust-icon-wrapper .icon {
        width: 20px;
        height: 20px;
    }
    
    .trust-text {
        text-align: left;
        flex: 1;
    }
    
    .trust-title {
        font-size: 0.9rem;
    }
    
    .trust-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 374px) {
    .hero-feature-pill {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 14px 20px;
        justify-content: center !important;
    }
    
    .btn-primary-modern .btn-text,
    .btn-secondary-modern .btn-text {
        text-align: center;
    }
    
    .btn-primary-modern .btn-text-content,
    .btn-secondary-modern .btn-text-content {
        text-align: center;
    }
}

/* Tablet y Desktop mejoras */
@media (min-width: 769px) {
    .hero-cta-modern {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        flex: 0 1 auto;
        min-width: 280px;
    }
    
    .hero-trust-modern {
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Dark Mode Support (opcional) */
@media (prefers-color-scheme: dark) {
    .hero-badge-enhanced {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .hero-feature-pill {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .trust-item-modern {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-badge-wrapper,
    .hero-badge-enhanced .icon {
        animation: none;
    }
    
    .btn-glow {
        display: none;
    }
    
    .hero-title,
    .hero-description,
    .hero-cta-modern,
    .hero-trust-modern {
        animation: none;
    }
}

/* ===================================
   FIX: Centrados en móvil para CTAs
   Asegura icono y textos centrados
   en botones modernos/ultra hasta 768px
   =================================== */
@media (max-width: 768px) {
    /* Contenedores de botones en héroe */
    .hero-cta,
    .hero-cta-modern {
        align-items: center;
    }

    /* Botones principales y secundarios modernos */
    .btn-primary-modern,
    .btn-secondary-modern {
        justify-content: center !important;
        text-align: center !important;
        width: 100%;
    }

    .btn-primary-modern .btn-text,
    .btn-secondary-modern .btn-text {
        justify-content: center !important;
    }

    .btn-primary-modern .btn-text-content,
    .btn-secondary-modern .btn-text-content {
        align-items: center !important;
        text-align: center !important;
    }

    .btn-primary-modern .btn-text .btn-main-text,
    .btn-primary-modern .btn-text .btn-sub-text,
    .btn-secondary-modern .btn-text .btn-main-text,
    .btn-secondary-modern .btn-text .btn-sub-text {
        text-align: center !important;
    }

    /* Botones ultra-premium */
    .btn-hero-ultra,
    .btn-hero-ultra-secondary {
        justify-content: center !important;
        text-align: center !important;
        width: 100%;
    }

    .btn-hero-ultra .btn-text,
    .btn-hero-ultra-secondary .btn-text {
        justify-content: center !important;
    }

    .btn-hero-ultra .btn-text-content,
    .btn-hero-ultra-secondary .btn-text-content {
        align-items: center !important;
        text-align: center !important;
    }

    /* Legacy CTAs (si aparecen en páginas anteriores) */
    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center !important;
        text-align: center !important;
        width: 100%;
    }

    .btn-cta-primary .btn-text,
    .btn-cta-secondary .btn-text {
        justify-content: center !important;
    }

    .btn-cta-primary .btn-text-content,
    .btn-cta-secondary .btn-text-content {
        align-items: center !important;
        text-align: center !important;
    }

    .btn-cta-primary .btn-text .btn-main-text,
    .btn-cta-primary .btn-text .btn-sub-text,
    .btn-cta-secondary .btn-text .btn-main-text,
    .btn-cta-secondary .btn-text .btn-sub-text {
        text-align: center !important;
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATION - MOBILE
   Elimina backdrop-filter, animaciones
   infinitas y efectos costosos
   =================================== */
@media (max-width: 1024px) {
    /* Eliminar TODOS los backdrop-filters */
    .hero-badge-enhanced,
    .hero-feature-pill,
    .btn-secondary-modern,
    .trust-item-modern {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Pausar animaciones infinitas */
    .hero-badge-enhanced,
    .hero-badge-enhanced .icon,
    .hero-badge-enhanced::before,
    .hero-highlight-modern {
        animation: none !important;
    }
    
    /* Simplificar filtros costosos */
    .hero-highlight-modern,
    .pill-icon,
    .btn-primary-modern .icon,
    .btn-secondary-modern .icon,
    .trust-icon-wrapper .icon {
        filter: none !important;
    }
    
    /* Simplificar sombras */
    .hero-title-line,
    .hero-subtext,
    .hero-subtext strong,
    .trust-title {
        text-shadow: none !important;
    }
    
    /* Desactivar efecto glow */
    .btn-glow {
        display: none !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   ENHANCEMENTS - Unificado desde enhancements.css
   ═══════════════════════════════════════════════════════════════ */

/* ===================================
   Social Proof Notifications
   =================================== */
.social-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    max-width: 320px;
    transform: translateX(-400px);
    transition: transform 0.5s linear;
    border: 2px solid var(--bg-light);
}

.social-notification.show {
    transform: translateX(0);
}

.notification-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.notification-action {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.notification-time {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
    border-radius: 50%;
}

.notification-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

/* ===================================
   Tooltips
   =================================== */
.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s linear;
    z-index: 1000;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--text-dark);
}

.tooltip-wrapper:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

/* ===================================
   Button Loading States
   =================================== */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid var(--white);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

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

.btn.success {
    background: var(--success) !important;
}

.btn.success::before {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 900;
    animation: checkmark 0.5s linear;
}

@keyframes checkmark {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ===================================
   Countdown Timer
   =================================== */
.countdown-banner {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.countdown-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
}

.countdown-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-text {
    font-size: 0.95rem;
}

.countdown-timer {
    display: flex;
    gap: 8px;
}

.countdown-unit {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 900;
    min-width: 45px;
    border: 1px solid rgba(255,255,255,0.3);
}

.countdown-label {
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   Enhanced Hero Badge
   =================================== */
.hero-badge-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    animation: badgeFloat 3s linear infinite;
}

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

.badge-icon {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgeRotate 4s linear infinite;
}

@keyframes badgeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

/* ===================================
   Stagger Animations for Cards
   =================================== */
.stagger-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s linear;
}

.stagger-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation:nth-child(6) { transition-delay: 0.6s; }

/* ===================================
   Particle Background Effect
   =================================== */
.particle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 15s; }
/* CSS INNECESARIO ELIMINADO: .particle:nth-child(3-6) - reducidas a 2 partículas por sección */

/* ===================================
   Live Counter Badge
   =================================== */
.live-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    animation: livePulse 2s linear infinite;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1.5s linear infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===================================
   Mobile Optimizations
   =================================== */
@media (max-width: 768px) {
    .social-notification {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 90px;
    }
    
    .countdown-banner {
        padding: 16px 12px;
    }
    
    .countdown-content {
        gap: 8px;
    }
    
    .countdown-text {
        font-size: 0.85rem;
    }
    
    .countdown-unit {
        padding: 4px 8px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .tooltip {
        display: none;
    }
}

/* ===================================
   Daily Contacts Counter (Subtle)
   =================================== */
.daily-contacts {
    animation: fadeInUp 1s linear 0.5s backwards;
}

/* ===================================
   Header V2 Mobile Responsive
   =================================== */
@media (max-width: 768px) {
    /* Header V2 Mobile Optimizations */
    .header-content-enhanced {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .mega-nav {
        display: none;
    }
    
    .header-info-cluster {
        display: none;
    }
    
    .cta-cluster {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-controls-area {
        display: flex;
    }
    
    .logo-enhanced .logo-tagline {
        display: none;
    }
    
    .logo-enhanced .logo-brand {
        font-size: 1.2rem;
        color: var(--logo-elegant) !important;
        text-shadow: 0 0 15px rgba(30, 136, 229, 0.4);
    }
    
    .logo-enhanced .logo-domain {
        color: var(--logo-elegant) !important;
        font-size: 1.2rem;
        text-shadow: 0 0 15px rgba(30, 136, 229, 0.4);
    }
    
    /* Mobile menu optimizations */
    .mobile-menu-content-enhanced {
        width: 90%;
        max-width: 340px;
    }
    
    .mobile-quick-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .action-card {
        padding: 1.25rem;
    }
    
    .category-link {
        padding: 0.75rem;
    }
    
    .nav-dropdown {
        display: none !important;
    }
}

.daily-contacts small {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius);
    background: rgba(10, 74, 142, 0.03);
    transition: all 0.3s linear;
}

.daily-contacts small:hover {
    background: rgba(10, 74, 142, 0.08);
    transform: translateY(-2px);
}

#dailyContactCounter {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05em;
}

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

/* ===================================
   PERFORMANCE OPTIMIZATION - MOBILE
   Elimina backdrop-filter, animaciones
   infinitas y efectos costosos
   =================================== */
@media (max-width: 1024px) {
    /* Eliminar TODOS los backdrop-filters */
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Pausar animaciones infinitas */
    .live-counter,
    .live-dot,
    .badge-icon,
    .hero-badge-enhanced,
    .particle {
        animation: none !important;
    }
    
    /* Ocultar partículas de fondo */
    .particle-bg {
        display: none !important;
    }
    
    /* Simplificar efectos hover costosos */
    .social-notification,
    .countdown-unit,
    .btn.loading::after {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* ===================================
   Optimización Logo Calefon.UY Mobile Extra Small
   =================================== */
@media (max-width: 480px) {
    .logo-enhanced .logo-brand,
    .logo-enhanced .logo-domain {
        font-size: 1.1rem;
        color: var(--logo-elegant) !important;
        text-shadow: 0 0 12px rgba(30, 136, 229, 0.4);
    }
    
    .logo-mobile {
        font-size: 1.2rem;
        color: var(--logo-elegant) !important;
        text-shadow: 0 0 12px rgba(30, 136, 229, 0.4);
    }
    
    /* Controles móviles más compactos */
    .mobile-controls-area {
        gap: 0.5rem;
    }
    
    .mobile-contact-icons {
        gap: 0.3rem;
    }
    
    .mobile-contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .mobile-contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Footer logo más pequeño en móviles */
    .footer-section h3:first-child {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }
}
