/* ================================================================
   Cartório Express Miami — Atelier Consular
   Direção: Art Deco editorial + Miami sunset boutique
   Tipografia: Fraunces (display) + Manrope (corpo)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,WONK@0,9..144,300..800,0..100,0..1;1,9..144,300..800,0..100,0..1&family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Color tokens */
  --ink: #0e1530;
  --navy: #1a2546;
  --navy-2: #2a3863;
  --navy-3: #475286;
  --gold: #c79a3e;
  --gold-bright: #e6a32e;
  --gold-soft: #d4b86a;
  --gold-pale: #efdfa8;
  --paper: #f4ecda;
  --paper-2: #ece2cd;
  --cream: #faf3e3;
  --white: #ffffff;
  --sunset-1: #b73a3a;
  --sunset-2: #d97a3a;
  --sunset-3: #e6a32e;
  --hairline: rgba(26, 37, 70, 0.14);
  --hairline-strong: rgba(26, 37, 70, 0.32);
  --hairline-gold: rgba(199, 154, 62, 0.42);
  --hairline-on-dark: rgba(244, 236, 218, 0.18);

  /* Typography tokens */
  --display: 'Fraunces', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spatial */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --max: 1320px;
  --max-narrow: 880px;
  --header-h: 84px;

  /* Effects */
  --shadow-1: 0 1px 0 var(--hairline), 0 8px 24px -10px rgba(14, 21, 48, 0.18);
  --shadow-2: 0 30px 80px -30px rgba(14, 21, 48, 0.35);
  --grain: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01' on, 'cv11' on;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: var(--grain);
  pointer-events: none;
  z-index: 1;
  opacity: .55;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 .6em;
}
h1 {
  font-size: clamp(3rem, 8.5vw, 7.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
}
h1 .italic, h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
  font-weight: 350;
  color: var(--navy-2);
}
h1 .gold {
  color: var(--gold);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 0;
}
h2 .italic, h2 em { font-style: italic; color: var(--navy-2); }
h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1em;
  color: var(--navy-2);
}
p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--navy);
  max-width: 56ch;
  line-height: 1.55;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
}
.eyebrow.no-rule::before { display: none; }
.eyebrow.centered { justify-content: center; }

.numeral {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90, "WONK" 1;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.row { display: grid; gap: clamp(2rem, 5vw, 5rem); }
section { padding: clamp(4rem, 8vw, 7.5rem) 0; position: relative; }
section.flush-top { padding-top: 0; }

.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--paper); }
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }
.bg-navy h2, .bg-navy h3, .bg-ink h2, .bg-ink h3 { color: var(--paper); }
.bg-navy h1 { color: var(--paper); }
.bg-navy h1 .italic, .bg-navy h1 em { color: var(--gold-pale); }
.bg-navy h1 .gold, .bg-ink h1 .gold { color: var(--gold-bright); }
.bg-navy p, .bg-ink p { color: rgba(244, 236, 218, 0.78); }
.bg-navy .eyebrow, .bg-ink .eyebrow { color: var(--gold-bright); }
.bg-navy .eyebrow::before, .bg-ink .eyebrow::before { background: var(--gold-bright); }

