/* terminos.css — Mobile first, sin degradados, scroll habilitado */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:#222;
  background:#fff;
  line-height:1.6;
}

/* Layout */
.legal{
  max-width:920px;
  margin:0 auto;
  padding:24px 16px 40px;
}
.legal__header{
  text-align:center;
  margin-bottom:16px;
}
.legal__header h1{
  margin:0 0 6px;
  font-size:1.6rem;
  color:#FF85A1;      /* coherente con la landing */
}
.legal__meta,
.legal__brand{
  margin:0;
  color:#666;
  font-size:.95rem;
}

.legal__section{
  padding:16px 0;
  border-top:1px solid #eee;
}
.legal__section:first-of-type{border-top:none}
.legal__section h2{
  margin:0 0 8px;
  font-size:1.2rem;
  color:#333;
}
.legal__section p,
.legal__section li{
  font-size:1rem;
  color:#333;
}
.legal__section ul{
  margin:8px 0 0 18px;
}
a{color:#1a73e8;text-decoration:none}
a:hover{text-decoration:underline}

/* Responsive */
@media (min-width:768px){
  .legal{padding:32px 24px 56px}
  .legal__header h1{font-size:1.9rem}
  .legal__section h2{font-size:1.3rem}
}
