/* privacidad.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 general */
.privacy{
  max-width:920px;
  margin:0 auto;
  padding:24px 16px 40px;
}
.privacy__header{
  text-align:center;
  margin-bottom:16px;
}
.privacy__header h1{
  margin:0 0 6px;
  font-size:1.6rem;
  color:#FF85A1; /* coherente con la landing */
}
.privacy__meta,
.privacy__brand,
.privacy__contact{
  margin:0;
  color:#666;
  font-size:.95rem;
}

.privacy__section{
  padding:16px 0;
  border-top:1px solid #eee;
}
.privacy__section:first-of-type{border-top:none}
.privacy__section h2{
  margin:0 0 8px;
  font-size:1.2rem;
  color:#333;
}
.privacy__section p,
.privacy__section li{
  font-size:1rem;
  color:#333;
}
.privacy__section ul{
  margin:8px 0 0 18px;
}

/* Enlaces */
a{color:#1a73e8;text-decoration:none}
a:hover{text-decoration:underline}

/* Responsive */
@media (min-width:768px){
  .privacy{padding:32px 24px 56px}
  .privacy__header h1{font-size:1.9rem}
  .privacy__section h2{font-size:1.3rem}
}


/* contact.css — Mobile first, sin degradados */
*{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;
}

.contact{
  max-width:720px;
  margin:0 auto;
  padding:24px 16px 40px;
}

.contact__header{
  text-align:center;
  margin-bottom:16px;
}
.contact__header h1{
  margin:0 0 6px;
  font-size:1.6rem;
  color:#FF85A1; /* coherente con la landing */
}
.contact__intro{
  margin:0;
  color:#666;
  font-size:.95rem;
}

.contact__card{
  background:#fff;
  border:1px solid #eee;
  border-radius:12px;
  padding:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  text-align:center;
}
.contact__text{
  margin:0 0 10px;
  font-size:1rem;
}
.contact__mail{
  color:#1a73e8;
  text-decoration:none;
  font-weight:700;
  word-break:break-all;
}
.contact__mail:hover{text-decoration:underline}

.contact__tips{
  list-style:none;
  padding:0; margin:10px 0 0;
  display:flex; flex-wrap:wrap; gap:8px; justify-content:center;
  color:#555; font-size:.95rem;
}
.contact__tips li{
  background:#FDF7E2;
  border:1px solid #efe6c7;
  border-radius:999px;
  padding:6px 10px;
}

.contact__nav{
  margin-top:16px;
  text-align:center;
}
.back-link{
  color:#555;
  text-decoration:none;
  font-weight:600;
}
.back-link:hover{color:#222;text-decoration:underline}

/* Accesibilidad: contenido solo para lector de pantalla */
.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Responsive */
@media (min-width:768px){
  .contact__header h1{font-size:1.9rem}
}