/* Hairline rules (art deco) */
.deco-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 32px 0;
  color: var(--gold);
}
.deco-rule::before,
.deco-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline-gold);
}
.deco-rule .sunburst {
  width: 28px; height: 28px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 236, 218, 0.85);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--hairline);
  transition: background .25s, border-color .25s;
}
.site-header.scrolled {
  background: rgba(244, 236, 218, 0.96);
  border-bottom-color: var(--hairline-strong);
}
.header-row {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.brand img {
  height: 118px; width: auto;
}
.brand-mark {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-mark .top {
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.brand-mark .name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 4px;
}
.brand-mark .name em { font-style: italic; color: var(--navy-2); font-variation-settings: "opsz" 72, "SOFT" 60, "WONK" 1; }

.nav {
  display: flex; align-items: center; gap: 30px;
}
.nav a {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: var(--cream) !important;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--body);
  letter-spacing: 0.02em;
  border: 1px solid var(--ink);
  border-radius: 0;
  position: relative;
  transition: background .25s, color .25s;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 3px;
  border: 1px solid rgba(244, 236, 218, 0.25);
  pointer-events: none;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; border-color: var(--gold); }
.nav-cta:hover::before { border-color: rgba(14, 21, 48, 0.25); }
.nav-cta svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  background: none; border: 1px solid var(--hairline-strong);
  color: var(--ink);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid currentColor;
  border-radius: 0;
  position: relative;
  background: transparent;
  color: var(--ink);
  transition: all .28s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute; inset: 4px;
  border: 1px solid currentColor;
  opacity: 0.18;
  pointer-events: none;
  transition: inset .28s ease;
}
.btn:hover::before { inset: 2px; opacity: 0.35; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--navy); color: var(--gold-pale); }
.btn-primary::before { border-color: var(--cream); opacity: 0.22; }

.btn-gold {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn-wa {
  background: #1c5e3f;
  color: var(--cream);
  border-color: #1c5e3f;
}
.btn-wa:hover { background: #14492f; border-color: #14492f; color: var(--cream); }
.btn-wa::before { border-color: var(--cream); opacity: 0.25; }

.bg-navy .btn-ghost, .bg-ink .btn-ghost {
  color: var(--cream);
}
.bg-navy .btn-ghost:hover, .bg-ink .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 0;
  background: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 38px;
}
.hero-eyebrow-row .since {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-3);
}
.hero h1 {
  margin-bottom: 28px;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--navy);
  max-width: 52ch;
  margin-bottom: 38px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding: 28px 0 0;
  border-top: 1px solid var(--hairline);
}
.hero-stat .num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 40, "WONK" 1;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat .label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy-3);
  margin-top: 8px;
  display: block;
}

