/* ==========================================================================
   Sit Trans · v4 — Mobile-first (frontend-design)
   Paleta oficial: navy / gold / gold-light / prata · Outfit + Manrope
   Assinatura: "linha de rota" dourada (pedido → rota → embarque → chegada)
   Breakpoints: base = mobile | min-width: 561px = tablet | min-width: 961px = desktop
   ========================================================================== */

:root {
  --navy: #0A1E3C;
  --navy-2: #12284A;
  --navy-3: #1A3560;
  --ink: #060C1A;
  --gold: #D4AF37;
  --gold-light: #E7C96E;
  --white: #FFFFFF;
  --silver: #B0B5BA;
  --text-body: #D6DDE8;
  --text-muted: #9AA6B5;

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --header-h: 72px;
  --radius: 16px;
  --line: rgba(212, 175, 55, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; }
i[data-lucide] { display: inline-block; vertical-align: middle; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: #141414; }

/* ==========================================================================
   Fundo fixo Hero
   ========================================================================== */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: url("../img/hero_0016.webp") no-repeat center / cover;
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(212, 175, 55, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(10, 30, 60, 0.9) 0%, rgba(6, 12, 26, 0.93) 40%, rgba(6, 12, 26, 0.98) 100%);
}

/* ==========================================================================
   Header — MOBILE BASE
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  background: linear-gradient(to bottom, rgba(16, 12, 26, 0.92), rgba(16, 12, 26, 0));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(6, 12, 26, 0.98);
  border-bottom-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Nav desktop — hidden by default (mobile) */
.site-nav { display: none; }

/* ==========================================================================
   Menu Toggle (Hambúrguer) — visible by default (mobile)
   ========================================================================== */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  gap: 5px;
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 110;
}
.menu-toggle:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}
.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Menu Overlay
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 12, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.mobile-menu__link:hover {
  color: var(--gold);
  transform: scale(1.05);
}
.mobile-menu__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.mobile-menu__link:hover::after {
  width: 100%;
}
.mobile-menu__cta {
  margin-top: 20px;
  width: 100%;
  max-width: 280px;
}
.mobile-menu__phone {
  width: 100%;
  max-width: 280px;
}

/* ==========================================================================
   Botões — MOBILE BASE
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.98); }
.btn--sm { padding: 9px 16px; font-size: 13px; border-radius: 9px; }
.btn--lg { padding: 17px 28px; font-size: 15px; border-radius: 12px; }
.btn--xl { padding: 21px 36px; font-size: 18px; border-radius: 14px; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #182338;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.26);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212, 175, 55, 0.38); }

.btn--ghost { background: transparent; border-color: rgba(212, 175, 55, 0.5); color: var(--gold-light); }
.btn--ghost:hover { background: rgba(212, 175, 55, 0.08); }

/* Botão WhatsApp verde (estilo rascunho-conteudo) */
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  text-decoration: none;
}
.btn--whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
.btn--whatsapp:active {
  transform: scale(0.98);
}
.btn--whatsapp svg,
.btn--whatsapp i {
  width: 20px;
  height: 20px;
}
.btn--whatsapp--sm {
  padding: 12px 20px;
  font-size: 13px;
  border-radius: 10px;
}
.btn--whatsapp--lg {
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 14px;
}
.btn--whatsapp--xl {
  padding: 20px 36px;
  font-size: 18px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   Tipografia compartilhada — MOBILE BASE
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.h2 em { font-style: italic; color: var(--gold); }
.h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--white); margin-bottom: 8px; }
.body { font-size: 16.5px; line-height: 1.7; color: var(--text-body); margin-bottom: 16px; max-width: 60ch; }

/* ==========================================================================
   Hero — MOBILE BASE
   ========================================================================== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero-inner { width: min(1180px, 92vw); margin-inline: auto; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 8vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-title::after {
  content: "®";
  display: inline-block;
  font-size: 0.12em;
  vertical-align: top;
  margin-left: 0.35em;
  color: var(--gold);
  font-weight: 600;
}
.hero-sub {
  margin-top: 28px;
  max-width: 58ch;
  font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.6;
  color: var(--text-body);
}

/* Linha de rota (assinatura) */
.route {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  width: min(440px, 100%);
}
.route-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}
.route-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.25));
  position: relative;
}
.route-line::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}
.route-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: normal;
}

.hero-cta { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Seções — MOBILE BASE
   ========================================================================== */
.section { position: relative; z-index: 1; padding: clamp(56px, 10vw, 120px) 0; }
.section--solid { background: rgba(6, 12, 26, 0.72); border-block: 1px solid var(--line); }
.section--cta { text-align: center; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container--narrow { width: min(800px, 92vw); }

/* Grids — all 1 column by default (mobile) */
.grid { display: grid; gap: clamp(28px, 5vw, 64px); align-items: start; }
.grid--2 { grid-template-columns: 1fr; }

.section-head { margin-bottom: clamp(28px, 5vw, 48px); max-width: 720px; }

/* Cardio / fatos */
.cardio {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 30, 60, 0.4);
  padding: clamp(24px, 3vw, 36px);
}
.facts { display: grid; gap: 6px; }
.facts li { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.facts li:last-child { border-bottom: none; }
.facts svg { flex: 0 0 19px; width: 19px; height: 19px; color: var(--gold); margin-top: 3px; }
.facts span { font-size: 15px; color: var(--text-body); }
.facts strong { color: var(--white); font-weight: 600; }

/* Cards de serviço — 1 column (mobile) */
.cards { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 3vw, 28px); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(10, 30, 60, 0.55), rgba(6, 12, 26, 0.6));
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.5); }
.card-ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--gold);
  margin-bottom: 22px;
}
.card-ico svg { width: 24px; height: 24px; }
.card .h3 { font-size: 21px; }
.card p { font-size: 15px; color: var(--text-muted); margin-bottom: 22px; }
.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.2s ease, gap 0.2s ease;
}
.card-link svg { width: 15px; height: 15px; }
.card-link:hover { color: var(--gold); gap: 10px; }

