/* Páginas legales — mismo sistema visual que la landing */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Barlow:wght@400;500;600&display=swap");

:root { --azul: #0B4FA8; --amarillo: #FFD22E; --tinta: #16181C; --texto: #4B5158; --linea: #E1E5EA; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Barlow, system-ui, sans-serif;
  color: var(--tinta); background: #fff; line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--azul); }
a:hover { color: #08356F; }

.legal-nav { border-bottom: 3px solid var(--tinta); padding: 18px 0; }
.legal-nav .in { max-width: 800px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: inline-flex; flex-direction: column; gap: 5px; text-decoration: none; }
.logo-txt {
  font-family: "Barlow Condensed", Barlow, sans-serif; text-transform: uppercase;
  font-weight: 700; font-size: 20px; line-height: 1; color: var(--tinta); white-space: nowrap;
}
.logo-txt span { color: var(--azul); }
.logo-barra { height: 4px; width: 42px; background: var(--amarillo); }
.volver {
  font-family: "Barlow Condensed", Barlow, sans-serif; text-transform: uppercase;
  font-weight: 600; font-size: 15px; letter-spacing: 0.05em; text-decoration: none;
}

main { max-width: 800px; margin: 0 auto; padding: 48px 24px 70px; }
h1 {
  font-family: "Barlow Condensed", Barlow, sans-serif; text-transform: uppercase;
  font-size: clamp(30px, 5vw, 46px); font-weight: 700; line-height: 1.02;
  margin-bottom: 10px;
}
h1 + p { color: #6B727A; margin-bottom: 34px; font-size: 15px; }
h2 {
  font-family: "Barlow Condensed", Barlow, sans-serif; text-transform: uppercase;
  font-size: 23px; font-weight: 700; margin: 34px 0 10px; line-height: 1.15;
}
p, li { color: var(--texto); font-size: 15.5px; margin-bottom: 12px; }
ul, ol { padding-left: 22px; margin-bottom: 12px; }
strong { color: var(--tinta); font-weight: 600; }
table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 14.5px; }
th, td { border: 1px solid var(--linea); padding: 9px 11px; text-align: left; }
th { background: #F2F4F7; font-family: "Barlow Condensed", Barlow, sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }

footer {
  border-top: 1px solid var(--linea); margin-top: 40px; padding-top: 22px;
  font-size: 14px; color: #6B727A;
}
@media (max-width: 600px) { .logo-txt { font-size: 17px; } }
