/* ╔════════════════════════════════════════════════════════════════════════════╗
   ║                          NEXT VISA - STYLESHEET                            ║
   ║                      Hoja de Estilos Organizada por Secciones             ║
   ╚════════════════════════════════════════════════════════════════════════════╝

   📑 ÍNDICE DE CONTENIDOS:
   
   1. CONFIGURACIÓN GLOBAL (líneas 20-135)
      - Variables CSS
      - Reset y estilos base
      - Navegación (navbar)
      - Botones globales
      
   2. COMPONENTES COMPARTIDOS (líneas 136-570)
      - Hero sections
      - Footer
      - Sección de estadísticas
      - Asistente virtual (LIA)
      
   3. PÁGINA INICIO (index.html) (líneas 200-450)
      - Hero principal
      - Preview de servicios
      - Sección de proceso
      - Stats con fondo
      
   4. PÁGINA CONÓCENOS (conocenos.html) (líneas 1530-1850)
      - Header con badges
      - Highlights de experiencia
      - Misión y visión
      - Beneficios con efectos neon
      - Sección de LIA
      
   5. PÁGINA SERVICIOS (servicios.html) (líneas 770-890)
      - Introducción de servicios
      - Tarjetas de servicio detalladas
      - Lista de características
      
   6. PÁGINA B1/B2 (b1b2.html) (líneas 890-1150)
      - Introducción a visas
      - Tipos de visa (B1/B2)
      - Requisitos
      - Proceso timeline
      - Tips para entrevista
      
   7. PÁGINA CONTACTO (contacto.html) (líneas 1150-1290)
      - Grid de contacto
      - Formulario
      - Métodos de contacto
      - Mapa
      
   8. EFECTOS Y ANIMACIONES (líneas 1646-1850)
      - Animaciones de scroll
      - Efectos neon hover
      - LIA floating
      - Transiciones
      
   9. RESPONSIVE DESIGN (líneas 1290-1400, 1880-1980)
      - Mobile navbar
      - Tablets (968px)
      - Móviles (768px)
      - Efectos neon móvil

   ════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   1. CONFIGURACIÓN GLOBAL
   ═══════════════════════════════════════════════════════════════════════════ */

/* --- 1.1 Variables CSS --- */
:root {
    /* Colores Principales (SIN CAMBIOS - manteniendo colores originales) */
    --primary-color: #0583ed;
    --secondary-color: #45a9f7;
    --pastel-color: #bfdbfc;
    --accent-color: #ee4c3d;
    --success-color: #4CAF50;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.05);
    --glass-bg-strong: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-strong: rgba(255, 255, 255, 0.3);
    
    /* Sombras */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 75px rgba(0, 0, 0, 0.2);
    
    /* Blur */
    --blur-xs: 4px;
    --blur-sm: 8px;
    --blur-amount: 12px;
    --blur-lg: 16px;
    --blur-xl: 24px;
    
    /* Border Radius */
    --border-radius-xs: 6px;
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --border-radius-xl: 40px;
    --border-radius-full: 9999px;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Tipografía */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    
    --font-weight-normal: 400;
    --font-weight-medium: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    
    /* Transiciones */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
}

/* Animaciones globales de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(191, 219, 252, 0.3),
                    0 0 60px rgba(191, 219, 252, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(191, 219, 252, 0.6),
                    0 0 100px rgba(191, 219, 252, 0.2);
        transform: scale(1.02);
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(107, 213, 166, 0.4),
                    0 8px 30px rgba(91, 196, 240, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(107, 213, 166, 0.6),
                    0 12px 40px rgba(91, 196, 240, 0.5);
    }
}

/* Nueva animación de entrada suave */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animación de resplandor sutil */
@keyframes glow-soft {
    0%, 100% {
        box-shadow: 0 0 20px rgba(191, 219, 252, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(191, 219, 252, 0.4);
    }
}

/* Animación de pulso de borde */
@keyframes border-pulse {
    0%, 100% {
        border-color: rgba(191, 219, 252, 0.3);
    }
    50% {
        border-color: rgba(191, 219, 252, 0.7);
    }
}

/* Animaciones para iconos */
@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes icon-spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animación de pulso suave para botón (micro-dopamina) */
@keyframes btn-pulse-micro {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(238, 76, 61, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 50px rgba(238, 76, 61, 0.8),
                    0 0 30px rgba(238, 76, 61, 0.6);
        transform: scale(1.02);
    }
}

/* Destello para indicador en vivo */
@keyframes live-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* Efecto glassmorphism de entrada */
@keyframes glass-fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(12px);
        transform: translateY(0);
    }
}

