/**
 * Diseño definitivo y ultra atractivo para Omen Bot
 * Layout reorganizado con máximo impacto visual
 */

:root {
    /* Paleta de colores vibrante */
    --primary: #8B5CF6;
    --primary-rgb: 139, 92, 246;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #EC4899;
    --secondary-rgb: 236, 72, 153;
    --accent: #F59E0B;
    --accent-rgb: 245, 158, 11;
    --success: #10B981;
    --success-rgb: 16, 185, 129;
    
    /* Fondos */
    --dark: #0F0F23;
    --dark-rgb: 15, 15, 35;
    --darker: #0A0A1A;
    --darker-rgb: 10, 10, 26;
    --medium-dark: #1A1A2E;
    
    /* Efectos */
    --light: #F8FAFC;
    --border-radius: 24px;
    --border-radius-lg: 32px;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --glow: 0 0 60px rgba(var(--primary-rgb), 0.4);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 25%, var(--darker) 50%, var(--dark) 75%, var(--darker) 100%);
    background-size: 400% 400%;
    animation: gradientFlow 20s ease infinite;
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fondo con elementos flotantes */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(var(--primary-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(var(--secondary-rgb), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(2deg); }
}

/* HERO SECTION - Completamente rediseñado */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

/* Badge mejorado */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--secondary-rgb), 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(var(--primary-rgb), 0.4);
    color: var(--primary-light);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: var(--glow);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 1.2s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge i {
    margin-right: 16px;
    font-size: 22px;
    animation: energyPulse 2s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

/* Título espectacular */
.hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 25%, var(--secondary) 50%, var(--accent) 75%, #fff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite;
    position: relative;
    text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.5);
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 300px;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 200% 100%;
    border-radius: 4px;
    animation: underlineFlow 3s ease-in-out infinite;
}

@keyframes underlineFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Descripción mejorada */
.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 600px;
}

/* Botones espectaculares */
.hero-buttons {
    display: flex;
    gap: 32px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 24px 48px;
    font-weight: 800;
    font-size: 18px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-bounce);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: var(--shadow-xl), var(--glow);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.5);
    color: white;
    text-decoration: none;
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(var(--primary-rgb), 0.4);
    color: var(--primary-light);
}

.btn-hero-secondary:hover {
    background: rgba(var(--primary-rgb), 0.15);
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.3);
    color: white;
    text-decoration: none;
    border-color: rgba(var(--primary-rgb), 0.8);
}

/* Stats como elementos flotantes */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hero-stat {
    background: rgba(var(--dark-rgb), 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-bounce);
    overflow: hidden;
    cursor: pointer;
}

.hero-stat::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));
    opacity: 0;
    transition: var(--transition);
}

.hero-stat::after {
    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: var(--transition);
    opacity: 0;
}

.hero-stat:hover {
    transform: translateY(-20px) rotateY(10deg) scale(1.05);
    box-shadow: 0 40px 80px rgba(var(--primary-rgb), 0.4);
    border-color: rgba(var(--primary-rgb), 0.8);
}

.hero-stat:hover::before {
    opacity: 1;
}

.hero-stat:hover::after {
    opacity: 1;
    animation: shimmerEffect 1.5s ease-in-out;
}

@keyframes shimmerEffect {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.hero-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Hero Visual con efectos 3D avanzados */
.hero-visual {
    position: relative;
    perspective: 1200px;
}

.hero-image-container {
    position: relative;
    transform-style: preserve-3d;
    transition: var(--transition);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(var(--primary-rgb), 0.3);
    transform: rotateY(-20deg) rotateX(10deg);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.hero-image:hover {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.05);
    box-shadow: 
        0 70px 140px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(var(--primary-rgb), 0.5);
}

/* Elementos decorativos flotantes */
.hero-visual::before,
.hero-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.3), rgba(var(--secondary-rgb), 0.2));
    z-index: 1;
    animation: floatDecor 10s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.3);
}

