:root {
    --color-blanco-default: #FFFF;
    --color-negro-default: #000;
    --color-negro-111111: #111111;
    --color-borde-navegacion: #141414;
    --cta-text-color: #0A1428;
    --cta-bg-color: #C8AA6E;
    --cta-disabled-text-color: #3b4353;
    --cta-disabled-bg-color: #222b3d;
    --cta-hover-text-color: #0A1428;
    --cta-hover-bg-color: #d3bb8b;
    --color-rojo-logo:#EB0029;
    --color-hover-navegacion: #333333;
    --color-bordes-navegacion: #00a0ba;
    --color-boton-juagarahora: #00b2cf;
}

/** Header */
/*! ------ */

#header {
    height: 108vh;
}

.cabecera-completa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 80px;
    width: 100%;
    background: var(--color-negro-111111);
    position: fixed;
    z-index: 20000;
    border-bottom: 2.5px solid var(--color-borde-navegacion);
}

.menu-navegacion_logos {
    display: flex;
    align-items: center;
    padding-left: 26px;
    gap: 20px;
}

.logo-riot_izquierda {
    width: 95px;
    height: 80px;
    display: flex;
    align-items: center;
}

.riot-games_imagen {
    width: 85px;
    height: 24px;
    fill: #f9f9f9;
    position: relative;
    margin: 0;
}

.riot-games_imagen:hover {
    filter: brightness(0) saturate(100%) invert(20%) sepia(88%) saturate(6049%) hue-rotate(347deg) brightness(96%) contrast(109%);
}

.contenedor_logo-inicial {
    width: 26px;
    height: 38px;
    display: flex;
    align-items: center;
}

.inicial-lol_imagen {
    width: 38px;
    height: 26px;
}

