/* Cofre Atlântico — site-v2-zero · LOCK D1 Marinha Custódia
   OPT-03 · C10D-01 · A01 · Modo A · não-tx
   Fonts: Cormorant Garamond (H1) · IBM Plex Sans (UI)
   Logo lettering ONLY via OPT-03 lockup image.
*/

:root {
  --navy: #0A1628;
  --cream: #F8F5EF;
  --gold: #C4A882;
  --surface: #0F1E33;
  --muted: #A8B0BC;
  --ink: #0A1628;
  --ink-soft: #1a2a40;
  --cream-deep: #EFE9DF;
  --gold-deep: #A88B68;
  --line-gold: rgba(196, 168, 130, 0.35);
  --line-cream: rgba(248, 245, 239, 0.12);
  --warn-bg: #F3EDE3;
  --warn-border: #C4A882;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 1px 2px rgba(10, 22, 40, 0.06), 0 16px 40px rgba(10, 22, 40, 0.08);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1120px;
  --header-h: 108px;
  --focus: #C4A882;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--navy);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Regulatory banner —— */
.reg-banner {
  background: var(--surface);
  color: var(--muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--line-gold);
}

.reg-banner strong {
  color: var(--cream);
  font-weight: 500;
}

/* —— Header (navy) —— */
.site-header {
  background: var(--navy);
  border-bottom: 1px solid var(--line-gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: 80px;
  width: auto;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--header-h) + 2.2rem);
  background: var(--surface);
  border-bottom: 1px solid var(--line-gold);
  padding: 1rem;
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 450;
  padding: 0.65rem 0.75rem;
  display: block;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
  background: rgba(196, 168, 130, 0.08);
}

.site-nav .nav-cta {
  margin-top: 0.5rem;
}

.site-nav .nav-cta a {
  text-align: center;
}

.lang-switcher {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-cream);
}

.lang-switcher a {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
}

.lang-switcher a:hover,
.lang-switcher a[aria-current="true"] {
  color: var(--gold);
  background: rgba(196, 168, 130, 0.1);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.45rem 0.7rem;
  }

  .site-nav .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
  }

  .lang-switcher {
    margin: 0 0 0 0.75rem;
    padding: 0;
    border: 0;
  }

  .brand img {
    height: 84px;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: #d4bc9a;
  color: var(--navy);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 245, 239, 0.45);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-secondary.on-cream {
  color: var(--navy);
  border-color: rgba(10, 22, 40, 0.25);
}

.btn-secondary.on-cream:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

.btn-ghost-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(10, 22, 40, 0.2);
}

.btn-ghost-navy:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

/* —— Hero D1 —— */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 3rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  line-height: 1.12;
  color: var(--cream);
  margin: 0 0 1.15rem;
  letter-spacing: -0.01em;
}

.hero-claim {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hero-micro {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0 0 0;
}

.hero-visual {
  display: none;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-gold);
  opacity: 0.95;
}

.hero-mark-panel {
  aspect-ratio: 1;
  max-width: 360px;
  width: 100%;
  margin-inline: auto;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(196, 168, 130, 0.08) 29%, transparent 30%),
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(196, 168, 130, 0.1) 43%, transparent 44%),
    radial-gradient(circle at 50% 50%, transparent 56%, rgba(196, 168, 130, 0.08) 57%, transparent 58%),
    var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.hero-mark-panel .ca-badge {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.hero-mark-panel .panel-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-mark-panel .panel-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.45rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero-visual,
  .hero-mark-panel {
    display: flex;
  }
}

/* —— Trust strip —— */
.trust-strip {
  background: var(--navy);
  border-top: 1px solid var(--line-gold);
  padding: 1.75rem 0 2rem;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.trust-item dt {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.25rem;
}

.trust-item dd {
  margin: 0;
  color: var(--cream);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .trust-strip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.trust-chips li {
  font-size: 0.8125rem;
  color: var(--muted);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  background: rgba(15, 30, 51, 0.5);
}

/* —— Sections —— */
.section {
  padding: 3.5rem 0;
}

.section-muted {
  background: var(--cream-deep);
}

.section-navy {
  background: var(--navy);
  color: var(--cream);
}

.section-navy h2,
.section-navy h3 {
  color: var(--cream);
}

.section-navy p {
  color: var(--muted);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  color: #5a6574;
  font-size: 1.05rem;
}

.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem 0 2.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.page-hero .lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}

/* —— Steps —— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  counter-increment: step;
  position: relative;
}

.step::before {
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 550;
  color: var(--navy);
  margin: 0 0 0.4rem;
}

.step p {
  margin: 0;
  color: #5a6574;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 1000px) {
  .steps.steps-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* —— Categories —— */
.categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.category {
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: border-color 0.15s;
}

.category:hover {
  border-color: var(--gold);
}

.category strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
}