/* Animación para elementos superpuestos */
@keyframes asymmetric-slide {
    from {
        transform: translateX(-30px) translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

/* Efecto de destello neón para botón */
@keyframes neon-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(238, 76, 61, 0.5),
                     0 0 20px rgba(238, 76, 61, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(238, 76, 61, 0.8),
                     0 0 40px rgba(238, 76, 61, 0.6),
                     0 0 60px rgba(238, 76, 61, 0.4);
    }
}

/* Shimmer sweep effect para botón */
@keyframes shimmer-sweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Efecto shimmer para realce */
@keyframes shimmer-effect {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
}

/* Float-up para notificación flotante */
@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(30px) translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efectos hover globales para iconos */
.trust-icon i,
.service-icon i,
.step-number {
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon i {
    animation: icon-bounce 0.6s ease;
}

.service-card:hover .service-icon i,
.service-card-detailed:hover .service-icon i {
    animation: icon-spin-slow 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Mejorar rendimiento de animaciones */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimización para móviles */
@media (max-width: 768px) {
    *,
    *::before,
    *::after {
        -webkit-tap-highlight-color: rgba(191, 219, 252, 0.3);
    }
    
    /* Mejorar legibilidad del texto */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    background: rgba(5, 131, 237, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(5, 131, 237, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
}

.navbar:hover {
    background: rgba(5, 131, 237, 0.95);
    box-shadow: 0 12px 48px rgba(5, 131, 237, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    margin: -10px 0;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-chat {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #EE4C3D 0%, #FF6B4A 100%);
    color: #FFFFFF;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #EE4C3D;
    box-shadow: 0 10px 30px rgba(238, 76, 61, 0.4);
    transition: all 0.3s ease;
}

.btn-primary.pulse-animation {
    will-change: transform, box-shadow;
    animation: btn-pulse-micro 5s ease-in-out infinite;
}

.btn-primary.pulse-animation.shimmer {
    animation: btn-pulse-micro 5s ease-in-out infinite, shimmer-effect 3s ease-in-out infinite;
}

.btn-primary.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer-sweep 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #d63a2d;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(238, 76, 61, 0.8),
                0 0 30px rgba(238, 76, 61, 0.6);
    background: linear-gradient(135deg, #FF6B4A 0%, #FF5A37 100%);
    border-color: #FF6B4A;
}

.btn-secondary {
    background: #45a9f7;
    color: #FFFFFF;
    border: 2px solid #45a9f7;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-radius: var(--border-radius-md);
    padding: 12px 30px;
    font-weight: 700;
}

.btn-secondary:hover {
    background: #0583ed;
    border-color: #0583ed;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(5, 131, 237, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1fa855;
    border-color: #1fa855;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-chat {
    background: #EE4C3D;
    color: #FFFFFF;
    border: 1.5px solid #EE4C3D;
}

.btn-chat:hover {
    background: #d63a2d;
    border-color: #d63a2d;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(238, 76, 61, 0.4);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    backdrop-filter: blur(10px);
    padding: 40px 0 30px 0;
    color: #0583ed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(191, 219, 252, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    will-change: transform;
    animation: float-gentle 8s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 200, 150, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-gentle 10s ease-in-out infinite reverse;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(1.8rem, 4vw + 1rem, 3.2rem);
    margin-bottom: 0.4rem;
    line-height: 0.95;
    color: #2C3E50;
    font-weight: 700;
    letter-spacing: -1px;
    will-change: opacity, transform;
    animation: fadeInLeft 1s ease;
}

.hero-text h1 strong {
    font-weight: 800;
    color: #2C3E50;
    display: block;
    margin-top: 0.3rem;
}

.highlight-usa {
    font-family: 'Georgia', serif;
    font-size: 1.4em;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Framing negativo: texto que resalta el riesgo (aversión a la pérdida) */
.hero-text h1 .danger-text {
    background: linear-gradient(90deg, #D32F2F 0%, #EE4C3D 50%, #FF6B4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: block;
    font-size: 1.05em;
    margin-bottom: 0;
    animation: fadeInLeft 0.8s ease;
    letter-spacing: -0.5px;
}

.hero-highlight-success {
    color: #1BBE6F !important;
    font-weight: 800;
}

.hero-benefits {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #2C3E50;
    list-style: none;
    padding-left: 0;
    animation: fadeInLeft 1.5s ease;
}

.hero-benefits li {
    margin: 1.2rem 0;
    font-weight: 600;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #34495e;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(191, 219, 252, 0.3);
    transition: all 0.3s ease;
    animation: glass-fadeIn 1s ease backwards;
}

.hero-benefits li:nth-child(1) { animation-delay: 0.1s; }
.hero-benefits li:nth-child(2) { animation-delay: 0.2s; }
.hero-benefits li:nth-child(3) { animation-delay: 0.3s; }

.hero-benefits li:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(191, 219, 252, 0.6);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(5, 131, 237, 0.15);
}

.hero-benefits li strong {
    color: #0583ed;
    font-weight: 700;
}

.hero-benefits .benefit-icon {
    font-size: 1.6em;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

/* Beneficios flotantes sobre el video (Glassmorphism) */
.hero-benefits-floating {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: auto;
    z-index: 25;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 280px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 5px;
    border-radius: 8px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: glass-fadeIn 1s ease backwards;
    flex-wrap: nowrap;
}

.benefit-card:nth-child(1) { animation-delay: 0.12s; }
.benefit-card:nth-child(2) { animation-delay: 0.22s; }
.benefit-card:nth-child(3) { animation-delay: 0.32s; }

.benefit-card:hover {
    transform: translateY(-1px) scale(1.005);
    box-shadow: none;
}

.benefit-icon-shell {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1),
                0 0 0 3px rgba(255, 255, 255, 0.18);
}

.benefit-icon-shell .icon-emoji {
    font-size: 14px;
    line-height: 1;
}

.mental-icon .icon-emoji { color: #ff5fa2; }
.docs-icon .icon-emoji { color: #2563eb; }
.shield-icon .icon-emoji { color: #22c55e; }

.benefit-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-title {
    font-weight: 800;
    font-size: 0.75rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: -0.2px;
}

.benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.75rem;
    box-shadow: none;
}

.benefit-description {
    margin: 0;
    font-size: 0.7rem;
    color: #f0f0f0;
    line-height: 1.3;
}

.hero-trust-seal {
    margin-top: 15px;
    padding: 12px;
    background-color: #f2f2f2;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 1.2s ease;
}

.highlight-primary {
    background: linear-gradient(135deg, #0583ed 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.highlight-success {
    background: linear-gradient(135deg, #1BBE6F 0%, #158850 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1rem, 1rem + 0.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: #5a6c7d;
    line-height: 1.7;
    font-weight: 500;
    animation: fadeInLeft 1.2s ease;
    max-width: 90%;
}

.hero-subtitle-dark {
    color: #5a6c7d !important;
    font-weight: 500 !important;
}

.hero-text .btn-primary {
    margin-top: 40px;
    margin-bottom: 2.5rem;
    font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.15rem);
    padding: 18px 45px;
    animation: fadeInLeft 1.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(238, 76, 61, 0.4);
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Variante compacta del CTA principal para reducir tamaño sin perder el efecto */
.hero-text .btn-primary.hero-cta-sm {
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(238, 76, 61, 0.3);
    margin-top: 24px;
    margin-bottom: 2.5rem;
}

.hero-text .btn-primary.hero-cta-sm:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(238, 76, 61, 0.8),
                0 0 30px rgba(238, 76, 61, 0.6);
    background: linear-gradient(135deg, #FF6B4A 0%, #FF5A37 100%);
    border-color: #FF6B4A;
}

.hero-text .btn-primary.hero-cta-sm .icon-pulse {
    font-size: 1rem;
}

.hero-text .btn-primary .icon-pulse {
    display: inline-block;
    animation: gentle-pulse 2s ease-in-out infinite;
    font-size: 1.3em;
}

/* Prueba Social Dinámica: Indicador en vivo de personas agendando */
.social-proof-live {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #2C3E50;
    font-weight: 600;
    padding: 12px 18px;
    background: rgba(27, 190, 111, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(27, 190, 111, 0.3);
    border-radius: 25px;
    display: inline-block;
    animation: glass-fadeIn 1.6s ease;
}

/* Micro-copy de urgencia con conversión */
.cta-urgency {
    font-size: 0.9rem;
    color: #EE4C3D;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 1.5s ease;
}

.social-proof-live .live-indicator {
    color: #EE4C3D;
    font-weight: 700;
    animation: live-pulse 2s ease-in-out infinite;
    display: inline-block;
    position: relative;
}

.social-proof-live .live-indicator::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #EE4C3D;
    border-radius: 50%;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    animation: live-pulse 2s ease-in-out infinite;
}

.hero-text .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-text .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-trust {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 12px 18px;
    background: rgba(37, 211, 102, 0.15);
    border-radius: 8px;
    border-left: 4px solid #25D366;
    display: inline-block;
}

.hero-disclaimer {
    font-size: 0.65rem;
    color: #999999;
    opacity: 0.7;
    font-style: italic;
    margin-top: 80px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #0583ed;
}

.hero-text .hero-disclaimer {
    font-size: 0.85rem !important;
    color: #000000 !important;
    opacity: 0.5 !important;
    margin-bottom: 2.5rem;
}

.hero-social-proof {
    margin-bottom: 1.5rem;
    padding: 12px 16px;
    background: rgba(27, 190, 111, 0.08);
    border-radius: 10px;
    border-left: 4px solid #1BBE6F;
    animation: fadeInLeft 1.6s ease;
}

.hero-social-proof .stars {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero-social-proof .testimonial {
    font-size: 0.95rem;
    color: #2C3E50;
    font-weight: 600;
    margin: 0.4rem 0;
    line-height: 1.4;
}

.hero-social-proof .testimonial-author {
    font-size: 0.80rem;
    color: #0583ed;
    font-weight: 500;
    margin: 0;
}

.badge {
    background: rgba(5, 131, 237, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.8rem;
    color: #0583ed;
    font-weight: 600;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    height: 100%;
    min-height: 700px;
}

/* Contenedor para video con fondo blur espejo */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 0 60px 20px rgba(255, 152, 0, 0.15), 
                0 20px 60px rgba(5, 131, 237, 0.2),
                0 0 100px rgba(255, 215, 0, 0.1);
    filter: drop-shadow(0 0 40px rgba(255, 165, 0, 0.25));
    z-index: 2;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(12, 18, 33, 0.55), rgba(12, 18, 33, 0.35));
    z-index: 2;
    pointer-events: none;
}

/* Fondo desenfocado espejo detrás del video */
.hero-video-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/hero-professional.mp4") center/cover;
    background-color: linear-gradient(135deg, #0583ed 0%, #45a9f7 100%);
    filter: blur(80px) brightness(0.4);
    z-index: 0;
    animation: float-gentle 8s ease-in-out infinite;
}

.hero-video {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 1.2s ease;
    display: block;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.hero-video:hover {
    transform: scale(1.01);
    box-shadow: 0 25px 100px rgba(5, 131, 237, 0.4);
}

.hero-badge {
    position: absolute;
    bottom: 320px;
    right: 20px;
    background: linear-gradient(135deg, #0583ed 0%, #2196F3 100%);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(5, 131, 237, 0.6),
                0 0 30px rgba(33, 150, 243, 0.4);
    text-align: center;
    transition: all 0.4s ease;
    z-index: 25;
}

.hero-badge:hover {
    background: linear-gradient(135deg, #0066CC 0%, #1976D2 100%);
    box-shadow: 0 15px 50px rgba(5, 131, 237, 0.8),
                0 0 50px rgba(33, 150, 243, 0.6);
    transform: translateY(-5px) scale(1.05);
}

.hero-badge p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Nuevo badge de éxito flotante */
.hero-badge-success {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.35) 0%, rgba(0, 181, 112, 0.28) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 14px;
    border-radius: 30px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: gentle-pulse 3s ease-in-out infinite;
    z-index: 25;
}

.hero-badge-success:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-badge-success .badge-icon {
    font-size: 1.2em;
    animation: icon-bounce 2s ease-in-out infinite;
}

.hero-badge-success strong {
    color: #f0fff8;
    font-size: 0.82rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Notificación Flotante En Vivo */
.floating-live-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 50;
    animation: float-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.floating-live-notification .social-proof-live {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(5, 131, 237, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C3E50;
    white-space: nowrap;
    margin: 0;
    animation: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(5, 131, 237, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===========================
   PAGE HERO
   =========================== */
.page-hero {
    background: linear-gradient(135deg, #bfdbfc, #45a9f7);
    padding: 60px 0;
    text-align: center;
    color: #2C3E50;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.page-hero p {
    font-size: 1.2rem;
    color: #2C3E50;
    opacity: 0.8;
}

/* ===========================
   TRUST SECTION
   =========================== */
.trust-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-header h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.trust-intro {
    font-size: 1.15rem;
    color: #7F8C8D;
    max-width: 700px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.2s; }
.trust-card:nth-child(3) { animation-delay: 0.3s; }
.trust-card:nth-child(4) { animation-delay: 0.4s; }
.trust-card:nth-child(5) { animation-delay: 0.5s; }
.trust-card:nth-child(6) { animation-delay: 0.6s; }

.trust-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(191, 219, 252, 0.6);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.3), rgba(69, 169, 247, 0.3));
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #0583ed;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(5, 131, 237, 0.15);
    border: 1px solid rgba(69, 169, 247, 0.15);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(5, 131, 237, 0.25);
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.4), rgba(69, 169, 247, 0.4));
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2C3E50;
}

.trust-card p {
    color: #7F8C8D;
    line-height: 1.6;
    font-size: 0.95rem;
}

.legal-disclaimer {
    background: #FFF3CD;
    border-left: 4px solid #FFC107;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.legal-disclaimer p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.legal-disclaimer strong {
    color: #664300;
}

/* ===========================
   SERVICES PREVIEW
   =========================== */
.services-preview {
    padding: 80px 0;
    background: linear-gradient(180deg, #F5F7FA 0%, #F0F3F7 100%);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7F8C8D;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(191, 219, 252, 0.5);
}

.service-card-detailed {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(191, 219, 252, 0.2);
    opacity: 0;
    animation: fadeInLeft 0.6s ease forwards;
}

.service-card-detailed:nth-child(1) { animation-delay: 0.1s; }
.service-card-detailed:nth-child(2) { animation-delay: 0.2s; }
.service-card-detailed:nth-child(3) { animation-delay: 0.3s; }
.service-card-detailed:nth-child(4) { animation-delay: 0.4s; }
.service-card-detailed:nth-child(5) { animation-delay: 0.5s; }
.service-card-detailed:nth-child(6) { animation-delay: 0.6s; }

.service-card-detailed:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border-color: rgba(191, 219, 252, 0.6);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.2), rgba(69, 169, 247, 0.2));
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(5, 131, 237, 0.1);
    border: 1px solid rgba(69, 169, 247, 0.1);
}

.service-card:hover .service-icon,
.service-card-detailed:hover .service-icon {
    transform: rotateY(360deg) scale(1.15);
    box-shadow: 0 4px 15px rgba(5, 131, 237, 0.2);
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.3), rgba(69, 169, 247, 0.3));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card-detailed h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2C3E50;
    text-align: center;
}

.service-description {
    color: #7F8C8D;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.service-includes, .service-excludes {
    background: rgba(248, 249, 250, 0.6);
    backdrop-filter: blur(8px);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    text-align: left;
    border: 1px solid rgba(191, 219, 252, 0.2);
}

.includes-title {
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.excludes-title {
    font-weight: 700;
    color: #E85555;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service-includes ul, .service-excludes ul {
    margin-left: 20px;
}

.service-includes li, .service-excludes li {
    list-style: disc;
    color: #7F8C8D;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.service-card-detailed .btn-secondary {
    margin-top: auto;
    text-align: center;
    display: block;
    padding: 12px 25px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process {
    padding: 80px 0;
    background: white;
}

.process-subtitle {
    text-align: center;
    color: #EE4C3D;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-description {
    text-align: center;
    font-size: 1.1rem;
    color: #7F8C8D;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }
.step:nth-child(6) { animation-delay: 0.6s; }
.step:nth-child(7) { animation-delay: 0.7s; }

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.3), rgba(69, 169, 247, 0.3));
    backdrop-filter: blur(8px);
    color: #0583ed;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 15px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(5, 131, 237, 0.15);
    border: 1px solid rgba(69, 169, 247, 0.15);
}

.step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 4px 15px rgba(5, 131, 237, 0.3);
    animation: pulse-glow 1.5s infinite;
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.4), rgba(69, 169, 247, 0.4));
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-arrow {
    font-size: 2rem;
    color: #45a9f7;
    align-self: center;
    margin-top: 30px;
}

.process-note {
    background: #E3F2FD;
    border-left: 4px solid #2196F3;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.process-note p {
    color: #1565C0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.process-note i {
    color: #2196F3;
    margin-right: 8px;
}

/* ===========================
   ABOUT US SECTION
   =========================== */
.about-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E3F2FD 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 1.15rem;
    color: #0583ed;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-details h3 {
    font-size: 1.4rem;
    color: #2C3E50;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-details p {
    color: #7F8C8D;
    line-height: 1.7;
    margin-bottom: 20px;
}

.differentiators {
    list-style: none;
    padding: 0;
}

.differentiators li {
    color: #2C3E50;
    padding: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.differentiators i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.about-legal-note {
    background: #FFF3E0;
    border-left: 4px solid #FF9800;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.about-legal-note p {
    color: #E65100;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-legal-note i {
    color: #FF9800;
    margin-right: 8px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
}

.about-badge p {
    margin: 0;
    color: #2C3E50;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.7) 0%, rgba(2, 56, 165, 0.7) 50%, rgba(0, 121, 255, 0.6) 100%),
                url('../images/stats-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(191, 219, 252, 0.1) 50%, transparent 70%);
    animation: float-gentle 8s ease-in-out infinite;
    pointer-events: none;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7F8C8D;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-medium);
    border-color: rgba(191, 219, 252, 0.6);
    background: rgba(255, 255, 255, 0.9);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #bfdbfc;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    border-color: #45a9f7;
    box-shadow: 0 8px 25px rgba(69, 169, 247, 0.5);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Ajuste específico para avatar-2 */
img[src*="avatar-2"] {
    object-position: center 30%;
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #7F8C8D;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    padding-top: 15px;
    border-top: 2px solid #E0E0E0;
}

.author-name {
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 5px;
    font-size: 1rem;
}

.author-location {
    color: #7F8C8D;
    font-size: 0.9rem;
}

/* ===========================
   STATS SECTION (CONTINUED)
   =========================== */

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 L1000,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-slow);
    animation: float-stats 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Animaciones escalonadas para cada tarjeta */
.stat-card:nth-child(1) {
    animation-delay: 0s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes float-stats {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stat-card:hover {
    transform: translateY(-25px) scale(1.08);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    animation: none;
    box-shadow: var(--shadow-strong);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #0583ed;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-card p {
    color: #bfdbfc;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===========================
   AI ASSISTANT & WHATSAPP
   =========================== */
.ai-assistant,
.whatsapp-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.bot-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.3), rgba(69, 169, 247, 0.3));
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0583ed;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(5, 131, 237, 0.15);
    transition: var(--transition);
    border: 1px solid rgba(69, 169, 247, 0.15);
}

.bot-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 20px rgba(5, 131, 237, 0.25);
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.4), rgba(69, 169, 247, 0.4));
}

.ai-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ai-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.whatsapp-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(191, 219, 252, 0.3);
    transition: var(--transition);
}

.whatsapp-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
    border-color: rgba(191, 219, 252, 0.5);
}

.whatsapp-text {
    flex: 1;
}

.whatsapp-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin: 20px 0 30px;
    color: var(--text-dark);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: #070819;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #bfdbfc;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-logo img {
    width: 120px;
    height: auto;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #45a9f7;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    margin: 5px 0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 10px;
    opacity: 0.7;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-content {
    padding: 60px 0;
    background: white;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: #2C3E50;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #bfdbfc;
}

.legal-text h3 {
    color: #0583ed;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-text p {
    color: #7F8C8D;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul, .legal-text ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text li {
    color: #7F8C8D;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-text strong {
    color: #2C3E50;
}

.warning-box {
    background: #FFF3CD;
    border: 2px solid #FFC107;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.warning-box h3 {
    color: #856404;
    margin-top: 0;
}

.warning-box p, .warning-box ul, .warning-box li {
    color: #856404;
}

.important-notice {
    background: #E3F2FD;
    border-left: 4px solid #2196F3;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.important-notice h3 {
    color: #1565C0;
    margin-top: 0;
}

.important-notice p, .important-notice ol, .important-notice li {
    color: #1565C0;
}

.final-disclaimer {
    background: #FFEBEE;
    border: 2px solid #EF5350;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.final-disclaimer h3 {
    color: #C62828;
    margin-top: 0;
}

.final-disclaimer p, .final-disclaimer ol, .final-disclaimer li {
    color: #C62828;
}

.highlight-text {
    background: #FFF9C4;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #FBC02D;
    font-weight: 500;
    color: #F57C00;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(191, 219, 252, 0.2);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-medium);
    border-color: rgba(191, 219, 252, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.value-icon {
    font-size: 3rem;
    color: #45a9f7;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-light);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #45a9f7;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.rating {
    color: #FFD700;
}

/* ===========================
   SERVICES DETAILED
   =========================== */
.services-detailed {
    padding: 80px 0;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-list {
    display: grid;
    gap: 30px;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    transition: var(--transition-slow);
    border: 2px solid rgba(191, 219, 252, 0.2);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(69, 169, 247, 0.15), transparent);
    transition: left 0.6s ease;
}

.service-detail-card:hover::before {
    left: 100%;
}

.service-detail-card:hover,
.service-detail-card.neon-active {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(5, 131, 237, 0.25),
                0 0 30px rgba(69, 169, 247, 0.2);
    border-color: rgba(69, 169, 247, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.3), rgba(69, 169, 247, 0.3));
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0583ed;
    transition: var(--transition-slow);
    box-shadow: 0 2px 12px rgba(191, 219, 252, 0.15);
    border: 1px solid rgba(191, 219, 252, 0.15);
}

.service-detail-card:hover .service-detail-icon,
.service-detail-card.neon-active .service-detail-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(191, 219, 252, 0.25);
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.4), rgba(5, 131, 237, 0.4));
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--success-color);
}

