: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 {
    width: 100%;
    height: 20vh;
}

.titulo-campeones {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titulo-campeones h2 {
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
    margin-top: 5%;
    font-family: "Spiegel-Regular", sans-serif;
    text-transform: uppercase;
    color: var(--cta-text-color);
}

.titulo-campeones h1 {
    font-size: 64px;
    font-weight: 900;
    margin: 0;
    margin-top: 1%;
    line-height: 72px;
    font-family: "BeaufortforLOL-HeavyItalic", sans-serif;
    text-transform: uppercase;
    color: var(--cta-text-color);
}

.titulo-campeones p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Spiegel-Regular", sans-serif;
    text-align: center;
    color: var(--cta-text-color);
}

.campeones-img {
    width: 100%;
    height: 100%;
}

.campeones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5%;
    width: 90%;
    margin: 0 auto;
    padding: 8% 0;
    margin-bottom: 7%;
}

.campeones-grid a {
    text-decoration: none;
}

.campeon {
    width: 242px;
    height: 323px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.campeon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campeon:hover img {
    transform: scale(1.1);
}

.nombre-campeon {
    width: 242px;
    padding: 16px;
    background-color: var(--cta-hover-text-color); /* Fondo del nombre del campeón */
    color: var(--color-blanco-default);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    font-family: "BeaufortforLOL-BoldItalic", sans-serif;
    text-transform: uppercase;
}

.nombre-campeon:hover {
    background-color: var(--cta-disabled-text-color);
}