.category span {
  font-size: 0.8125rem;
  color: #6b7585;
}

@media (min-width: 640px) {
  .categories {
    grid-template-columns: repeat(4, 1fr);
  }
}

.note-out {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: #5a6574;
}

/* —— Modo A —— */
.modo-a {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .modo-a {
    grid-template-columns: 1fr 1fr;
  }
}

.panel {
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.panel h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.85rem;
}

.panel ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #5a6574;
}

.panel li {
  margin-bottom: 0.45rem;
}

.horizons-caption {
  margin: 1.25rem 0 0.65rem;
  font-size: 0.875rem;
  color: #6b7585;
}

.horizons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.horizons li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}

.horizons li.is-active,
.horizon-chip.is-active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.horizon-chip {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.horizon-chip:hover {
  border-color: var(--gold-deep);
}

.callout {
  background: var(--warn-bg);
  border-left: 3px solid var(--warn-border);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.callout.amber {
  background: #F7F0E6;
}

.tag,
.confirm-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(196, 168, 130, 0.15);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  vertical-align: middle;
}

.chip-status {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold-deep);
  background: rgba(196, 168, 130, 0.12);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
}

/* —— Process table / funnel —— */
.funnel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.funnel-item {
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.funnel-item .num {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1.25rem;
}

.funnel-item h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}

.funnel-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #5a6574;
}

.funnel-item.is-pending {
  opacity: 0.85;
  border-style: dashed;
}

@media (min-width: 768px) {
  .funnel-item {
    grid-template-columns: 2.5rem 1fr;
    align-items: start;
  }

  .funnel-item .num {
    grid-row: 1 / span 3;
  }
}

/* —— FAQ —— */
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.faq-item details {
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 500;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.faq-item details[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 1.25rem 1.2rem;
  color: #5a6574;
  font-size: 0.95rem;
  border-top: 1px solid rgba(10, 22, 40, 0.06);
  padding-top: 0.9rem;
}

/* —— CTA band —— */
.cta-band {
  background: var(--navy);
  color: var(--cream);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.cta-band .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* —— Form —— */
.form-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .form-layout {
    grid-template-columns: 1.4fr 0.85fr;
    align-items: start;
  }
}

.form-card {
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-intro {
  font-size: 0.9rem;
  color: #5a6574;
  margin: 0 0 1.25rem;
}

.field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.field .req {
  color: var(--gold-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(10, 22, 40, 0.18);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--navy);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.field-hint {
  font-size: 0.8rem;
  color: #6b7585;
  margin: 0.35rem 0 0;
}

.field-error {
  display: none;
  font-size: 0.8rem;
  color: #8b3a3a;
  margin: 0.3rem 0 0;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #8b3a3a;
}

.field.is-invalid .field-error {
  display: block;
}

.checkbox-field {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #5a6574;
}

.checkbox-field input {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.aside-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.aside-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 0.65rem;
  color: var(--cream);
}

.aside-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.aside-card a {
  color: var(--gold);
}

.success-box {
  display: none;
  background: #fff;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.success-box.is-visible {
  display: block;
}

.success-box h2 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.is-hidden {
  display: none !important;
}

.expect-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: #5a6574;
}

.expect-list li {
  margin-bottom: 0.4rem;
}

/* —— Legal —— */
.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.65rem;
  color: var(--navy);
  margin: 2.25rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 1.35rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: #5a6574;
  font-size: 0.95rem;
}

.legal-banner {
  background: var(--warn-bg);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  vertical-align: top;
}

.legal-table th {
  color: var(--navy);
  font-weight: 550;
  background: var(--cream-deep);
}

/* —— Footer —— */
.site-footer {
  background: var(--navy);
  color: var(--muted);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line-gold);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-lockup {
  height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-slogan {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin: 0 0 0.65rem;
}

.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-meta {
  border-top: 1px solid var(--line-cream);
  padding-top: 1.25rem;
  font-size: 0.78rem;
  display: grid;
  gap: 0.4rem;
}

.footer-meta a {
  color: var(--gold);
}

.footer-meta p {
  margin: 0;
}

/* —— Utility —— */
.mt-0 { margin-top: 0; }
.gold-rule {
  border: 0;
  border-top: 1px solid var(--line-gold);
  margin: 1.25rem 0;
}

.i18n-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  padding: 0.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line-gold);
}


/* Peer Escritor R2/R4 — visual kicker + A01 under eyebrow */
.hero-kicker {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--cream, #F8F5EF);
  opacity: 0.92;
  line-height: 1.25;
}
.hero-slogan {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--gold, #C4A882);
}
