/* PÁGINA POLÍTICAS / LEGAL */

body{
  background:#f5f7fb;
  font-family:'Inter', sans-serif;
  color:#1e1e1e;
}

/* Ccontenedor principal */
.legal-wrapper{
  max-width:820px;
  margin:70px auto;
  padding:70px 70px;
  background:#ffffff;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,0.05);
  line-height:1.75;
}

/* Título principal */
.legal-wrapper h1{
  font-size:2rem;
  font-weight:700;
  margin-bottom:30px;
  letter-spacing:-0.3px;
  text-align:center;
}

/* Secciones */
.legal-wrapper h2{
  font-size:1.35rem;
  font-weight:600;
  margin-top:45px;
  margin-bottom:14px;
  letter-spacing:-0.2px;
}

/* Subniveles */
.legal-wrapper h3{
  font-size:1.05rem;
  font-weight:600;
  margin-top:28px;
  margin-bottom:10px;
}

/* Párrafos */
.legal-wrapper p{
  font-size:0.97rem;
  margin-bottom:18px;
  color:#444;
}

/* Texto fuerte */
.legal-wrapper strong{
  color:#111;
  font-weight:600;
}

/* Listas */
.legal-wrapper ul{
  padding-left:22px;
  margin-bottom:20px;
}

.legal-wrapper li{
  font-size:0.96rem;
  margin-bottom:6px;
  color:#444;
}

/* Enlaces */
.legal-wrapper a{
  color:#2b7cff;
  text-decoration:none;
  word-break:break-word;
  font-weight:500;
}

.legal-wrapper a:hover{
  text-decoration:underline;
}

/* Separación entre secciones */
.legal-wrapper h2 + p{
  margin-top:6px;
}

/* FOOTER */
.site-footer{
  padding:35px 20px;
  color:#666;
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
}

.footer-legal{
  margin:0;
  font-size:0.85rem;
  line-height:1.6;
  text-align:center;
}

.brand{
  font-weight:600;
  white-space:nowrap;
}

/* RESPONSIVE TABLET */
@media (max-width:1024px){

  .legal-wrapper{
    margin:50px 30px;
    padding:50px 45px;
  }

}

/* RESPONSIVE MÓVIL */
@media (max-width:768px){

  .legal-wrapper{
    margin:30px 18px;
    padding:35px 22px;
    border-radius:14px;
  }

  .legal-wrapper h1{
    font-size:1.6rem;
    margin-bottom:22px;
  }

  .legal-wrapper h2{
    font-size:1.2rem;
    margin-top:35px;
  }

  .legal-wrapper p{
    font-size:0.95rem;
  }

  .legal-wrapper li{
    font-size:0.95rem;
  }

  .footer-legal{
    font-size:0.8rem;
  }

  .separator{
    display:none;
  }

  .rights{
    display:block;
  }

}