/* ============================================== */
/* HERO SECTION UNIFICADA - Estilo EUKHOON DEPTH */
/* ============================================== */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    margin: 0px;
    overflow: hidden;
}

/* ============================================== */
/* CONTENEDOR PRINCIPAL */
/* ============================================== */

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* ============================================== */
/* TÍTULO PRINCIPAL - Estilo EUKHOON */
/* ============================================== */

.hero-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line:first-child {
    color: #e6edf3;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.gradient-text {
    background: linear-gradient(135deg, #58a6ff, #b980f0, #58a6ff);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 8s ease infinite;
    font-size: 3rem;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================== */
/* DIVISOR DECORATIVO */
/* ============================================== */

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 25px;
}

.divider-star {
    color: #58a6ff;
    font-size: 1.2rem;
    animation: starTwinkle 3s ease infinite;
}

.divider-star:first-child { animation-delay: 0s; }
.divider-star:last-child { animation-delay: 1.5s; }

.divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #58a6ff, #b980f0, #58a6ff, transparent);
}

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

/* ============================================== */
/* DESCRIPCIÓN */
/* ============================================== */

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.hero-highlight {
    color: #58a6ff;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #58a6ff, transparent);
}

/* ============================================== */
/* TARJETA ADSO */
/* ============================================== */

.adso-card {
    background: rgba(18, 22, 28, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 32px;
    padding: 35px 40px;
    margin: 20px 0 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 50px -25px rgba(0, 0, 0, 0.8);
}

.adso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(88, 166, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.adso-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.adso-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #58a6ff, #b980f0);
    border-radius: 3px;
}

.adso-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #b1bac4;
    margin-bottom: 25px;
    max-width: 90%;
}

/* Estadísticas */
.adso-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #58a6ff, #b980f0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ============================================== */
/* RESPONSIVE */
/* ============================================== */

@media (max-width: 900px) {
    .title-line {
        font-size: 2rem;
    }
    
    .title-line:first-child {
        font-size: 1.5rem;
    }
    
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .adso-card {
        padding: 30px;
    }
    
    .adso-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .hero-section {
        min-height: auto;
        padding: 0px 15px;
    }
    
    .title-line {
        font-size: 1.6rem;
    }
    
    .title-line:first-child {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .gradient-text {
        font-size: 2rem;
    }
    
    .hero-divider {
        margin: 15px 0 20px;
    }
    
    .divider-line {
        width: 60px;
    }
    
    .hero-badge-container {
        gap: 12px;
    }
    
    .hero-badge {
        padding: 6px 14px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .adso-card {
        padding: 25px;
        border-radius: 24px;
    }
    
    .adso-title {
        font-size: 1.4rem;
    }
    
    .adso-text {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .adso-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .scroll-indicator {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }
}

@media (max-width: 500px) {
    .title-line {
        font-size: 1.3rem;
    }
    
    .title-line:first-child {
        font-size: 1rem;
    }
    
    .gradient-text {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .hero-badge-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge {
        width: fit-content;
    }
    
    .adso-card {
        padding: 20px;
    }
    
    .adso-title {
        font-size: 1.3rem;
    }
    
    .adso-title::after {
        width: 40px;
    }
    
    .adso-text {
        font-size: 0.9rem;
    }
    
    .adso-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 350px) {
    .title-line {
        font-size: 1.1rem;
    }
    
    .gradient-text {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
}

/* Preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .bg-grid,
    .bg-matrix,
    .bg-orb,
    .gradient-text,
    .divider-star,
    .scroll-arrow {
        animation: none !important;
    }
}