/* Páginas estáticas de privacidad y soporte. No pasan por React a propósito: las tiendas
   exigen que sus URL respondan sin sesión, sin JavaScript y sin depender del enrutador. */
* { box-sizing: border-box; }
body {
  margin: 0; background: #f8faff; color: #1c326d;
  font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.65;
}
.hoja { max-width: 812px; margin: 0 auto; padding: 1.5rem 0 5rem; }
.cabecera { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; margin-bottom: 3.25rem; }
.marca { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
/* La marca es el mismo favicon que usa el logotipo del consentimiento de Google y la portada. */
.sello-publico { width: 46px; height: 46px; border-radius: 12px; display: block; flex: none; }
.marca b { color: #173575; font-size: 20px; }
h1 { font-family: "IBM Plex Sans", system-ui, sans-serif; font-size: 2.15rem; line-height: 1.2; color: #173575; margin: 0 0 .4rem; letter-spacing: -.02em; }
h2 { font-family: "IBM Plex Sans", system-ui, sans-serif; font-size: 1.45rem; color: #173575; margin: 2.4rem 0 .6rem; letter-spacing: -.02em; }
.fecha { color: #7180a5; font-size: 1rem; margin: 0 0 2rem; }
p, li { color: #344a82; }
ul { padding-left: 1.2rem; }
li { margin: .35rem 0; }
a { color: #1260e8; }
.acciones { display: flex; align-items: center; gap: .75rem; }
.boton { display: inline-flex; align-items: center; gap: .55rem; min-height: 44px; padding: .55rem 1rem; border: 1px solid #dce4f4; border-radius: 10px; color: #173575; font-weight: 500; line-height: 1; text-decoration: none; white-space: nowrap; }
.boton:hover { border-color: #1260e8; color: #1260e8; }
.boton-principal { border-color: #1260e8; background: #1260e8; color: #fff; box-shadow: 0 5px 12px rgb(18 96 232 / 18%); }
.boton-principal:hover { background: #0b50cc; color: #fff; }
.icono { font-size: 1.15rem; line-height: 1; }
.destacado {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: #f0f5ff; border: 1px solid #d5e2ff; border-left: 4px solid #1260e8;
  border-radius: 10px; padding: 1.15rem 1.45rem; margin: 1.5rem 0;
}
.destacado-icono { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; background: #dce9ff; color: #1260e8; font-size: 2rem; line-height: 1; }
.destacado strong { color: #173575; }
footer { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid #dce4f4; color: #7180a5; font-size: .85rem; }
@media (max-width: 900px) {
  .hoja { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 700px) {
  .cabecera { align-items: flex-start; flex-direction: column; margin-bottom: 2.5rem; }
  .acciones { width: 100%; overflow-x: auto; padding-bottom: .25rem; }
  .boton { min-height: 40px; padding: .5rem .75rem; font-size: .875rem; }
  h1 { font-size: 1.9rem; }
  .destacado { padding: 1rem; }
}
