:root{

--bg:#ffffff;
--text:#181818;
--text-soft:#6f6f6f;
--line:#efefef;

}

/* ––––– BASE ––––– */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Manrope', sans-serif;
background:var(--bg);
color:var(--text);
font-size:17px;
font-weight:400;
line-height:1.95;
-webkit-font-smoothing:antialiased;
text-rendering:optimizeLegibility;

}

/* ––––– CONTENEDOR ––––– */

.legal-container{

max-width:860px;
margin:auto;
padding-top:120px;
padding-bottom:140px;
padding-left:35px;
padding-right:35px;

}

/* ––––– TITULO ––––– */

h1{

font-size:68px;
font-weight:300;
letter-spacing:-3px;
line-height:1;
margin-bottom:20px;

}

.last-update{

color:var(--text-soft);
font-size:14px;
margin-bottom:90px;
letter-spacing:.3px;

}

/* ––––– SUBTITULOS ––––– */

h2{

font-size:26px;
font-weight:500;
margin-top:80px;
margin-bottom:25px;
letter-spacing:-0.5px;

}

/* ––––– PARRAFOS ––––– */

p{

margin-bottom:26px;
color:#2d2d2d;

}

/* ––––– LISTAS ––––– */

ul{

margin-top:15px;
margin-bottom:30px;
padding-left:22px;

}

li{

margin-bottom:14px;
color:#2d2d2d;

}

/* ––––– HEADER ––––– */

.legal-header{

width:100%;
border-bottom:1px solid var(--line);
padding:22px 40px;

}

.brand{

text-decoration:none;
border:none;
color:#111;
font-size:13px;
font-weight:600;
letter-spacing:4px;
text-transform:uppercase;

}

/* ––––– LINEA ––––– */

.section-divider{

width:100%;
height:1px;
background:var(--line);
margin-top:90px;
margin-bottom:90px;

}

/* ––––– LINKS ––––– */

a{

color:#111;
text-decoration:none;
transition:.25s;

}

a:hover{

opacity:.6;

}

/* ––––– MOBILE ––––– */

@media(max-width:768px){

.legal-container{
    padding-top:70px;
    padding-bottom:90px;
}
h1{
    font-size:42px;
    letter-spacing:-2px;
}
h2{
    font-size:22px;
}
body{
    font-size:16px;
}

}
.legal-header{

    padding:35px 0;

    text-align:center;

    border-bottom:1px solid #f2f2f2;
}

.logo{

    text-decoration:none;

    color:#111;

    font-family:'Manrope',sans-serif;

    font-size:14px;

    font-weight:600;

    letter-spacing:8px;

    text-transform:uppercase;
}