/* Diferenciais — 1 column (mobile) */
.check-grid { display: grid; grid-template-columns: 1fr; gap: 14px 32px; max-width: 960px; }
.check-grid li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}
.check-grid svg { flex: 0 0 21px; width: 21px; height: 21px; color: var(--gold); margin-top: 2px; }
.check-grid strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--white); margin-bottom: 3px; }
.check-grid small { font-size: 14px; color: var(--text-muted); }

/* Passos — 1 column (mobile) */
.steps { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 3vw, 28px); }
.steps li { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(6, 12, 26, 0.5); padding: clamp(24px, 3vw, 32px); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy-2);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.steps .h3 { font-size: 18px; }
.steps p { font-size: 14.5px; color: var(--text-muted); }

/* Avaliações — 1 column (mobile) */
.reviews { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 3vw, 28px); max-width: 1180px; }
.review {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 30, 60, 0.4);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}
.review-g {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  background: #4285F4;
  margin-bottom: 18px;
}
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.review p { font-size: 15.5px; line-height: 1.65; color: var(--text-body); margin-bottom: 16px; }
.review footer { margin-top: auto; font-size: 13px; color: var(--silver); letter-spacing: 0.02em; }

/* FAQ */
.faq details { border-bottom: 1px solid rgba(212, 175, 55, 0.16); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { font-size: 15px; line-height: 1.65; color: var(--text-muted); padding-bottom: 18px; max-width: 60ch; }

/* Contato */
.contact-list li {
  display: flex;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  font-size: 15.5px;
  color: var(--text-body);
  align-items: flex-start;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list svg { flex: 0 0 19px; width: 19px; height: 19px; color: var(--gold); margin-top: 3px; }
.contact-list a:hover { color: var(--gold-light); }
.contact-list + .btn { margin-top: 20px; }

.map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
}
.map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; filter: grayscale(90%) invert(92%) contrast(0.92); opacity: 0.9; }

/* CTA final */
.section--cta .h2 { margin-bottom: 18px; }
.section--cta .body { max-width: 52ch; margin-inline: auto; margin-bottom: 30px; }
.section--cta .btn { margin-inline: auto; }

/* ==========================================================================
   Footer — MOBILE BASE (1 column)
   ========================================================================== */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--ink);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 60px);
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding: 60px 0 44px;
}
.f-brand p { font-size: 14.5px; color: var(--text-muted); margin: 18px 0 22px; max-width: 34ch; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--silver);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.f-social a:hover { color: var(--gold); border-color: var(--gold); }
.f-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.f-col li { margin-bottom: 10px; font-size: 14.5px; color: var(--text-muted); }
.f-col a:hover { color: var(--gold-light); }
.f-contact li { display: flex; gap: 10px; align-items: flex-start; }
.f-contact svg { flex: 0 0 16px; width: 16px; height: 16px; color: var(--gold); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px max(24px, 4vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: min(1180px, 92vw);
  margin-inline: auto;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { font-size: 13px; color: var(--text-muted); }
.footer-bottom nav a:hover { color: var(--gold-light); }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Tablet (≥ 561px)
   ========================================================================== */
@media (min-width: 561px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: space-between; text-align: left; }
  .map { min-height: 360px; }
  .map iframe { min-height: 360px; }
}

/* ==========================================================================
   Desktop (≥ 961px)
   ========================================================================== */
@media (min-width: 961px) {
  .site-nav { display: flex; gap: clamp(12px, 2vw, 30px); }
  .site-nav a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-body);
    transition: color 0.2s ease;
    position: relative;
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .site-nav a:hover { color: var(--gold-light); }
  .site-nav a:hover::after { width: 100%; }

  .menu-toggle { display: none; }
  .header-cta-desktop { display: inline-flex; }

  .grid--2 { grid-template-columns: 1.2fr 1fr; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.4fr; }

  .hero { min-height: 100vh; }
  .hero-title { font-size: clamp(1.8rem, 5vw, 4rem); }

  .route-label { white-space: nowrap; }

  .map { min-height: 360px; }
  .map iframe { min-height: 360px; }
}

/* ==========================================================================
   Legal pages — content + forms
   ========================================================================== */
.legal-content h2.h3 {
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--gold);
}
.legal-content h2.h3:first-child {
  margin-top: 0;
}
.legal-content p {
  margin-bottom: 16px;
  color: var(--text-body);
}
.legal-content ul.facts {
  margin-bottom: 24px;
}
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--gold-light);
}

.legal-form {
  max-width: 640px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--silver);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  background: rgba(10, 30, 60, 0.6);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23B0B5BA' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option {
  background: var(--navy);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
@media (min-width: 561px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}