/* ===========================
   VISA B1/B2 PAGE
   =========================== */
.visa-info {
    padding: 80px 0;
}

.visa-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.visa-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.visa-intro-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.visa-types {
    padding: 80px 0;
    background: var(--bg-light);
}

.visa-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.type-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}
.type-card:hover,
.type-card.neon-active {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(5, 131, 237, 0.2),
                0 0 20px rgba(69, 169, 247, 0.15);
    border-color: rgba(69, 169, 247, 0.3);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.3), rgba(69, 169, 247, 0.3));
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0583ed;
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(191, 219, 252, 0.15);
    border: 1px solid rgba(191, 219, 252, 0.15);
}
.type-card:hover .type-icon,
.type-card.neon-active .type-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(191, 219, 252, 0.25);
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.4), rgba(5, 131, 237, 0.4));
}

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.type-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.type-card ul {
    list-style: none;
}

.type-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.type-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.requirements {
    padding: 80px 0;
}

.requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.requirement-item {
    background: rgba(248, 249, 250, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border: 2px solid rgba(191, 219, 252, 0.2);
}

.requirement-item:hover,
.requirement-item.neon-active {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(5, 131, 237, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.requirement-item i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.requirement-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.visa-process {
    padding: 80px 0;
    background: var(--bg-light);
}

.visa-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.3), rgba(69, 169, 247, 0.3));
    backdrop-filter: blur(8px);
    color: #0583ed;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(191, 219, 252, 0.15);
    border: 1px solid rgba(191, 219, 252, 0.15);
}

