/* =========================================================
   Mamãe & Baby Viagem — Sistema de Design
   Editorial, premium, feminino moderno
   ========================================================= */

:root {
  /* Paleta — neutros quentes editoriais */
  --bg: #F6F1E9;
  --bg-alt: #EFE7DA;
  --bg-deep: #E7DDCB;
  --ink: #2A2520;
  --ink-soft: #5C5249;
  --ink-mute: #8F8478;
  --line: #D9CFBE;

  /* Acentos */
  --clay: #B86E4F;
  --clay-deep: #94583F;
  --sage: #7E8A6F;
  --blush: #E4C7B5;
  --cream: #FBF8F1;

  /* Tipografia */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Espaçamento e shape */
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 1px 2px rgba(42, 37, 32, 0.04), 0 8px 24px rgba(42, 37, 32, 0.06);
  --shadow-card: 0 1px 2px rgba(42, 37, 32, 0.05), 0 20px 48px rgba(42, 37, 32, 0.08);

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* Tipografia */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.08;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; }
p { color: var(--ink-soft); }
em.italic { font-family: var(--font-display); font-style: italic; font-weight: 300; color: var(--clay-deep); }

/* Container */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   NAV
========================================================= */
.topbar {
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 0;
  text-align: center;
  font-weight: 400;
}
.topbar span { opacity: .8; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 233, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clay);
  display: inline-block;
}
.logo em { font-style: italic; font-weight: 300; color: var(--clay-deep); }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}
.nav-links a { transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle { display: none; width: 28px; height: 22px; position: relative; }
.menu-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.menu-toggle span:nth-child(1) { top: 2px; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 18px; }

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: block; }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  padding: 100px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
}
.mobile-close {
  position: absolute;
  top: 28px; right: var(--gutter);
  font-size: 28px;
  font-family: var(--font-display);
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -15%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: .45;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text .eyebrow { margin-bottom: 24px; display: inline-flex; align-items: center; gap: 12px;}
.hero-text .eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--clay);
}
.hero-text h1 { margin-bottom: 28px; }
.hero-text h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--clay-deep);
}
.hero-text p.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  max-width: 520px;
  margin-bottom: 40px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 560px;
}
.hero-meta .stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.hero-meta .stat .lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Hero imagem editorial */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-visual .frame-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hero-visual .frame-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual .badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  max-width: 240px;
}
.hero-visual .badge .badge-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.hero-visual .badge .badge-row svg { color: var(--sage); }
.hero-visual .badge p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.45;
}
.hero-visual .badge strong { font-weight: 600; }

.hero-visual .mark {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.25;
  font-style: italic;
  transform: rotate(-8deg);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Marquee / Trust strip
========================================================= */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.trust-inner {
  display: flex; gap: 50px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.trust-inner span { display: inline-flex; align-items: center; gap: 50px; }
.trust-inner span::after {
  content: "✶";
  color: var(--clay);
  margin-left: 50px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   Sections base
========================================================= */
section.block {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-head .left .eyebrow { margin-bottom: 14px; display: block; }
.section-head .left h2 em { font-style: italic; color: var(--clay-deep); }
.section-head .right p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
  max-width: 520px;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
}

/* =========================================================
   CHECKLIST
========================================================= */
.checklist {
  background: var(--bg);
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.check-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s ease;
  position: relative;
}
.check-card:hover { background: var(--cream); }
.check-card .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--clay-deep);
  flex-shrink: 0;
}
.check-card:hover .ico { background: var(--blush); }
.check-card .num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}
.check-card h4 { margin-bottom: 4px; color: var(--ink); }
.check-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* =========================================================
   COMFORT — Editorial split
========================================================= */
.comfort {
  background: var(--bg-alt);
}
.comfort-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 110px);
}
.comfort-row:last-child { margin-bottom: 0; }
.comfort-row.reverse { direction: rtl; }
.comfort-row.reverse > * { direction: ltr; }

.comfort-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.comfort-visual img { width: 100%; height: 100%; object-fit: cover; }
.comfort-visual .caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(6px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.comfort-text .eyebrow { margin-bottom: 16px; display: inline-block; }
.comfort-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
  line-height: 1.1;
}
.comfort-text h3 em { font-style: italic; color: var(--clay-deep); }
.comfort-text p { margin-bottom: 18px; font-size: 16.5px; }
.comfort-text ul.bullets { margin-top: 24px; }
.comfort-text ul.bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.comfort-text ul.bullets li:last-child { border-bottom: 1px solid var(--line); }
.comfort-text ul.bullets li svg { color: var(--clay); margin-top: 4px; flex-shrink: 0; }

