/**
 * Diseño mejorado y atrevido para la página de inicio de Omen Bot
 * Incluye efectos modernos, glassmorphism avanzado y animaciones fluidas
 */

:root {
    /* Paleta de colores más vibrante y atrevida */
    --primary: #6366F1; /* Indigo vibrante */
    --primary-rgb: 99, 102, 241;
    --primary-dark: #4F46E5; /* Indigo oscuro */
    --primary-light: #818CF8; /* Indigo claro */
    --secondary: #EC4899; /* Rosa vibrante */
    --secondary-rgb: 236, 72, 153;
    --accent: #F59E0B; /* Ámbar */
    --accent-rgb: 245, 158, 11;
    --success: #10B981; /* Esmeralda */
    --success-rgb: 16, 185, 129;
    
    /* Fondos con más profundidad */
    --dark: #0F0F23; /* Azul muy oscuro */
    --dark-rgb: 15, 15, 35;
    --darker: #0A0A1A; /* Casi negro con tinte azul */
    --darker-rgb: 10, 10, 26;
    --medium-dark: #1A1A2E; /* Azul oscuro medio */
    
    /* Colores claros */
    --light: #F8FAFC;
    --light-rgb: 248, 250, 252;
    --gray: #374151;
    --gray-light: #6B7280;
    --gray-dark: #1F2937;
    
    /* Efectos y sombras mejorados */
    --border-radius: 16px;
    --card-border-radius: 24px;
    --box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --box-shadow-glow: 0 0 40px rgba(var(--primary-rgb), 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Estilos base mejorados */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
    background-attachment: fixed;
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.7;
    position: relative;
}

/* Fondo animado con partículas */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--secondary-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(var(--success-rgb), 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Cursor personalizado mejorado */
.cursor-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.6);
}

.cursor-outline {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(var(--primary-rgb), 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(var(--primary-rgb), 0.05);
    backdrop-filter: blur(10px);
}

/* Hero section mejorado */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(var(--primary-rgb), 0.2), transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(var(--secondary-rgb), 0.15), transparent 60%),
        radial-gradient(circle at 90% 40%, rgba(var(--success-rgb), 0.1), transparent 60%);
    z-index: -1;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background: 
            radial-gradient(circle at 30% 20%, rgba(var(--primary-rgb), 0.2), transparent 60%),
            radial-gradient(circle at 70% 80%, rgba(var(--secondary-rgb), 0.15), transparent 60%),
            radial-gradient(circle at 90% 40%, rgba(var(--success-rgb), 0.1), transparent 60%);
    }
    50% { 
        background: 
            radial-gradient(circle at 70% 30%, rgba(var(--primary-rgb), 0.25), transparent 60%),
            radial-gradient(circle at 20% 70%, rgba(var(--secondary-rgb), 0.2), transparent 60%),
            radial-gradient(circle at 50% 10%, rgba(var(--success-rgb), 0.15), transparent 60%);
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(var(--primary-rgb), 0.15);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--primary-light);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.2);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
}

.hero-badge i {
    margin-right: 10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.5));
    }
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 650px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 18px 36px;
    font-weight: 700;
    border-radius: 16px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    transition: var(--transition);
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-hero:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.4);
    color: white;
}

.btn-hero:hover::after {
    opacity: 1;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-hero-secondary::before,
.btn-hero-secondary::after {
    display: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-bounce);
    min-width: 120px;
}

.hero-stat:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.2);
}

.hero-stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: counterGlow 2s ease-in-out infinite;
}

@keyframes counterGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.5)); }
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(var(--primary-rgb), 0.2);
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateY(-8deg) rotateX(5deg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(var(--primary-rgb), 0.4);
}

.hero-image:hover::before {
    opacity: 1;
}

.hero-image-floating {
    animation: advancedFloat 8s ease-in-out infinite;
}