.hero-card-aside {
  position: relative;
  padding: 0;
  align-self: flex-start;
  margin-top: 32px;
}
.passport-card {
  background: linear-gradient(180deg, var(--navy) 0%, var(--ink) 100%);
  color: var(--cream);
  padding: 32px 28px 28px;
  border: 1px solid var(--gold);
  position: relative;
  box-shadow: var(--shadow-2);
}
.passport-card::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(199, 154, 62, 0.32);
  pointer-events: none;
}
.passport-card .pp-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 22px;
}
.passport-card h3 {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.passport-card h3 em { font-style: italic; color: var(--gold-pale); }
.passport-card ul {
  list-style: none; padding: 0; margin: 0 0 22px;
}
.passport-card li {
  padding: 0;
  border-bottom: 1px dashed rgba(244, 236, 218, 0.18);
  display: flex;
}
.passport-card li:last-child { border-bottom: 0; }
.passport-card li a {
  padding: 11px 0;
  display: flex; gap: 14px; align-items: center;
  font-size: .92rem;
  color: rgba(244, 236, 218, 0.85);
  flex: 1;
  transition: color .25s;
}
.passport-card li a:hover {
  color: var(--gold-bright);
}
.passport-card li .num {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  min-width: 22px;
}
.passport-card .pp-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(199, 154, 62, 0.3);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Skyline */
.hero-skyline {
  margin-top: 60px;
  position: relative;
  display: block;
  color: var(--navy);
}
.hero-skyline svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Hero stamps */
.hero-stamp {
  position: absolute;
  top: 90px;
  right: clamp(0px, 4vw, 60px);
  width: 130px; height: 130px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.9;
  animation: stampRotate 60s linear infinite;
}
.hero-stamp svg { width: 100%; height: 100%; }
@keyframes stampRotate {
  to { transform: rotate(360deg); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 70, "WONK" 1;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--ink);
  display: flex; align-items: center; gap: 60px;
}
.marquee-item::after {
  content: '✦';
  font-size: 0.7em;
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Section header (editorial) ---------- */
.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}
.sec-head .sec-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  padding-bottom: 8px;
}
.sec-head .sec-title h2 {
  margin: 0;
  max-width: 18ch;
}
.sec-head .sec-title p {
  font-size: 1.05rem;
  color: var(--navy-2);
  max-width: 52ch;
  margin: 16px 0 0;
}
.sec-head.centered {
  grid-template-columns: 1fr;
  text-align: center;
  border-bottom: 0;
  padding-bottom: 0;
}
.sec-head.centered .sec-title { max-width: 760px; margin: 0 auto; }
.sec-head.centered .sec-num { margin: 0 auto 16px; }
.sec-head.centered .sec-num::before {
  content: '— ';
}
.sec-head.centered .sec-title h2 { max-width: none; }
.sec-head.centered .sec-title p { margin-left: auto; margin-right: auto; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.5vw, 2.8rem) clamp(1.5rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  background: var(--paper);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background .35s ease;
  overflow: hidden;
}
.service-card:nth-child(2n) { border-right: 0; }
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(199, 154, 62, 0.07) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { opacity: 1; }
.service-card .svc-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.service-card .svc-num::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--hairline);
  max-width: 80px;
}
.service-card h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.022em;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.service-card h3 em {
  font-style: italic;
  color: var(--navy-2);
  font-variation-settings: "opsz" 72, "SOFT" 70, "WONK" 1;
}
.service-card p {
  color: var(--navy-2);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  max-width: 44ch;
}
.service-card .svc-meta {
  display: flex; gap: 18px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy-3);
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--hairline);
  position: relative;
  z-index: 2;
}
.service-card .svc-arrow {
  position: absolute;
  right: clamp(1.5rem, 3vw, 2.4rem);
  bottom: clamp(2rem, 3.5vw, 2.8rem);
  width: 44px; height: 44px;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  z-index: 2;
}
.service-card:hover .svc-arrow {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}