@media (max-width: 820px) {
  .comfort-row, .comfort-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .comfort-row.reverse > * { direction: ltr; }
}

/* =========================================================
   SAFETY
========================================================= */
.safety { background: var(--bg); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.safety-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.safety-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.safety-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  margin-bottom: 22px;
}
.safety-card h4 { margin-bottom: 10px; }
.safety-card p { font-size: 14.5px; line-height: 1.6; }

/* =========================================================
   DESTINATIONS
========================================================= */
.destinations {
  background: var(--ink);
  color: var(--cream);
}
.destinations h2 { color: var(--cream); }
.destinations h2 em { color: var(--blush); }
.destinations .eyebrow { color: var(--blush); }
.destinations .section-head .right p { color: rgba(251, 248, 241, 0.7); }

.dest-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 18px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #3a332b;
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 16, 13, .85) 0%, rgba(20, 16, 13, 0) 60%);
}
.dest-card .info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 1;
  color: var(--cream);
}
.dest-card .info .tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 6px;
}
.dest-card .info h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
}
.dest-card:nth-child(1) { grid-row: span 2; }
.dest-card:nth-child(4) { grid-column: span 2; }
@media (max-width: 880px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
  .dest-card:nth-child(1), .dest-card:nth-child(4) { grid-row: auto; grid-column: span 2; }
}

/* =========================================================
   FAQ
========================================================= */
.faq { background: var(--bg-alt); }
.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--ink);
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--clay-deep); }
.faq-item summary .plus {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .35s ease, background .25s;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--ink); color: var(--cream); }
.faq-item .answer {
  padding: 0 0 28px 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================================
   Newsletter / final
========================================================= */
.newsletter {
  background: var(--bg);
  padding: clamp(80px, 10vw, 130px) 0;
  text-align: center;
}
.newsletter h2 { max-width: 760px; margin: 0 auto 20px; }
.newsletter h2 em { font-style: italic; color: var(--clay-deep); }
.newsletter p {
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 16.5px;
}
.newsletter form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}
.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.newsletter input::placeholder { color: var(--ink-mute); }
.newsletter .privacy-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 18px;
}
.newsletter .privacy-note a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   FOOTER
========================================================= */
footer.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 60px);
  margin-bottom: 60px;
}
.footer-grid h5 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 360px;
}
.footer-brand .corp {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.7;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  color: var(--ink-soft);
  transition: color .2s;
}
.footer-col a:hover { color: var(--clay-deep); }

.disclaimer {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 36px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.disclaimer strong { color: var(--ink); }

.copyright {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink-mute);
  font-size: 12.5px;
}
.copyright .legal-links { display: flex; gap: 22px; flex-wrap: wrap;}
.copyright .legal-links a { transition: color .2s; }
.copyright .legal-links a:hover { color: var(--clay-deep); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .copyright { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   COOKIE BANNER
========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 540px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-card);
  z-index: 90;
  transform: translateY(160%);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { margin-bottom: 8px; font-size: 1rem; }
.cookie-banner p { font-size: 13.5px; line-height: 1.55; margin-bottom: 18px; }
.cookie-banner p a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 3px;}
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; font-size: 13px; }

/* =========================================================
   PÁGINAS INSTITUCIONAIS (legal/contato)
========================================================= */
.page-hero {
  padding: clamp(80px, 10vw, 130px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 18px; display: inline-block; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 820px;
  margin: 0 auto 18px;
}
.page-hero h1 em { font-style: italic; color: var(--clay-deep); }
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
}
.page-hero .updated {
  margin-top: 24px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.legal-content {
  padding: clamp(50px, 7vw, 90px) 0 clamp(80px, 10vw, 130px);
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 56px 0 18px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal-content p, .legal-content li {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 20px; }
.legal-content ul li { list-style: disc; margin-bottom: 8px; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 3px;}

/* contato */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  padding: clamp(50px, 7vw, 90px) 0 clamp(80px, 10vw, 130px);
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info h2 { margin-bottom: 22px; }
.contact-info h2 em { font-style: italic; color: var(--clay-deep); }
.contact-info p { margin-bottom: 22px; font-size: 16.5px; line-height: 1.7; }
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--clay-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list .label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.contact-list .value { color: var(--ink); font-size: 15px; }

.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus { border-color: var(--clay); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { margin-top: 6px; width: 100%; justify-content: center; }
.form-note { font-size: 12px; color: var(--ink-mute); margin-top: 14px; line-height: 1.5; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Focus accessibility */
:focus-visible {
  outline: 2px solid var(--clay-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip-link */
.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 14px;
  font-size: 13px;
  z-index: 1000;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
