       /* Reset de padding del hero */
        .hero {
            padding: 0 !important;
            margin-top: 0 !important;
            overflow: hidden;
        }

        /* ═══════════════════════════════════════════════════════════
           HERO MODERNO - ESTILOS ADICIONALES
           ═══════════════════════════════════════════════════════════ */
        
        .hero-modern-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 60px 20px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            min-height: auto;
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            padding-right: 40px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: var(--accent-light);
            color: var(--accent-primary);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            animation: fadeInDown 0.6s ease-out;
        }
        
        .hero-title-modern {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--text-primary);
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle-modern {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 40px;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }
        
        /* Estadísticas */
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-primary);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }
        
        /* Visual Derecho */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeInRight 0.8s ease-out 0.5s both;
        }
        
        .visual-wrapper {
            position: relative;
            width: 100%;
            max-width: 420px;
            aspect-ratio: 1;
        }
        
        /* Avatar Central */
        .hero-avatar {
            position: relative;
            width: 300px;
            height: 300px;
            margin: 0 auto;
            z-index: 2;
        }
        
        .hero-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid var(--bg-card);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .avatar-ring {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            border: 2px solid var(--accent-primary);
            opacity: 0.3;
            animation: pulse-ring 3s ease-in-out infinite;
        }
        
        @keyframes pulse-ring {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.5;
            }
        }
        
        /* Cards Flotantes */
        .visual-card {
            position: absolute;
            padding: 16px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            color: var(--text-primary);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }
        
        .visual-card:hover {
            transform: translateY(-5px);
        }
        
        .visual-card i {
            font-size: 20px;
            color: var(--accent-primary);
        }
        
        .card-1 {
            top: 15%;
            right: -10px;
            animation: float 3s ease-in-out infinite;
        }
        
        .card-2 {
            bottom: 30%;
            left: -10px;
            animation: float 3s ease-in-out infinite 1s;
        }
        
        .card-3 {
            bottom: 5%;
            right: 8%;
            animation: float 3s ease-in-out infinite 2s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        /* Animaciones */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-modern-container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 90px 30px 20px;
            }
            
            .hero-content {
                padding-right: 0;
                text-align: center;
                order: 1; /* Texto primero */
            }
            
            .hero-visual {
                order: 2; /* Imagen después */
            }
            
            .hero-title-modern {
                font-size: 48px;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-actions {
                justify-content: center;
            }
            
            .visual-wrapper {
                max-width: 400px;
            }
            
            .hero-avatar {
                width: 300px;
                height: 300px;
            }
            
            .card-1 {
                top: 10%;
                right: 0;
            }
            
            .card-2 {
                bottom: 20%;
                left: 0;
            }
            
            .card-3 {
                bottom: 5%;
                right: 5%;
            }
        }
        
        @media (max-width: 768px) {
            .hero-modern-container {
                padding: 80px 20px 20px;
            }
            
            .hero-title-modern {
                font-size: 36px;
            }
            
            .hero-subtitle-modern {
                font-size: 16px;
            }
            
            .hero-stats {
                gap: 24px;
            }
            
            .stat-number {
                font-size: 28px;
            }
            
            .hero-avatar {
                width: 220px;
                height: 220px;
            }
            
            /* Ocultar TODAS las cards en mobile */
            .visual-card,
            .card-1,
            .card-2,
            .card-3 {
                display: none !important;
            }
        }