.menu-navegacion {
    flex-grow: 1;
    margin-left: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "FFBB4", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-navegacion > ul > div:hover {
    border-bottom: 5px solid var(--color-bordes-navegacion);
    border-radius: 5px;
    height: 40px;
    background-color: #333;
}

.menu-navegacion ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu-navegacion a {
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    letter-spacing: 1.5px;
    color: var(--color-blanco-default);
}

.menu-navegacion > a:hover {
    border-radius: 10px;
    transition: color 0.3s ease;
    color: var(--cta-bg-color);
}

.menu-desplegable:hover {
    color: #C8AA6E;
}

.menu-desplegable:hover > span {
    color: var(--color-blanco-default);
}

.flecha-desplegable {
    font-size: 8px;
    margin-left: 5px;
}

.flecha-desplegable2 {
    font-size: 8px;
    margin-left: 5px;
}

/* Submenús */
.submenu-noticias{
    visibility: hidden;
    border-top: 5px solid var(--color-bordes-navegacion);
    position: absolute;
    top: 69px;
    left: 0; /* Centrar bajo el enlace */
    flex-direction: column;
    justify-content: left;
    align-items: left;
    transform: translate(218%);
    background-color: #292929;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    z-index: 10;
    width: 200px;
    height: 500px;
}

/* Estilo de los enlaces dentro del submenu */
.submenu-noticias a {
    font-weight: 300;
    text-decoration: none;
    color: #f9f9f9;    
    transition: background 0.3s ease, color 0.3s ease;
}

.submenu-noticias a:hover {
    width: 80%;
    border-radius: 5px;
    background-color: #333;
    font-weight: bold;
}

.submenu-noticias2{
    visibility: hidden;
    border-top: 5px solid var(--color-bordes-navegacion);
    position: absolute;
    top: 69px;
    left: 0; /* Centrar bajo el enlace */
    flex-direction: column;
    justify-content: left;
    align-items: left;
    transform: translate(378%);
    background-color: #292929;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    z-index: 10;
    width: 200px;
    height: 300px;
}

/* Estilo de los enlaces dentro del submenu */
.submenu-noticias2 a {
    font-weight: 300;
    text-decoration: none;
    color: #f9f9f9;    
    transition: background 0.3s ease, color 0.3s ease;
}

.submenu-noticias2 a:hover {
    width: 80%;
    border-radius: 5px;
    background-color: #333;
    font-weight: bold;
}

.menu-desplegable2:hover {
    color: #C8AA6E;
}

.menu-desplegable:hover {
    color: #C8AA6E;
}

.menu-desplegable2:hover > span {
    color: var(--color-blanco-default);
}

.menu-navegacion_derecha {
    margin-right: 2%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icono-busqueda {
    background-color: #333;
    width: 42px;
    height: 42px;
    padding: 4%;
    border-radius: 15px;
}

/* Botón de búsqueda */
.boton-busqueda img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Selector de idiomas */
.selector-idioma {
    position: relative;
    display: inline-block;
}

.boton-idiomas {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
}

.boton-idiomas img {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.lista-idiomas {
    display: none; /* Por defecto, el menú está oculto */
    position: absolute;
    top: 200%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.lista-idiomas a {
    display: block;
    padding: 5px 15px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
    font-family:"FFBB4", Arial, sans-serif;
}

.lista-idiomas a:hover {
    transition: 0.3s ease-in-out;
    font-weight: bold;
}

/* Mostrar lista al pasar el mouse sobre el contenedor */
.selector-idioma:hover .lista-idiomas {
    display: block;
}

/* Botón azul */
.boton-jugar .boton-jugar_ahora {
    background-color: #0bc4e2;
    color: var(--color-negro-default);
    border: none;
    height: 32px;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    font-family:"FFBB4", Arial, sans-serif;

    transition: background-color 0.3s ease;
}

.boton-jugar .boton-jugar_ahora:hover {
    color: #C8AA6E;
}



/** Video Principal + Logo y Botón Principal */
/*! ---------------------------------------- */

.video-banner {
    position: relative; 
    width: 100%;
    height: auto; 
    overflow: hidden;
    object-fit: cover;
}

.video-banner video {
    border: none;
    width: 100%;
    height: 120vh;
}

.capa_logo-boton {
    position: absolute; 
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centra el contenido exactamente */
    text-align: center; 
}

.capa_logo-boton > img {
    object-fit: contain;
    height: auto;
    max-width: 368px;
    cursor: pointer;
}

.capa_logo-boton > button {
    outline: var(--color-blanco-default) solid 1px;
    outline-offset: 3px;
    margin-top: 48px;
    font-family: 'Spiegel-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    width: fit-content;
    padding: 19px 32px;
    color: var(--cta-text-color);
    background-color: var(--cta-bg-color);
}

.capa_logo-boton > button:hover {
    cursor: pointer;
    transition: color 0.25s ease-in-out, background-color 0.3s ease-in-out;
    background: var(--cta-hover-bg-color);
    color: var(--cta-hover-text-color);
}


/** Sección Noticias Destacadas */
/*! --------------------------- */
.noticias-destacadas {
    width: 100%;
    padding: 5%;
    height: 110vh;
    padding-top: 5%;
    text-align: left;
    background: #f7f7f7;
}

.noticias-destacadas h2 {
    font-size: 2rem;
    margin-bottom: 3%;
    color: rgb(10, 20, 40);
    text-align: left;
    font-family: "BeaufortforLOL-BoldItalic", sans-serif;
    line-height: 40px;
    font-weight: 700;
}

.noticias-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: "Spiegel-Regular", sans-serif;
    margin-bottom: 3%;
}

.noticia {
    position: relative;
    width: 300px;
    height: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.noticia:hover {
    cursor: pointer;
}

.noticia img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.noticia:hover img {
    transform: scale(1.1);
}

.noticia-texto {
    padding-top: 3%;
    text-align: left;
    font-size: 14px;
    line-height: 22px;
    font-weight: normal;
}

.noticia-texto .categoria > span {
    color: var(--cta-bg-color);
}

.categoria {
    font-size: 14px;
    font-weight: bold;
    color: #888;
}

.noticia h3 {
    font-size: 19px;
    text-align: left;
    color: rgb(10, 20, 40);
    font-family: "Spiegel-Bold";
    letter-spacing: 1px;
}

.noticia p {
    font-size: 16px;
    color: rgb(10, 20, 40);
    font-family: "Spiegel-Regular";
    font-weight: 500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
}

.modal-content iframe {
    width: 100%;
    height: 400px;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
}

.separador-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2%;
}

.hr {
    width: 100%;
    height: 0;
    border: 1.5px solid #bcbcbc;
}

.flechas-slider {
    display: flex;
}

.flechas-slider > button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.flechas-slider > button > img {
    height: 32px;
    width: 32px;
}

/** Elige a tu Campeon */
/*! ------------------ */

.container-champions {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: space-between;
    padding: 5%;
    background-color: var(--color-blanco-default);
    background: url('/images/avif/Asesino-Capucha.avif') no-repeat center center/cover;
    z-index: 0; /* Capa más baja */
    filter: brightness(1);
    overflow: hidden;
    color: rgb(10, 20, 40);
}

.left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.left-section h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
    font-family: "Spiegel-Regular", sans-serif;
    text-transform: uppercase;
}

.left-section h1 {
    font-size: 64px;
    font-weight: 900;
    margin-top: 1%;
    margin: 0;
    line-height: 72px;
    font-family: "BeaufortforLOL-HeavyItalic", sans-serif;
    text-transform: uppercase;
}

.left-section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Spiegel-Regular", sans-serif;
    text-align: center;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.buttons button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons .btn-gold {
    margin-top: 2%;
    font-family: 'Spiegel-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    padding: 19px 32px;
    color: var(--cta-text-color);
    background-color: var(--cta-bg-color);
}

.buttons .btn-gold:hover {
    background: var(--cta-hover-bg-color);
}

.buttons .btn-blue {
    margin-top: 2%;
    font-family: 'Spiegel-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    padding: 19px 32px;
    color: var(--cta-text-color);
    background-color: #59C1DE;
}

.buttons .btn-blue:hover {
    background-color: #7acde4;
}

.classes {
    display: flex;
    justify-content: center;
    gap: 1%;
    padding-left: 10%;
    align-items: center;
}

.class-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.class-item img {
    max-width: 64px;
    margin-bottom: 5px;
    width: 100%;
}

.class-item span {
    display: block;
    font-size: 14px;
    color: rgb(10, 20, 40);
    text-transform: uppercase;
    font-family: "Spiegel-Regular", sans-serif;
    font-weight: 600;
    line-height: 22px;
}

.right-section {
    flex: 1;
    position: relative;    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
}

.champion-image {
    width: 100%;
    height: 100%;
}

.champion-name {
    margin-top: 20px;
    font-size: 28px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    font-family: "BeaufortforLOL-BoldItalic";
    text-transform: uppercase;
    color: rgb(10, 20, 40);
}

.champion-tagline {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Spiegel-SemiBold";
    color: rgb(108, 114, 126);
}

/** Aplasta con Estilo */
/*! ------------------ */
.container {
    position: relative; /* Crea un contexto de posición para todos los hijos */
    height: 130vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

/* Fondo del contenedor */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/avif/Fondo_Aplasta-Estilo.avif') no-repeat center center/cover;
    z-index: 0; /* Capa más baja */
    filter: brightness(1); /* Oscurece el fondo ligeramente */
}

/* Imagen de la campeona */
.character {
    position: relative; /* Permite el uso de z-index */
    z-index: 2; /* Frente al fondo */
    max-width: 50%; /* Limita el ancho de la imagen */
    margin-left: 5%;
}

.character img {
    width: 500px; /* Asegura que la imagen se ajuste dentro del contenedor */
    height: auto;
}

/* Contenedor del texto */
.text-container {
    position: relative; /* Asegura que el texto esté sobre el fondo */
    z-index: 3; /* Frente al fondo y a la campeona */
    max-width: 500px;
    margin-right: 50px;
    text-align: left;
    font-family: "BeaufortforLOL-HeavyItalic", sans-serif; 
    color: var(--color-blanco-default);
}

.text-container h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.text-container h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 88px;
    margin: 10px 0;
}

.text-container p {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: "Spiegel-Regular";
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}

.text-container button {
    margin-top: 5%;
    font-family: 'Spiegel-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    width: fit-content;
    padding: 19px 32px;
    color: var(--cta-text-color);
    background-color: var(--cta-bg-color);
    border: none;
}

.text-container button:hover {
    cursor: pointer;
    transition: color 0.25s ease-in-out, background-color 0.3s ease-in-out;
    background: var(--cta-hover-bg-color);
    color: var(--cta-hover-text-color);
}

/** Varias Formas De Jugar */
/*! ---------------------- */

.seccion_formas-jugar {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 10%;
    background: url('/images/webp/Fondo_Formas-Jugar.webp') no-repeat center center/cover;
    z-index: 0; /* Capa más baja */
    filter: brightness(1);
    color: var(--color-blanco-default);
}

.parte-izquierda {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.parte-izquierda h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
    font-family: "Spiegel-Regular", sans-serif; 
}

.parte-izquierda h1 {
    font-size: 64px;
    font-weight: 900;
    margin-top: 5%;
    line-height: 72px;
    font-family: "BeaufortforLOL-HeavyItalic", sans-serif; 
}

.play-button {
    margin-top: 2%;
    font-family: 'Spiegel-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    padding: 19px 32px;
    color: var(--cta-text-color);
    background-color: var(--cta-bg-color);
    border: none;
}

.play-button:hover {
    background: var(--cta-hover-bg-color);

}

.options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin-top: 12%;
}