.hero-visual::before {
    width: 150px;
    height: 150px;
    top: -75px;
    right: -75px;
    animation-delay: 0s;
}

.hero-visual::after {
    width: 100px;
    height: 100px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes floatDecor {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-30px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(-15px) rotate(240deg) scale(0.9); }
}

/* FEATURES SECTION - Layout de mosaico atractivo */
.features {
    padding: 160px 0;
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(var(--primary-rgb), 0.1), transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(var(--secondary-rgb), 0.08), transparent 70%);
    z-index: 0;
    animation: featuresGlow 20s ease-in-out infinite;
}

@keyframes featuresGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.features-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 120px;
}

.section-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 30%, var(--secondary) 70%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    position: relative;
    animation: titleShimmer 4s ease-in-out infinite;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.05));
    filter: blur(60px);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Grid de características con layout asimétrico */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 100px;
}

.feature-card {
    background: rgba(var(--dark-rgb), 0.9);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--border-radius-lg);
    padding: 60px 50px;
    position: relative;
    transition: var(--transition-bounce);
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--secondary-rgb), 0.04));
    opacity: 0;
    transition: var(--transition);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 200% 200%;
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    animation: borderFlow 4s ease-in-out infinite;
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-card:hover {
    transform: translateY(-30px) rotateX(10deg) scale(1.02);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon-container {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3), rgba(var(--secondary-rgb), 0.2));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    transition: var(--transition-bounce);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.2);
}

.feature-card:hover .feature-icon-container {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.5);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-light);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.1) rotate(-15deg);
}

.feature-title {
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}

/* COMMANDS SECTION - Diseño de tabs futurista */
.commands {
    padding: 160px 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.commands::before {
    content: '';
    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;
}

.commands-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.command-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.command-tabs {
    display: flex;
    background: rgba(var(--dark-rgb), 0.9);
    backdrop-filter: blur(30px);
    border-radius: var(--border-radius);
    padding: 12px;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.command-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.03));
    z-index: -1;
}

.command-tab {
    padding: 20px 40px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 150px;
}

.command-tab::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);
    z-index: -1;
}

.command-tab.active,
.command-tab:hover {
    color: white;
    transform: translateY(-4px) scale(1.05);
}

.command-tab.active::before,
.command-tab:hover::before {
    opacity: 1;
}

.command-content {
    display: none;
}

.command-content.active {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.command-card {
    background: rgba(var(--dark-rgb), 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(var(--primary-rgb), 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.command-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--secondary-rgb), 0.04));
    opacity: 0;
    transition: var(--transition);
}

.command-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.3);
    border-color: rgba(var(--primary-rgb), 0.5);
}

.command-card:hover::before {
    opacity: 1;
}

.command-name {
    font-size: 26px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.command-name i {
    color: var(--primary-light);
    margin-right: 16px;
    font-size: 28px;
    transition: var(--transition);
}

.command-card:hover .command-name i {
    color: var(--secondary);
    transform: scale(1.3) rotate(15deg);
}

.command-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.command-usage {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    padding: 20px 24px;
    border-radius: 16px;
    font-family: 'Fira Code', monospace;
    color: var(--primary-light);
    font-size: 16px;
    position: relative;
    font-weight: 600;
}

.command-usage::before {
    content: '>';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-weight: bold;
    font-size: 18px;
}

/* CTA Section espectacular */
.cta {
    padding: 160px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 50%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M40 40c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8zm0-32c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8zm32 32c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.4);
    line-height: 1.1;
}

.cta-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 24px 48px;
    font-weight: 800;
    font-size: 20px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.btn-cta-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .features-grid,
    .commands-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container,
    .features-container,
    .commands-container,
    .cta-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .command-tabs {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card,
    .command-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .btn-hero,
    .btn-cta {
        padding: 20px 32px;
        font-size: 16px;
        min-width: auto;
    }
}

/* Animaciones de entrada */
.animate-in {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}