/* =========================================================
   PÁGINAS LEGALES - BODYLIFE
========================================================= */

.legal-page{
    background:#f5f5f5;
    min-height:100vh;
    color:#1c1c1c;
}

/* HERO */

.legal-hero{
    padding:150px 0 60px;
    background:#ffffff;
    border-bottom:1px solid #dcdcdc;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.legal-container{
    width:min(1100px,92%);
    margin:auto;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.legal-label{
    display:inline-block;
    font-size:1rem;
    font-weight:800;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:#555;
    margin-bottom:20px;
}

.legal-hero h1{
    font-size:clamp(2.5rem,5vw,4.5rem);
    font-weight:800;
    color:#111;
    margin:0 0 12px;
    letter-spacing:-1px;
}

.legal-hero p{
    color:#555;
    font-size:1.35rem;
    font-weight:700;
    margin:0;
    letter-spacing:.02em;
}

/* CONTENIDO */

.legal-content{
    padding:60px 0 100px;
    background:#f5f5f5;
}

.legal-card{
    background:#ffffff;
    border:1px solid #d9d9d9;
    border-radius:10px;
    padding:55px;
    box-shadow:0 2px 12px rgba(0,0,0,.05);
}

/* TITULOS */

.legal-card h2{
    font-size:1.75rem;
    font-weight:700;
    color:#111;
    margin:45px 0 18px;
    line-height:1.3;
}

.legal-card h2:first-child{
    margin-top:0;
}

/* TEXTO */

.legal-card p{
    font-size:1rem;
    line-height:1.95;
    color:#2d2d2d;
    margin-bottom:22px;
    text-align:justify;
}

/* LISTAS */

.legal-card ul{
    padding-left:24px;
    margin:20px 0 30px;
}

.legal-card li{
    margin-bottom:12px;
    line-height:1.9;
    color:#2d2d2d;
}

.legal-card strong{
    color:#000;
    font-weight:700;
}

/* RESPONSIVE */

@media (max-width:768px){

    .legal-hero{
        padding:125px 0 45px;
    }

    .legal-card{
        padding:30px 22px;
        border-radius:8px;
    }

    .legal-card h2{
        font-size:1.35rem;
    }

    .legal-card p,
    .legal-card li{
        font-size:.96rem;
        line-height:1.8;
        text-align:left;
    }

}