.timeline-item:hover .timeline-number,
.timeline-item.neon-active .timeline-number {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(69, 169, 247, 0.25);
    background: linear-gradient(135deg, rgba(69, 169, 247, 0.4), rgba(5, 131, 237, 0.4));
}

.timeline-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid rgba(191, 219, 252, 0.2);
}

.timeline-item:hover .timeline-content,
.timeline-item.neon-active .timeline-content {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(5, 131, 237, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
}

.tips-section {
    padding: 80px 0;
}

.tips-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: rgba(248, 249, 250, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(191, 219, 252, 0.2);
    box-shadow: var(--shadow-soft);
}

.tip-card:hover,
.tip-card.neon-active {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-medium);
    border-color: rgba(5, 131, 237, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.tip-card i {
    font-size: 3rem;
    color: #45a9f7;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.tip-card:hover i,
.tip-card.neon-active i {
    transform: scale(1.15);
    color: #45a9f7;
    filter: drop-shadow(0 0 15px rgba(69, 169, 247, 0.5));
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tip-card p {
    color: var(--text-light);
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(5, 131, 237, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.3), rgba(69, 169, 247, 0.3));
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0583ed;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(5, 131, 237, 0.15);
    border: 1px solid rgba(69, 169, 247, 0.15);
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(5, 131, 237, 0.25);
    background: linear-gradient(135deg, rgba(191, 219, 252, 0.4), rgba(69, 169, 247, 0.4));
}

.method-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.method-info p {
    color: var(--text-light);
}

.business-hours {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
}

.business-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.business-hours p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(191, 219, 252, 0.2);
    transition: var(--transition);
}

.contact-form-container:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(191, 219, 252, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #45a9f7;
    box-shadow: 0 0 0 3px rgba(191, 219, 252, 0.3);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    color: var(--text-light);
    font-size: 0.9rem;
}

.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(191, 219, 252, 0.2);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(191, 219, 252, 0.4);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0583ed;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        color: white;
        width: 100%;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }
    
    .logo img {
        width: 100px;
        height: auto;
    }
    
    .navbar {
        padding: 0.8rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .hero-content,
    .about-grid,
    .visa-intro,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .hero-text h1 {
        font-size: 2rem;
        animation: fadeInUp 0.8s ease;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        animation: fadeInUp 1s ease;
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-text .btn-primary {
        animation: fadeInUp 1.2s ease;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 1.1rem;
        padding: 16px 30px;
    }

    .hero-benefits {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-benefits li {
        font-size: 0.95rem;
        margin: 0.8rem 0;
        padding: 12px 15px;
        gap: 12px;
        transform: none;
    }

    .hero-benefits li:hover {
        transform: translateX(0);
    }

    .hero-benefits .benefit-icon {
        font-size: 1.3em;
    }

    .social-proof-live {
        font-size: 0.85rem;
        padding: 10px 15px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-disclaimer {
        text-align: center;
        font-size: 0.75rem !important;
    }

    .hero-image {
        padding: 0;
        order: -1;
        margin-bottom: 2rem;
        min-height: 400px;
        height: 400px;
    }

    .hero-video-container {
        border-radius: 24px;
    }

    .hero-video {
        border-radius: 24px;
    }

    .hero-image img {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .hero-video-video {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: block;
        height: auto;
    }

    .hero-badge-success {
        top: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .hero-badge-success strong {
        font-size: 0.8rem;
    }

    .hero-badge {
        bottom: 80px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.75rem;
    }

    .hero-badge p {
        font-size: 0.75rem;
    }

    .hero-benefits-floating {
        bottom: 16px;
        left: 16px;
        right: 16px;
        gap: 12px;
    }

    .benefit-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .benefit-icon-shell {
        width: 88px;
        height: 88px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12),
                    0 0 0 8px rgba(255, 255, 255, 0.35);
    }

    .benefit-icon-shell .icon-emoji {
        font-size: 50px;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .benefit-description {
        font-size: 0.9rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }

    .ai-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-card {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .values-grid,
    .testimonials-grid,
    .requirements-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1,
    .page-hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .trust-header h2,
    .services-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .trust-intro,
    .testimonials-intro {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .service-card,
    .value-card,
    .testimonial-card {
        padding: 25px;
    }

    /* Mantener efectos visuales en móviles */
    .stats-section {
        background-attachment: scroll;
        background-size: cover;
        padding: 70px 0;
    }

    /* Mantener efecto parallax en stats */
    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(191, 219, 252, 0.15) 50%, transparent 70%);
        animation: float-gentle 8s ease-in-out infinite;
        pointer-events: none;
    }

    .hero::before {
        width: 400px;
        height: 400px;
        opacity: 0.6;
    }

    .hero::after {
        width: 300px;
        height: 300px;
        opacity: 0.6;
    }

    /* Mantener animaciones completas en móviles */
    .trust-card,
    .service-card,
    .service-card-detailed,
    .step,
    .testimonial-card {
        animation-duration: 0.6s;
    }

    /* Mantener flotación de stats en móvil */
    .stat-card {
        animation: float-stats 3s ease-in-out infinite !important;
    }

    .stat-card:nth-child(1) {
        animation-delay: 0s !important;
    }

    .stat-card:nth-child(2) {
        animation-delay: 0.3s !important;
    }

    .stat-card:nth-child(3) {
        animation-delay: 0.6s !important;
    }

    /* Mantener hover effects en móviles */
    .trust-card:active,
    .service-card:active,
    .testimonial-card:active {
        transform: translateY(-5px) scale(1.02);
    }

    .service-icon,
    .trust-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .step-number {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .hero-text h1 {
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .trust-grid,
    .services-grid-detailed {
        gap: 25px;
    }

    .testimonials-grid {
        gap: 30px;
    }
}

/* ===========================
   CONOCENOS PAGE
   =========================== */
.conocenos-hero {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 50%, #DBEAFE 100%);
    backdrop-filter: blur(10px);
    padding: 60px 0 90px 0;
    position: relative;
    overflow: hidden;
}

.conocenos-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-gentle 8s ease-in-out infinite;
}

.conocenos-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(69, 169, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-gentle 10s ease-in-out infinite reverse;
}

.conocenos-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.conocenos-image {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 45px;
    box-shadow: 0 10px 40px rgba(5, 131, 237, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    border: 2px solid rgba(69, 169, 247, 0.1);
    transition: var(--transition);
    position: relative;
}

.conocenos-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(69, 169, 247, 0.3), transparent, rgba(69, 169, 247, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.conocenos-image:hover {
    box-shadow: 0 20px 60px rgba(5, 131, 237, 0.25),
                0 0 0 1px rgba(69, 169, 247, 0.3);
    transform: translateY(-8px) scale(1.02);
}

.conocenos-image:hover::before {
    opacity: 1;
}

.conocenos-image img {
    max-width: 100%;
    height: auto;
}

.conocenos-intro h1 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 50%, #0C4A6E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: fadeInLeft 0.8s ease;
}

.conocenos-intro p {
    font-size: 1.3rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInLeft 1s ease;
}

.conocenos-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(5, 131, 237, 0.12),
                0 0 0 1px rgba(69, 169, 247, 0.1);
    font-size: 1.1rem;
    color: #334155;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(69, 169, 247, 0.15);
    animation: fadeInLeft 1.2s ease;
}

.badge-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(5, 131, 237, 0.2),
                0 0 0 2px rgba(69, 169, 247, 0.3);
    border-color: rgba(69, 169, 247, 0.4);
    background: rgba(255, 255, 255, 1);
}

.badge-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    color: #0284C7;
    filter: drop-shadow(0 2px 4px rgba(5, 131, 237, 0.2));
    transition: var(--transition);
}

.badge-item:hover .badge-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(5, 131, 237, 0.3));
}

/* Experience Highlights */
.experience-highlights {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.highlight-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(69, 169, 247, 0.1);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(5, 131, 237, 0.15);
    border-color: rgba(69, 169, 247, 0.3);
    background: rgba(255, 255, 255, 1);
}

.highlight-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0284C7, #0369A1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(5, 131, 237, 0.2));
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 8px 12px rgba(5, 131, 237, 0.3));
}

.highlight-item h3 {
    font-size: 1.5rem;
    color: #0583ed;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.highlight-item p {
    color: #2C3E50;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(69, 169, 247, 0.15);
    border-radius: var(--border-radius-md);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(5, 131, 237, 0.08);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(69, 169, 247, 0.05), transparent);
    transition: left 0.6s ease;
}

