/* =========================================================
   TEXTOS LEGALES
   Yo vengo de un olvido
   ========================================================= */

.textos-legales {
    max-width: 900px;
    margin: 70px auto 90px;
    /*padding: 0 1vw;*/

    color: #222;
    font-family: "Inter", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   TÍTULO PRINCIPAL
   --------------------------------------------------------- */

.textos-legales h1 {
    margin: 0 0 50px;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
}


/* ---------------------------------------------------------
   TÍTULOS DE SECCIÓN
   --------------------------------------------------------- */

.textos-legales h2 {
    margin: 60px 0 24px;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.15;
}

.textos-legales h3 {
    margin: 38px 0 12px;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.25;
}


/* ---------------------------------------------------------
   PÁRRAFOS
   --------------------------------------------------------- */

.textos-legales p {
    margin: 0 0 18px;
}


/* ---------------------------------------------------------
   LISTAS
   --------------------------------------------------------- */

.textos-legales ul,
.textos-legales ol {
    margin: 0 0 24px;
    padding-left: 1.5rem;
}

.textos-legales li {
    margin-bottom: 8px;
}


/* ---------------------------------------------------------
   ENLACES
   --------------------------------------------------------- */

.textos-legales a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.textos-legales a:hover {
    text-decoration-thickness: 2px;
}


/* ---------------------------------------------------------
   BLOQUES DESTACADOS
   --------------------------------------------------------- */

.textos-legales .notice {
    margin: 30px 0;
    padding: 18px 22px;

    background: #f6f6f4;
    border-left: 2px solid #777;
}


/* ---------------------------------------------------------
   ÚLTIMA ACTUALIZACIÓN
   --------------------------------------------------------- */

.textos-legales-actualizacion {
    margin-top: 60px;
    padding-top: 20px;

    border-top: 1px solid #ddd;

    color: #777;
    font-size: 0.85rem;
}


/* ---------------------------------------------------------
   MÓVIL
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .textos-legales {
        margin: 45px auto 65px;
        padding: 0 25px;

        font-size: 0.96rem;
        line-height: 1.7;
    }

    .textos-legales h1 {
        margin-bottom: 40px;

        font-size: 2.5rem;
    }

    .textos-legales h2 {
        margin-top: 48px;

        font-size: 1.8rem;
    }

    .textos-legales h3 {
        margin-top: 32px;

        font-size: 1.3rem;
    }

    .textos-legales ul,
    .textos-legales ol {
        padding-left: 1.25rem;
    }
}