/* Política de privacidad: big centred Poppins title (Wix font_2, measures ~90px at 1920)
   over a 1100px justified column of Questrial text (Wix font_8: measures 18px with a
   28.5px line pitch at 1920). Wix spaces the paragraphs with empty lines, so one
   paragraph gap = one line; .tight / .gap-2 / .gap-3 mirror the irregular gaps
   of the live page. */

.privacy {
  background: var(--navy);
  padding: 14px 5vw 140px;
}
.privacy-title {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 88px);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  color: var(--teal);
  margin: 0 0 50px;
}
.privacy-body {
  --lh: 1.6;               /* 28.8px on 18px, matches the live line pitch */
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: var(--lh);
  color: var(--white);
  text-align: justify;
}
.privacy-body p,
.privacy-body h2 {
  margin: 0 0 calc(var(--lh) * 1em);
}
.privacy-body h2 {
  font: inherit;          /* Wix renders the section titles as plain uppercase body text */
  color: inherit;
  text-transform: uppercase;
  text-align: left;
}
.privacy-body .tight { margin-bottom: 0; }
.privacy-body .gap-2 { margin-bottom: calc(var(--lh) * 2em); }
.privacy-body .gap-3 { margin-bottom: calc(var(--lh) * 3em); }
.privacy-body p:last-child { margin-bottom: 0; }
.privacy-body a { color: inherit; }
.privacy-body a.u { text-decoration: underline; }
.privacy-body a:hover { color: var(--teal); }

@media (max-width: 750px) {
  .privacy { padding: 8px 6vw 90px; }
  .privacy-title { margin-bottom: 32px; }
  .privacy-body { font-size: 16px; text-align: left; }
}
