/* ==========================================================================
   COMPONENT: Hero Section (PrimeX League)
   ========================================================================== */

.hero {
    position: relative;
    background-color: #070707;
    min-height: 60vh;
    display: flex;
    align-items: baseline;
    justify-content: center;
    overflow: hidden;
    padding: 60px 20px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    /* Asegúrate de importar una fuente sans-serif moderna */
}

/* Efectos de Iluminación de Fondo (Glows de Estadio) */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

/* Base de Humo e Iluminación Inferior (Degradado hacia blanco/gris de las tarjetas) */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Columnas Laterales de Contenido */
.hero__side-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.hero__side-content--left {
    align-items: flex-start;
    text-align: left;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    /* Línea divisoria dorada sutil */
}

.hero__side-content--right {
    align-items: flex-start;
    text-align: left;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    /* Línea divisoria dorada sutil */
}

/* Tipografías y Textos */
.hero__title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero__title--highlight-gold {
    color: #D4AF37;
    /* Dorado Premium */
}

.hero__title--highlight-orange {
    color: #D4AF37;
    /* #E67E22;*/
    /* Acento Naranja */
}

.hero__description {
    font-size: 13px;
    color: #A6A6A6;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Columna Central (Gran Logo) */
.hero__center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__main-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    /* Puedes emular el logo con texto si no tienes el asset: */
    font-size: 54px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #ffffff 40%, #A6A6A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__slogan {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #D4AF37;
    font-weight: 600;
}

/* Botones con estilo BEM */
.btn--hero-gold {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--hero-gold:hover {
    background-color: #D4AF37;
    color: #070707;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn__icon {
    margin-left: 8px;
    font-weight: bold;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 25px;
        padding-bottom: 100px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero__side-content--left,
    .hero__side-content--right {
        display: none;
    }
}