/* ==========================================================================
   Las páginas de apoyo: gracias, aviso de privacidad y 404.

   No las diseñó el cliente, así que aquí no hay estilos suyos que respetar.
   Se construyen con el mismo vocabulario de la landing —el papel #f7f5f1, el
   verde #1f5b4d, Newsreader para los títulos— pero en CSS propio y no en
   atributos style=, porque estas sí las escribimos nosotros.

   La tipografía por idioma la siguen dando las clases de type.css, que estas
   páginas cargan igual que index.html.
   ========================================================================== */

.pg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 5vw;
  border-bottom: 1px solid #ded9cd;
}

.pg-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #1c1a16;
}
.pg-brand:hover { color: #1c1a16; }
.pg-brand-mark {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.pg-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 5vw 96px;
}

.pg-title {
  margin: 18px 0 0;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}
/* Igual que en la landing: en chino y en árabe la Newsreader no aplica y el
   interlineado tiene que abrirse. */
html[lang="zh"] .pg-title { font-family: inherit; font-weight: 400; line-height: 1.3; }
html[lang="ar"] .pg-title { font-family: inherit; line-height: 1.35; }

.pg-lede {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #4a463e;
}
html[lang="zh"] .pg-lede { font-size: 16px; line-height: 1.9; }
html[lang="ar"] .pg-lede { font-size: 16.5px; line-height: 1.95; }

.pg-meta {
  margin: 28px 0 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6e6a60;
}
html[lang="zh"] .pg-meta,
html[lang="ar"] .pg-meta {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: normal;
  text-transform: none;
}

.pg-section { margin-top: 44px; }

.pg-h2 {
  margin: 0 0 12px;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: 23px;
  line-height: 1.3;
}
html[lang="zh"] .pg-h2,
html[lang="ar"] .pg-h2 { font-family: inherit; font-size: 20px; line-height: 1.5; }

.pg-body {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #4a463e;
}
html[lang="zh"] .pg-body { font-size: 14.5px; line-height: 1.95; }
html[lang="ar"] .pg-body { font-size: 15px; line-height: 2; }

.pg-actions { margin-top: 40px; }

.pg-back {
  display: inline-block;
  background: #1f5b4d;
  color: #f7f5f1;
  padding: 15px 26px;
  font-size: 13.5px;
}
.pg-back:hover { color: #f7f5f1; background: #1c1a16; }
html[lang="zh"] .pg-back { font-size: 14px; }
html[lang="ar"] .pg-back { font-size: 14.5px; }

.pg-footer {
  border-top: 1px solid #ded9cd;
  padding: 24px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Un bloque que el aviso necesita y que hay que poder ver de lejos: marca lo
   que sigue pendiente de que el cliente nos pase sus datos de entidad legal.
   Se queda en el marcado a propósito, para que no se publique sin verse. */
.pg-pendiente {
  margin: 12px 0;
  padding: 12px 14px;
  border: 1px dashed #ac4028;
  background: #fbf2f0;
  font-size: 13px;
  line-height: 1.6;
  color: #9a2f1c;
}