.mv-card:hover::before {
    left: 100%;
}

.mv-card:hover {
    border-color: rgba(69, 169, 247, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(5, 131, 237, 0.2);
    background: rgba(255, 255, 255, 1);
}

.mv-card h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #0284C7, #0369A1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.mv-card p {
    color: #2C3E50;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0583ed;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(145deg, #bfdbfc, #45a9f7);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(5, 131, 237, 0.3);
}

.benefit-card::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);
    transition: all 0.6s ease;
}

.benefit-card:hover::before,
.benefit-card.neon-active::before {
    top: 100%;
    left: 100%;
}

.benefit-card:hover,
.benefit-card.neon-active {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 50px rgba(5, 131, 237, 0.6),
                0 0 40px rgba(69, 169, 247, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #45a9f7, #0583ed);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #0583ed;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-card:hover .benefit-icon,
.benefit-card.neon-active .benefit-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.9),
                0 8px 35px rgba(0, 0, 0, 0.3);
}

.benefit-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover h3,
.benefit-card.neon-active h3 {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* AI CTA Section */
.ai-cta-section {
    padding: 80px 0;
    background: white;
}

.ai-cta-card {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(37, 211, 102, 0.15),
                0 0 40px rgba(37, 211, 102, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: var(--transition);
}

.ai-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, #25D366 0%, #0583ed 50%, #45a9f7 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: var(--transition);
}

.ai-cta-card:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.2),
                0 10px 50px rgba(5, 131, 237, 0.15),
                0 0 60px rgba(37, 211, 102, 0.15);
    transform: translateY(-5px);
}