.option {
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.option:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.option img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.option p {
    margin-top: 15%;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    font-family: "Spiegel-Regular", sans-serif;
    text-transform: uppercase;
    color: var(--color-blanco-default);
}

.parte-derecha {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 50%; 
}

.video-container {
    position: relative;
    width: 500px;
    height: 500px;
    clip-path: circle(50%);
    overflow: hidden;
    margin: 0 auto 20px;
    outline: var(--color-blanco-default) solid 1px;
    outline-offset: 3px;
}

.video-container > video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid var(--cta-bg-color);
    border-radius: 50%;
    padding: 5%;
}

#video-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-family: "BeaufortforLOL-BoldItalic";
    font-weight: 700;
    text-transform: uppercase;
    line-height: 32px;
    margin-bottom: 1%;
}

#video-description {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Spiegel-Regular", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

/** Sección Video Footer */
/*! -------------------- */

.video-footer {
    position: relative; 
    width: 100%;
    height: auto; 
    overflow: hidden;
    object-fit: cover;
}

.capa_logo-boton2 {
    position: absolute; 
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centra el contenido exactamente */
    text-align: center; 
}

.capa_logo-boton2 > a > button {
    margin-top: 48px;
    font-family: 'Spiegel-Regular', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    width: fit-content;
    padding: 19px 32px;
    color: var(--cta-text-color);
    background-color: var(--cta-bg-color);
    border: none;
}