/* ---------- Story (Pedro / history) ---------- */
.story {
  background: var(--cream);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.story-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.story-stamp {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  margin-bottom: 24px;
}
.story-aside p.cap {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.story-content blockquote {
  margin: 0 0 32px;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 40, "WONK" 0;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.012em;
  position: relative;
  padding-left: 32px;
}
.story-content blockquote::before {
  content: '"';
  position: absolute;
  left: -8px; top: -22px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(5rem, 9vw, 8rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.story-content blockquote em { font-style: italic; color: var(--navy-2); }
.story-content .signature {
  display: flex; align-items: center; gap: 14px;
  margin: 28px 0 40px;
  padding-left: 32px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-3);
}
.story-content .signature::before {
  content: '—'; color: var(--gold);
}
.story-content p {
  font-size: 1.05rem;
  color: var(--navy);
  max-width: 60ch;
}
.story-content p + p { margin-top: 1.2em; }

/* ---------- Steps (how it works) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline-on-dark);
}
.bg-ink .steps { border-top-color: rgba(244, 236, 218, 0.18); }
.step {
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2vw, 2.2rem);
  border-right: 1px solid rgba(244, 236, 218, 0.18);
  position: relative;
}
.step:last-child { border-right: 0; }
.step .step-num {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
  font-weight: 300;
  font-size: clamp(3.5rem, 6vw, 5.2rem);
  color: var(--gold);
  line-height: 0.9;
  margin-bottom: 20px;
}
.step h3 {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.step p {
  font-size: .92rem;
  color: rgba(244, 236, 218, 0.7);
  line-height: 1.55;
  max-width: 28ch;
}

/* ---------- Proof band ---------- */
.proof-band {
  background: var(--paper-2);
  padding: 50px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.proof-item .num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  color: var(--ink);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1;
  display: block;
}
.proof-item .num em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}
.proof-item .label {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-3);
  margin-top: 10px;
}

/* ---------- Reviews (GBP) ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}
.review-card {
  background: rgba(244, 236, 218, 0.08);
  border: 1px solid rgba(199, 154, 62, 0.25);
  padding: 28px 24px;
  position: relative;
}
.review-card::before {
  content: '';
  position: absolute; inset: 4px;
  border: 1px solid rgba(199, 154, 62, 0.12);
  pointer-events: none;
}
.review-stars {
  font-size: 1rem;
  color: var(--gold-bright);
  margin-bottom: 16px;
  display: block;
  letter-spacing: 2px;
}
.review-text {
  color: rgba(244, 236, 218, 0.88);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
  position: relative;
  z-index: 2;
  min-height: 140px;
}
.review-author {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  position: relative;
  z-index: 2;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.01em;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item .faq-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .25s, color .25s, border-color .25s, transform .35s;
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 400;
}
.faq-item[open] .faq-icon {
  background: var(--ink); color: var(--gold); border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-item .faq-body {
  padding: 0 0 32px;
  max-width: 78ch;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ---------- Contact + Map ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}
.contact-info {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  border: 1px solid var(--ink);
}
.contact-info::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid var(--gold);
  opacity: 0.32;
  pointer-events: none;
}
.contact-info h3 {
  color: var(--cream);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 6px;
}
.contact-info h3 em { color: var(--gold-pale); }
.contact-info .ci-tagline {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 38px;
}
.ci-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-top: 1px dashed rgba(244, 236, 218, 0.18);
}
.ci-item:last-of-type { border-bottom: 1px dashed rgba(244, 236, 218, 0.18); }
.ci-item .ci-num {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  text-transform: uppercase;
  min-width: 32px;
  padding-top: 4px;
}
.ci-item .ci-label {
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 6px;
}
.ci-item .ci-value {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color .25s;
}
.ci-item a.ci-value:hover { color: var(--gold-bright); }

.contact-info .btn {
  margin-top: 32px;
  align-self: flex-start;
}
.contact-map {
  position: relative;
  border: 1px solid var(--hairline-strong);
  min-height: 520px;
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  position: absolute; inset: 0;
}
.contact-map .map-corner {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  z-index: 2;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 100%);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230, 163, 46, 0.25), transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(199, 154, 62, 0.32);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 50px;
  align-items: center;
}
.cta-banner h2 {
  color: var(--cream);
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.cta-banner h2 em { color: var(--gold-bright); font-style: italic; }
.cta-banner p {
  color: rgba(244, 236, 218, 0.78);
  font-size: 1.1rem;
  margin: 20px 0 0;
  max-width: 50ch;
}
.cta-banner-cta {
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(244, 236, 218, 0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 28px;
  border-top: 1px solid var(--ink);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sunset-1) 0%, var(--sunset-2) 50%, var(--sunset-3) 100%);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244, 236, 218, 0.14);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand .footer-logo {
  background: var(--paper);
  display: inline-block;
  padding: 14px 18px;
  margin-bottom: 22px;
}
.footer-brand .footer-logo img { height: 56px; width: auto; display: block; }
.footer-brand p {
  color: rgba(244, 236, 218, 0.68);
  font-size: 0.95rem;
  max-width: 40ch;
  line-height: 1.6;
}
.footer-brand .footer-tag {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 60, "WONK" 1;
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin: 8px 0 16px;
  display: block;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 6px 0; }
.footer-col a {
  color: rgba(244, 236, 218, 0.72);
  font-size: 0.94rem;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-col p, .footer-col span { color: rgba(244, 236, 218, 0.72); font-size: 0.94rem; }
.social-row {
  display: flex; gap: 10px; margin-top: 22px;
}
.social-row a {
  width: 40px; height: 40px;
  border: 1px solid rgba(244, 236, 218, 0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background .25s, color .25s, border-color .25s;
}
.social-row a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 236, 218, 0.5);
}
.footer-bottom a { color: rgba(244, 236, 218, 0.78); }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  background: #1c5e3f;
  color: var(--cream);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px rgba(28, 94, 63, 0.45);
  transition: transform .3s, background .25s;
  border: 2px solid var(--cream);
}
.wa-float:hover { transform: scale(1.06); background: #14492f; color: var(--cream); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: '';
  position: absolute; inset: -8px;
  border: 1px solid #1c5e3f;
  border-radius: 50%;
  animation: waPulse 2.4s ease-out infinite;
  opacity: 0.45;
}
@keyframes waPulse {
  0% { transform: scale(.85); opacity: .65; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ================================================================
   SERVICE / INNER PAGES (landing-page style hero)
   ================================================================ */
.svc-hero {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gold);
}
.svc-hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(230, 163, 46, 0.18), transparent 60%);
  pointer-events: none;
}
.svc-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.svc-breadcrumb {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  margin-bottom: 38px;
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap;
}
.svc-breadcrumb a { color: var(--gold-soft); }
.svc-breadcrumb a:hover { color: var(--gold-bright); }
.svc-breadcrumb .sep { opacity: 0.5; }
.svc-hero .svc-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.svc-hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 6.5vw, 5.6rem);
  margin: 0 0 28px;
  letter-spacing: -0.03em;
}
.svc-hero h1 em { color: var(--gold-bright); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1; }
.svc-hero p.lead {
  color: rgba(244, 236, 218, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  max-width: 56ch;
  margin: 0 0 36px;
}
.svc-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.svc-hero .btn-ghost { color: var(--cream); border-color: rgba(244, 236, 218, 0.4); }
.svc-hero .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.svc-hero-stamp {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  margin-left: auto;
  display: block;
  opacity: 0.92;
}
.svc-hero-stamp svg { width: 100%; height: 100%; }

.svc-hero-stats {
  margin-top: clamp(3rem, 5vw, 4rem);
  padding-top: 28px;
  border-top: 1px solid rgba(244, 236, 218, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative; z-index: 2;
}
.svc-hero-stat .num {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-style: italic;
  color: var(--gold-bright);
  font-variation-settings: "opsz" 72, "SOFT" 60, "WONK" 1;
  line-height: 1;
  display: block;
}
.svc-hero-stat .label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 218, 0.7);
  margin-top: 10px;
  display: block;
}