.ai-cta-card:hover::before {
    opacity: 0.6;
}

.ai-cta-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.ai-bot-image {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #25D366 0%, #34E57D 30%, #0583ed 70%, #45a9f7 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.4),
                0 15px 50px rgba(5, 131, 237, 0.3),
                0 0 60px rgba(37, 211, 102, 0.2);
    position: relative;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.ai-bot-image:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 50px rgba(37, 211, 102, 0.6),
                0 20px 70px rgba(5, 131, 237, 0.5),
                0 0 80px rgba(37, 211, 102, 0.3),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #34E57D 0%, #25D366 30%, #0583ed 70%, #45a9f7 100%);
    border-color: rgba(255, 255, 255, 0.8);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.ai-bot-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #25D366 0%, #0583ed 50%, transparent 70%);
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
    filter: blur(8px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.ai-bot-image img {
    max-width: 85%;
    height: auto;
    position: relative;
    z-index: 1;
    animation: rotate 8s linear infinite;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* ===========================
   LIA FLOATING BUTTON - Professional
   =========================== */

/* Botón flotante profesional */
.lia-floating-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6dd5a6 0%, #5bc4f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(107, 213, 166, 0.4),
                0 8px 30px rgba(91, 196, 240, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: gentle-pulse 3s ease-in-out infinite;
}

/* Animación de entrada */
.lia-floating-button.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Hover effect */
.lia-floating-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 40px rgba(107, 213, 166, 0.6),
                0 15px 50px rgba(91, 196, 240, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #5bc4f0 0%, #6dd5a6 100%);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Active/Click effect */
.lia-floating-button:active,
.lia-floating-button.clicked {
    transform: scale(0.95);
}

/* Ocultar al hacer scroll hacia abajo */
.lia-floating-button.hide {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

/* Icono del botón */
.lia-btn-icon {
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

/* Imagen de LIA en el botón */
.lia-btn-image {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    background: transparent;
    mix-blend-mode: normal;
}

/* Tooltip con el texto "LIA" */
.lia-btn-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: linear-gradient(135deg, #25D366 0%, #34E57D 50%, #0583ed 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5),
                0 0 30px rgba(5, 131, 237, 0.3);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Flecha del tooltip */
.lia-btn-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #128C7E;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Mostrar tooltip al hacer hover */
.lia-floating-button:hover .lia-btn-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Pulso sutil de fondo */
.lia-btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #34E57D 50%, #0583ed 100%);
    opacity: 0.7;
    animation: lia-pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    filter: blur(2px);
}

@keyframes lia-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Focus para accesibilidad */
.lia-floating-button:focus {
    outline: 3px solid rgba(5, 131, 237, 0.5);
    outline-offset: 2px;
}

/* Responsive - Móvil */
@media (max-width: 768px) {
    .lia-floating-button {
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
    }
    
    .lia-btn-icon {
        font-size: 26px;
    }
    
    .lia-btn-tooltip {
        right: 70px;
        font-size: 14px;
        padding: 8px 14px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .lia-floating-button {
        bottom: 28px;
        right: 28px;
    }
}

.ai-cta-text h3 {
    font-size: 1.8rem;
    color: #0583ed;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ai-cta-text p {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-ai {
    background: #EE4C3D;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-ai:hover {
    background: #D9402F;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(238, 76, 61, 0.3);
}

/* ===========================
   MOBILE NEON EFFECTS
   =========================== */
@media (max-width: 768px) {
    /* Service cards siempre con efecto neon en móvil */
    .service-detail-card {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(69, 169, 247, 0.25),
                    0 0 20px rgba(69, 169, 247, 0.2);
        border-color: rgba(5, 131, 237, 0.4);
    }
    
    .service-detail-icon {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(69, 169, 247, 0.35);
    }
    
    /* Type cards (B1/B2) siempre con efecto neon */
    .type-card {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(69, 169, 247, 0.25),
                    0 0 20px rgba(69, 169, 247, 0.2);
        border-color: rgba(5, 131, 237, 0.4);
    }
    
    .type-icon {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(69, 169, 247, 0.35);
    }
    
    /* Tip cards siempre con efecto neon */
    .tip-card {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(69, 169, 247, 0.25),
                    0 0 20px rgba(69, 169, 247, 0.2);
        border-color: rgba(5, 131, 237, 0.4);
        background: white;
    }
    
    .tip-card i {
        transform: scale(1.08);
        filter: drop-shadow(0 0 10px rgba(69, 169, 247, 0.45));
    }
    
    /* Benefit cards siempre con efecto neon */
    .benefit-card {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(69, 169, 247, 0.25),
                    0 0 20px rgba(69, 169, 247, 0.2);
        border-color: rgba(5, 131, 237, 0.4);
    }
    
    .benefit-card i {
        transform: scale(1.08);
        box-shadow: 0 0 15px rgba(69, 169, 247, 0.35);
    }
    
    /* Requirement items siempre con efecto */
    .requirement-item {
        transform: translateX(3px);
        border-left-color: #45a9f7;
        box-shadow: -3px 0 10px rgba(69, 169, 247, 0.2);
    }
    
    /* Timeline items siempre con efecto */
    .timeline-item::before {
        transform: scale(1.15);
        box-shadow: 0 0 15px rgba(69, 169, 247, 0.4);
    }
}

/* Responsive for Conocenos */
@media (max-width: 968px) {
    .conocenos-hero {
        padding: 40px 0 60px 0;
    }

    .conocenos-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .conocenos-image {
        order: -1;
        max-width: 320px;
        margin: 0 auto;
        padding: 20px;
    }

    .conocenos-intro {
        padding: 0 15px;
    }

    .conocenos-intro h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .conocenos-intro p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .conocenos-badges {
        justify-content: center;
        gap: 15px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-bot-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .conocenos-hero {
        padding: 30px 0 50px 0;
    }

    .conocenos-header {
        gap: 25px;
    }

    .conocenos-image {
        max-width: 260px;
        padding: 15px;
    }

    .conocenos-intro h1 {
        font-size: 1.8rem;
    }

    .conocenos-intro p {
        font-size: 1rem;
    }

    .badge-item {
        font-size: 0.9rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonials-grid {
        gap: 25px;
    }

    .trust-card,
    .service-card,
    .service-card-detailed,
    .testimonial-card {
        padding: 25px 20px;
    }

    .trust-icon,
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .step-number {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .trust-section,
    .services-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .hero {
        padding: 50px 0 70px 0;
    }

    .process-steps {
        gap: 20px;
    }

    .step {
        padding: 25px 15px;
    }

    .trust-card h3,
    .service-card h3,
    .service-card-detailed h3 {
        font-size: 1.2rem;
    }

    .trust-card p,
    .service-card p,
    .service-card-detailed p {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .stat-card {
        padding: 40px 30px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .stat-card:active {
        transform: translateY(-20px) scale(1.05);
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .stat-icon {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }

    .stat-card h3 {
        font-size: 2.5rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .stat-card p {
        font-size: 1.1rem;
    }

    .trust-header h2,
    .services-section h2,
    .testimonials-section h2 {
        font-size: 1.8rem;
    }

    .trust-intro,
    .testimonials-intro {
        font-size: 1rem;
        padding: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stat-card {
        padding: 35px 25px;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .stat-card h3 {
        font-size: 2.3rem;
    }

    .conocenos-hero {
        padding: 25px 0 40px 0;
    }

    .conocenos-header {
        gap: 20px;
    }

    .conocenos-image {
        max-width: 220px;
        padding: 12px;
    }

    .conocenos-intro h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .conocenos-intro p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    .badge-item {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .conocenos-badges {
        gap: 10px;
    }
}

/* Touch devices - Mantener efectos interactivos */
@media (hover: none) and (pointer: coarse) {
    /* Mantener animaciones visuales sin hover */
    .trust-card,
    .service-card,
    .service-card-detailed,
    .testimonial-card {
        transition: all 0.3s ease;
    }

    /* Agregar animación sutil continua a iconos en móvil */
    .trust-icon {
        animation: pulse-glow 3s ease-in-out infinite;
    }

    .service-icon {
        animation: float-gentle 4s ease-in-out infinite;
    }

    .step-number {
        animation: pulse-glow 3s ease-in-out infinite;
    }

    .testimonial-avatar {
        animation: float-gentle 5s ease-in-out infinite;
    }

    /* Efectos de toque activo en lugar de hover */
    .trust-card:active {
        transform: translateY(-5px) scale(1.02);
        border-color: #bfdbfc;
        box-shadow: 0 10px 30px rgba(5, 131, 237, 0.3);
    }

    .service-card:active,
    .service-card-detailed:active {
        transform: translateY(-5px) scale(1.02);
        border-color: #bfdbfc;
        box-shadow: 0 8px 25px rgba(69, 169, 247, 0.4);
    }

    .testimonial-card:active {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        border-color: #bfdbfc;
    }

    .trust-card:active .trust-icon {
        transform: scale(1.1);
    }

    .service-card:active .service-icon,
    .service-card-detailed:active .service-icon {
        transform: scale(1.1);
    }

    .testimonial-card:active .testimonial-avatar {
        transform: scale(1.1);
    }

    .step:active .step-number {
        transform: scale(1.1);
    }

    .btn-primary:active,
    .btn-secondary:active {
        transform: translateY(-2px) scale(1.02);
    }

    .nav-menu a:active {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MEJORAS DE ACCESIBILIDAD (WCAG)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Focus visible mejorado para navegación por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: var(--border-radius-xs);
}

/* Link para saltar al contenido principal (accesibilidad) */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: var(--z-index-tooltip);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-medium);
}

.skip-to-main:focus {
    left: 50%;
    top: var(--spacing-sm);
    transform: translateX(-50%);
}

/* Mejorar contraste de placeholders */
::placeholder {
    color: var(--text-light);
    opacity: 0.75;
}

/* Estados de carga y disabled  */
[aria-busy="true"] {
    cursor: wait;
    opacity: 0.6;
}

[aria-disabled="true"],
[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SISTEMA DE GRID MODERNO Y CONTAINER QUERIES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Grid automático responsive */
.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--spacing-lg);
}

.grid-auto-sm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: var(--spacing-md);
}

.grid-auto-lg {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: var(--spacing-xl);
}

/* Container queries (cuando estén disponibles) */
@container (min-width: 400px) {
    .card-responsive {
        display: grid;
        grid-template-columns: 150px 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAZY LOADING Y ANIMACIONES ON-SCROLL
   ═══════════════════════════════════════════════════════════════════════════ */

/* Elemento oculto hasta que sea visible */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES (Sistema completo)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Text Alignment */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

/* Font Weights */
.font-normal { font-weight: var(--font-weight-normal) !important; }
.font-medium { font-weight: var(--font-weight-medium) !important; }
.font-bold { font-weight: var(--font-weight-bold) !important; }
.font-extrabold { font-weight: var(--font-weight-extrabold) !important; }

/* Font Sizes */
.text-xs { font-size: var(--font-size-xs) !important; }
.text-sm { font-size: var(--font-size-sm) !important; }
.text-base { font-size: var(--font-size-base) !important; }
.text-lg { font-size: var(--font-size-lg) !important; }
.text-xl { font-size: var(--font-size-xl) !important; }
.text-2xl { font-size: var(--font-size-2xl) !important; }
.text-3xl { font-size: var(--font-size-3xl) !important; }
.text-4xl { font-size: var(--font-size-4xl) !important; }

/* Text Colors (usando colores originales) */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-light { color: var(--text-light) !important; }
.text-white { color: white !important; }

/* Background Colors */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-white { background-color: var(--bg-white) !important; }
.bg-transparent { background-color: transparent !important; }

/* Margins */
.m-0 { margin: 0 !important; }
.m-1 { margin: var(--spacing-xs) !important; }
.m-2 { margin: var(--spacing-sm) !important; }
.m-3 { margin: var(--spacing-md) !important; }
.m-4 { margin: var(--spacing-lg) !important; }
.m-5 { margin: var(--spacing-xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }
.mt-5 { margin-top: var(--spacing-xl) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }
.mb-5 { margin-bottom: var(--spacing-xl) !important; }

.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Padding */
.p-0 { padding: 0 !important; }
.p-1 { padding: var(--spacing-xs) !important; }
.p-2 { padding: var(--spacing-sm) !important; }
.p-3 { padding: var(--spacing-md) !important; }
.p-4 { padding: var(--spacing-lg) !important; }
.p-5 { padding: var(--spacing-xl) !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: var(--spacing-xs) !important; }
.pt-2 { padding-top: var(--spacing-sm) !important; }
.pt-3 { padding-top: var(--spacing-md) !important; }
.pt-4 { padding-top: var(--spacing-lg) !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: var(--spacing-xs) !important; }
.pb-2 { padding-bottom: var(--spacing-sm) !important; }
.pb-3 { padding-bottom: var(--spacing-md) !important; }
.pb-4 { padding-bottom: var(--spacing-lg) !important; }

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Flexbox Utilities */
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }
.gap-1 { gap: var(--spacing-xs) !important; }
.gap-2 { gap: var(--spacing-sm) !important; }
.gap-3 { gap: var(--spacing-md) !important; }
.gap-4 { gap: var(--spacing-lg) !important; }

/* Border Radius */
.rounded-sm { border-radius: var(--border-radius-sm) !important; }
.rounded-md { border-radius: var(--border-radius-md) !important; }
.rounded-lg { border-radius: var(--border-radius-lg) !important; }
.rounded-full { border-radius: var(--border-radius-full) !important; }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-medium) !important; }
.shadow-lg { box-shadow: var(--shadow-strong) !important; }

/* Width & Height */
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }

/* Position */
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.sticky { position: sticky !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }

/* Cursor */
.cursor-pointer { cursor: pointer !important; }
.cursor-not-allowed { cursor: not-allowed !important; }

/* Transitions */
.transition { transition: var(--transition) !important; }
.transition-fast { transition: var(--transition-fast) !important; }

/* Visibility */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }
.opacity-0 { opacity: 0 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-100 { opacity: 1 !important; }