.capa_logo-boton2 > a > button:hover {
    cursor: pointer;
    transition: color 0.25s ease-in-out, background-color 0.3s ease-in-out;
    background: var(--cta-hover-bg-color);
    color: var(--cta-hover-text-color);
}

/** Footer */
/*! ------ */
.footer {
    background-color: var(--color-negro-111111);
    padding: 20px;
    height: auto;
    text-align: center;
    font-size: 14px;
    width: 100%;
    font-family: "FFBB4", Arial, sans-serif;
    text-transform: uppercase;
}

.footer-links {
    height: 125px;
    width: auto;
    user-select: none;
    box-sizing: border-box;
    font-family: "FFBB4", Arial, sans-serif;
    background: #292929;
    padding: 2.5%;
    color: #7e7e7e;
    font-size: 13px;
    letter-spacing: .09em;
    text-align: center;
    text-transform: uppercase;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px; 
    background-color: transparent; /* Sin fondo por defecto */
    display: inline-block;
    height: 30px;
    width: auto;
}

.footer-links > div {
    margin-bottom: 0.5%;
}

.footer-links a:hover {
    background-color: #4444;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    gap: 1%;
}

.social-icons > div {
    display: flex;
    align-items: center;
    height: 30px;
    width: 35px;
    background-color: #4444;
    border-radius: 12px;
}

.social-icons a img {
    width: 16px;
    height: 16px;
    margin: 0 10px;
}

.logo-footer {
    margin: 3%;
    margin-bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-footer img {
    width: 99px;
    height: 28px;
    filter: brightness(0) invert(1); /* Convierte el logo en blanco */
    opacity: 0.6;
}

.logo-footer img:hover {
    opacity: 1;
}

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 70%;
    text-wrap: wrap;
    margin-bottom: 2%;
    font-size: 12px;
    color: #aaa;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5%;
    margin-bottom: 3%;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    height: 35px;
    padding: 8px;
}

.footer-bottom a:hover {
    background-color: #4444;
    border-radius: 5px;
}

.age-ratings {
    display: flex;
    justify-content: center;
    align-items: center; 
}

.age-ratings > div {
    background: #292929;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1%;
}

.age-ratings img {
    width: 50px;
    height: auto;
    margin-left: 10px;
}

.age-ratings div .rating-verde {
    height: 62px;
    width: auto;
} 