/* ==========================
   PÁGINA LEGAL (Aviso Legal / Política de Privacidad)
   Sigue el mismo lenguaje visual que login.css
========================== */
@font-face {
    font-family: "Inter";
    src: url(../fonts/Inter/static/Inter_18pt-Regular.ttf) format("truetype");
    src: url(../fonts/Inter/static/Inter_18pt-Bold.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
}

/* Quita la imagen de fondo general del body solo en esta página */
body.login-page {
    background-image: none;
    background-color: #f2f2f2;
    font-family: "Inter", sans-serif;
}

/* Los párrafos de contenido legal son hijos directos del body
   (no tocan la cabecera ni el pie de página) */
body.login-page > p {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 22px;
    color: black;
    font-size: 1rem;
    line-height: 1.9;
    text-align: justify;
}

/* Título principal: primer párrafo ("Aviso Legal") */
body.login-page > p:first-of-type {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: #1269AE;
    margin: 60px auto 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1269AE;
}

/* Último párrafo: separación extra antes del footer */
body.login-page > p:last-of-type {
    margin-bottom: 80px;
}

/* Negrita solo donde ya está marcada con <strong> */
body.login-page > p strong {
    color: #1269AE;
    font-weight: 700;
}

.texto-grande {
    font-size: 1.4rem; /* ajusta este valor al tamaño que quieras */
    font-weight: bold;
    font-style: italic;
    color: #052742 !important;
}

/* Botón de llamada a la acción debajo del texto */
.cta-wrap {
    width: 90%;
    max-width: 800px;
    margin: 10px auto 90px;
    text-align: center;
}

.btn-contacto {
    display: inline-block;
    padding: 14px 38px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .3px;
    margin-top: -20px;
    color: #fff;
    background: #1269AE;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(18, 105, 174, .3);
    transition: .3s;
}

.btn-contacto:hover {
    background: #5CA32B;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(92, 163, 43, .35);
}

body.login-page > p.titulo-club {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1269AE;
    margin: 60px auto 40px;
    padding-bottom: 18px;
    opacity: 0;
    cursor: default;
    transition: color .35s ease, letter-spacing .35s ease;
    animation: aparecer-titulo .8s ease forwards;
}

body.login-page > p.titulo-club::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 20px;
    transform: translateX(-50%);
    animation-delay: .5s;
}

body.login-page > p.titulo-club:hover {
    color: #5CA32B;
    letter-spacing: 2.5px;
    cursor:alias;
}

body.login-page > p.titulo-club:hover::after {
    width: 140px;
}

@keyframes aparecer-titulo {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}


/* ==========================
   TÍTULO "ESCUELA DE BÁDMINTON"
   (mismo patrón animado que .titulo-club)
========================== */

body.login-page > p.titulo-escuela {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1269AE;
    margin: 60px auto 40px;
    padding-bottom: 18px;
    opacity: 0;
    cursor: default;
    transition: color .35s ease, letter-spacing .35s ease;
    animation: aparecer-titulo .8s ease forwards;
}

body.login-page > p.titulo-escuela:hover {
    color: #5CA32B;
    letter-spacing: 2.5px;
    cursor:alias;
}

body.login-page > p.titulo-escuela::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 20px;
    transform: translateX(-50%);
    transition: width .4s ease;
    animation-delay: .5s;
}

body.login-page > p.titulo-escuela:hover {
    color: #5CA32B;
    letter-spacing: 2.5px;
}

body.login-page > p.titulo-escuela:hover::after {
    width: 140px;
}

/* Nota: @keyframes aparecer-titulo y @keyframes crecer-linea
   ya existen (los usa .titulo-club), no hace falta repetirlos */


/* ==========================
   LISTA DE GRUPOS
========================== */

.lista-grupos {
    list-style: none;
    width: 90%;
    max-width: 800px;
    margin: 0 auto 22px;
    padding: 0;
}

.lista-grupos li {
    position: relative;
    padding: 14px 20px 14px 45px;
    margin-bottom: 14px;
    background: #f8fafc;
    border-left: 4px solid #1269AE;
    border-radius: 0 12px 12px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: black;
    text-align: left;
    transition: .3s;
}

.lista-grupos li::before {
    content: "🏸"; /* icono de raqueta (Font Awesome 6 solid) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: #5CA32B;
    font-size: 1.1rem;
}

.lista-grupos li:hover {
    border-left-color: #5CA32B;
    background: #f0f6ff;
    transform: translateX(4px);
}

.lista-grupos li strong {
    color: #1269AE;
}

/* ==========================
   LISTAS PÁGINAS LEGALES
========================== */

body.login-page > ul {
    width: 90%;
    max-width: 800px;
    margin: -5px auto 22px;
    padding-left: 35px;
    box-sizing: border-box;
    color: black;
    font-size: 1rem;
    line-height: 1.9;
}

body.login-page > ul li {
    margin-bottom: 8px;
    padding-left: 6px;
    text-align: justify;
}

body.login-page > ul li::marker {
    color: #1269AE;
}