/* Service page content */
.svc-content { padding: clamp(3rem, 6vw, 5rem) 0; }
.svc-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.42fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.svc-content article {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--navy);
}
.svc-content article h2 {
  margin-top: 2.4em;
  margin-bottom: 0.5em;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.svc-content article h2:first-child { margin-top: 0; }
.svc-content article h2 .num-pre {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.62em;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}
.svc-content article h3 {
  margin-top: 1.8em;
  font-size: 1.25rem;
}
.svc-content article p strong { color: var(--ink); }
.svc-content article ul, .svc-content article ol { padding-left: 0; margin-bottom: 1.5em; list-style: none; }
.svc-content article ul li, .svc-content article ol li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--hairline);
}
.svc-content article ul li:last-child, .svc-content article ol li:last-child { border-bottom: 0; }
.svc-content article ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 16px; height: 1px;
  background: var(--gold);
}
.svc-content article ol { counter-reset: olc; }
.svc-content article ol li {
  counter-increment: olc;
}
.svc-content article ol li::before {
  content: counter(olc, decimal-leading-zero);
  position: absolute; left: 0; top: 9px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  background: transparent;
  width: auto; height: auto;
}

.svc-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 32px 28px;
  position: relative;
}
.sidebar-card .ev {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.sidebar-card h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
}
.sidebar-card h3 em { font-style: italic; color: var(--navy-2); }
.sidebar-card .sub {
  font-size: 0.95rem;
  color: var(--navy-2);
  margin-bottom: 22px;
}
.sidebar-card ul {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.sidebar-card li {
  padding: 10px 0;
  border-top: 1px dashed var(--hairline);
  font-size: 0.92rem;
  color: var(--navy);
  display: flex; gap: 12px; align-items: flex-start;
}
.sidebar-card li::before {
  content: '✓';
  font-family: var(--body);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1px;
}
.sidebar-card .btn { width: 100%; justify-content: center; }

.sidebar-card-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.sidebar-card-dark::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(199, 154, 62, 0.32);
  pointer-events: none;
}
.sidebar-card-dark h3 { color: var(--cream); }
.sidebar-card-dark h3 em { color: var(--gold-bright); }
.sidebar-card-dark .ev { color: var(--gold-bright); }
.sidebar-card-dark .sub { color: rgba(244, 236, 218, 0.78); }
.sidebar-card-dark li { color: rgba(244, 236, 218, 0.85); border-color: rgba(244, 236, 218, 0.16); }
.sidebar-card-dark li::before { color: var(--gold-bright); }