@keyframes advancedFloat {
    0% {
        transform: perspective(1200px) rotateY(-8deg) rotateX(5deg) translateY(0px) translateZ(0px);
    }
    25% {
        transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(-15px) translateZ(10px);
    }
    50% {
        transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-25px) translateZ(20px);
    }
    75% {
        transform: perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(-15px) translateZ(10px);
    }
    100% {
        transform: perspective(1200px) rotateY(-8deg) rotateX(5deg) translateY(0px) translateZ(0px);
    }
}

/* Sección de características mejorada */
.features {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 50%, var(--dark) 100%);
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.features-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(var(--primary-rgb), 0.15), transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(var(--secondary-rgb), 0.1), transparent 70%);
    z-index: 0;
    animation: featuresGradientShift 20s ease-in-out infinite;
}

@keyframes featuresGradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.feature-card {
    position: relative;
    background: rgba(var(--darker-rgb), 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    height: 100%;
    transition: var(--transition-bounce);
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.05));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(var(--primary-rgb), 0.2);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-icon-container {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    transition: var(--transition-bounce);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.feature-card:hover .feature-icon-container {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.4);
}

.feature-icon {
    font-size: 36px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.feature-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Sección de comandos mejorada */
.commands {
    position: relative;
    padding: 140px 0;
    background: var(--darker);
    overflow: hidden;
}

.commands-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.commands-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(var(--primary-rgb), 0.12), transparent 70%),
        radial-gradient(circle at 70% 30%, rgba(var(--secondary-rgb), 0.08), transparent 70%);
    z-index: 0;
}

.command-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.command-tab {
    padding: 16px 32px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.command-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.command-tab.active {
    color: white;
}

.command-tab.active::before {
    opacity: 1;
}

.command-tab:hover {
    color: white;
    transform: translateY(-2px);
}

.command-tab:hover::before {
    opacity: 0.7;
}

.command-content {
    display: none;
    position: relative;
    z-index: 1;
}

.command-content.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.command-card {
    background: rgba(var(--dark-rgb), 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    margin-bottom: 20px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.command-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.03));
    opacity: 0;
    transition: var(--transition);
}

.command-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.command-card:hover::before {
    opacity: 1;
}

.command-name {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.command-name i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 22px;
    transition: var(--transition);
}

.command-card:hover .command-name i {
    color: var(--secondary);
    transform: scale(1.2);
}

.command-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.command-usage {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    font-family: 'Fira Code', monospace;
    color: var(--primary-light);
    font-size: 14px;
    margin-bottom: 0;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    position: relative;
}

.command-usage::before {
    content: '$';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-weight: bold;
}

.command-more {
    text-align: center;
    margin-top: 50px;
}

.btn-more {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.1));
    color: var(--primary-light);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    padding: 16px 40px;
    border-radius: 16px;
    font-weight: 700;
    transition: var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.btn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.btn-more:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
}

.btn-more:hover::before {
    opacity: 1;
}

/* Responsive mejorado */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-description {
        font-size: 1.2rem;
    }
    .hero-stats {
        gap: 30px;
    }
    .hero-stat-value {
        font-size: 2.5rem;
    }
    .features, .commands {
        padding: 100px 0;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .hero-stat {
        min-width: 100px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .command-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    .command-tab {
        padding: 12px 20px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-stat {
        width: 100%;
        margin-bottom: 20px;
    }
    .hero-stat-value {
        font-size: 2rem;
    }
    .feature-card {
        padding: 40px 30px;
    }
    .feature-icon-container {
        width: 70px;
        height: 70px;
    }
    .feature-icon {
        font-size: 28px;
    }
}

/* Efectos adicionales para interactividad */
.interactive-glow {
    position: relative;
}

.interactive-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    filter: blur(20px);
    z-index: -1;
    transition: var(--transition);
}

.interactive-glow:hover::after {
    opacity: 0.3;
}

/* Animación de entrada para elementos */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mejoras en la tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

p {
    font-weight: 400;
    letter-spacing: 0.01em;
}