/* ================================================================
   PAGE HERO (sobre, contato, blog, simpler hero)
   ================================================================ */
.page-hero {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--hairline);
}
.page-hero .breadcrumb {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: var(--navy-2); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb .sep { opacity: 0.5; }
.page-hero h1 {
  margin: 0 0 22px;
  max-width: 22ch;
}
.page-hero p { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--navy); max-width: 56ch; margin: 0; }

/* ================================================================
   BLOG
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--hairline-strong); }
.blog-card a { display: block; color: inherit; }
.blog-card-thumb { aspect-ratio: 16/9; background: var(--paper-2); overflow: hidden; border-bottom: 1px solid var(--hairline); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 26px 24px 28px; }
.blog-card-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex; gap: 10px;
}
.blog-card h3 { font-size: 1.3rem; margin: 0 0 12px; line-height: 1.2; }
.blog-card p { color: var(--navy-2); font-size: 0.96rem; margin: 0 0 14px; }
.blog-card .more {
  font-family: var(--body);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.blog-empty {
  text-align: center;
  padding: 60px 30px;
  background: var(--cream);
  border: 1px dashed var(--hairline-strong);
  grid-column: 1 / -1;
}
.blog-empty h3 { font-size: 1.6rem; margin-bottom: 14px; }
.blog-empty p { color: var(--navy-2); margin-bottom: 22px; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card-aside { max-width: 460px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-aside { position: static; max-width: 360px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid rgba(244, 236, 218, 0.18); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .svc-content-grid { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-stamp { display: none; }
  .svc-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .sec-head { grid-template-columns: 1fr; gap: 18px; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--paper); padding: 24px var(--gutter);
    border-bottom: 1px solid var(--hairline);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--hairline); }
  .nav-cta { justify-content: center; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0 !important; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .proof-row { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .svc-hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stamp { width: 90px; height: 90px; top: 30px; right: 16px; }
  .passport-card { transform: none; }
  .contact-info { padding: 28px 22px; }
  .contact-info::before { inset: 6px; }

  /* Mobile: logo menor */
  .brand img { height: 62px; }

  /* Mobile: remover links do passport-card */
  .passport-card li a {
    pointer-events: none;
    color: rgba(244, 236, 218, 0.85);
  }

  /* Mobile: eyebrow apinhada - remover */
  .hero-eyebrow-row { display: none; }

  /* Mobile: aumentar gap entre botões */
  .hero-cta { gap: 20px; flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Mobile: remover selo da story */
  .story-stamp { display: none; }

  /* Mobile: avaliações em 2 colunas em vez de 4 */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .review-text { font-size: 0.85rem; min-height: auto; line-height: 1.5; }
  .review-card { padding: 20px 16px; }

  /* Mobile: centralizar CTA banner */
  .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  .cta-banner-cta { align-items: center; justify-content: center; }
  .cta-banner p { margin-left: auto; margin-right: auto; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1), transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in-view {
  opacity: 1; transform: translateY(0);
}
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
