/* ═══════════════════════════════════════════════════════
   AquiSeFaz — site institucional
   Paleta: navy #082744 · blue #1f63ad · gold #c99636 · white/cinza
   ═══════════════════════════════════════════════════════ */

:root {
  --bg:          #f4f7fa;
  --panel:       #ffffff;
  --ink:         #08233f;
  --muted:       #617184;
  --line:        #d9e2ea;
  --navy:        #082744;
  --navy-2:      #0d355b;
  --navy-dark:   #061c30;
  --blue:        #1f63ad;
  --blue-dark:   #174a82;
  --gold:        #c99636;
  --gold-dark:   #a87c28;
  --gold-soft:   #f6ead1;
  --gold-bg:     #fffbf0;
  --soft:        #eef4f8;
  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 18px 42px rgba(8,39,68,.09);
  --shadow-soft: 0 10px 26px rgba(8,39,68,.07);
  --shadow-hover:0 22px 48px rgba(8,39,68,.14);
  --px:          clamp(20px, 5vw, 76px);
}

/* ── Reset base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
               "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3, dl, dd { margin-top: 0; }
address { font-style: normal; }
img { display: block; max-width: 100%; height: auto; }

/* ── Utility bar ────────────────────────────────────── */
.utility-bar {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
  padding: 7px var(--px);
  background: var(--navy-dark);
  color: #b8d0e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.utility-bar a { color: var(--gold); transition: color .2s; }
.utility-bar a:hover { color: #e6b84d; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px var(--px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 24px rgba(8,39,68,.07);
  min-height: 64px;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 200px; max-width: 38vw; height: auto; }

/* ── Nav ─────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: #48596c;
  padding: 8px 13px;
  border-radius: 8px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  background: var(--soft);
  color: var(--navy);
}

.nav-area-cliente {
  margin-left: 6px;
  border: 1px solid var(--line) !important;
  color: var(--blue) !important;
}
.nav-area-cliente:hover { background: var(--soft) !important; }

.nav-cta {
  margin-left: 6px;
  padding: 9px 18px !important;
  background: var(--gold) !important;
  color: #0e2236 !important;
  border-radius: 9px !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 18px rgba(201,150,54,.28);
  transition: background .18s, transform .18s, box-shadow .18s !important;
}
.nav-cta:hover {
  background: #dba93e !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(201,150,54,.34) !important;
}

/* ── Nav Overlay (mobile) ────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199;
  opacity: 0;
  transition: opacity .25s;
}
.nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ── Hamburger ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Eyebrow / labels ────────────────────────────────── */
.eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Headings ────────────────────────────────────────── */
h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.02em;
}
h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.14;
}
h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}

/* ── Section padding ─────────────────────────────────── */
.site-section {
  padding: 72px var(--px);
}
.site-section--sm { padding: 48px var(--px); }
.site-section--lg { padding: 96px var(--px); }

/* ── Seção título de página interna ──────────────────── */
.page-title {
  position: relative;
  overflow: hidden;
  padding: 56px var(--px);
  background: var(--navy);
  color: #fff;
  border-bottom: 3px solid var(--gold);
}
.page-title::after {
  content: "";
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  top: 50%;
  width: 200px;
  height: 200px;
  transform: translateY(-50%);
  background: url("../brand/mark.png") center / contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.page-title h1 { position: relative; z-index: 1; color: #fff; margin-bottom: 12px; }
.page-title p  { position: relative; z-index: 1; max-width: 720px; color: #c0d8ee; font-size: 18px; margin: 0; }

/* ── Botões ──────────────────────────────────────────── */
.actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  cursor: pointer;
}
.button.primary {
  background: var(--gold);
  color: #0e2236;
  box-shadow: 0 8px 22px rgba(201,150,54,.26);
}
.button.primary:hover {
  background: #dba93e;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201,150,54,.34);
}
.button.secondary, .button.outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.button.secondary:hover, .button.outline:hover {
  background: var(--soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.button.navy {
  background: var(--navy);
  color: #fff;
}
.button.navy:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(8,39,68,.2);
}
/* botão no hero escuro */
.hero .button.secondary {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.hero .button.secondary:hover {
  background: rgba(255,255,255,.18);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,420px);
  gap: 48px;
  align-items: center;
  padding: 72px var(--px);
  background: linear-gradient(135deg, #082744 0%, #0d3a60 100%);
  color: #fff;
  border-bottom: 3px solid rgba(201,150,54,.4);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../brand/mark.png") right 6% center / 340px no-repeat;
  opacity: .06;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1      { color: #fff; max-width: 700px; }
.hero-sub     { max-width: 580px; color: #c0d8ee; font-size: 18px; margin-bottom: 0; }

/* carousel */
.hero-carousel {
  position: relative;
  z-index: 1;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: #061d33;
  box-shadow: 0 28px 60px rgba(0,0,0,.28);
}
.carousel-track,
.carousel-slide,
.carousel-slide img { width: 100%; height: 100%; }
.carousel-track { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.carousel-slide.active         { opacity: 1; }
.carousel-slide.active img     { animation: carouselDrift 6s ease-in-out both; }
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,39,68,.06), rgba(8,39,68,.72));
}
.carousel-slide img            { display: block; object-fit: cover; }
.carousel-slide figcaption {
  position: absolute;
  left: 22px; right: 22px; bottom: 24px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}
.carousel-controls {
  position: absolute;
  left: 22px;
  bottom: 84px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 30px;
  height: 4px;
  min-height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: width .22s, background .22s;
}
.carousel-dot.active {
  width: 46px;
  background: var(--gold);
}

/* ── Faixa de indicadores ────────────────────────────── */
.authority-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(8,39,68,.06);
}
.authority-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: background .18s;
}
.authority-item:last-child { border-right: 0; }
.authority-item:hover      { background: var(--gold-bg); }
.authority-item strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.authority-item span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.authority-item::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 8px;
}

/* ── Segmentos ──────────────────────────────────────── */
.segment-section {
  padding: 72px var(--px);
  background: var(--navy);
}
.segment-section .eyebrow { color: var(--gold); }
.segment-section h2       { color: #fff; }
.segment-section > p      { color: #b0ccdf; max-width: 640px; margin-bottom: 40px; }

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.segment-card {
  padding: 26px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  color: #fff;
  transition: background .22s, transform .22s, border-color .22s;
  position: relative;
}
.segment-card--highlight {
  background: rgba(201,150,54,.14);
  border-color: rgba(201,150,54,.4);
}
.segment-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.22);
}
.segment-card--highlight:hover {
  background: rgba(201,150,54,.22);
}
.segment-card h3    { color: #fff; margin-bottom: 8px; }
.segment-card p     { color: #b0ccdf; font-size: 15px; margin: 0; }
.segment-card .badge-seg {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  background: var(--gold);
  color: #0e2236;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
}
.segment-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ── Serviços ────────────────────────────────────────── */
.services-section {
  padding: 72px var(--px);
  background: var(--bg);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.service-card {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p  { color: var(--muted); font-size: 15px; margin: 0; }

/* ── Diferenciais ────────────────────────────────────── */
.diff-section {
  padding: 72px var(--px);
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.diff-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .22s, box-shadow .22s;
}
.diff-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.diff-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: 10px;
  font-size: 20px;
  color: var(--navy);
}
.diff-check {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: 10px;
}
.diff-check::after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--navy);
  border-bottom: 2.5px solid var(--navy);
  transform: rotate(-46deg) translateY(-2px);
}
.diff-text h3  { font-size: 16px; margin-bottom: 6px; }
.diff-text p   { color: var(--muted); font-size: 14px; margin: 0; }

/* ── Sobre (split) ───────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px var(--px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.about-split .section-note {
  padding: 28px;
  background: var(--soft);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}
.about-split p { color: var(--muted); }

/* ── Atuação regional ────────────────────────────────── */
.region-section {
  padding: 72px var(--px);
  background: var(--navy-2);
  color: #fff;
}
.region-section .eyebrow { color: var(--gold); }
.region-section h2       { color: #fff; max-width: 640px; }
.region-section > p      { color: #b0ccdf; max-width: 580px; margin-bottom: 40px; }

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.region-card {
  padding: 24px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}
.region-card strong {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
}
.region-card p { color: #a0bcce; font-size: 14px; margin: 0; }

/* ── Blog preview ────────────────────────────────────── */
.blog-section {
  padding: 72px var(--px);
  background: var(--bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card__body  { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
}
.blog-card h3      { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.blog-card p       { color: var(--muted); font-size: 14px; flex: 1; margin-bottom: 18px; }
.blog-card__date   { font-size: 12px; color: var(--muted); margin-top: auto; }
.blog-card a.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 14px;
}
.blog-card a.read-more:hover { color: var(--navy); }
.blog-section-cta  { margin-top: 36px; }

/* ── CTA WhatsApp ────────────────────────────────────── */
.wpp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 64px var(--px);
  background: linear-gradient(135deg, #082744, #0d3a60);
  border-top: 3px solid var(--gold);
}
.wpp-cta__text h2  { color: #fff; max-width: 560px; margin-bottom: 10px; }
.wpp-cta__text p   { color: #b0ccdf; max-width: 480px; margin: 0; }
.wpp-cta__actions  { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Footer full ─────────────────────────────────────── */
.footer-full {
  background: var(--navy-dark);
  color: #b8d0e6;
  font-size: 14px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 56px var(--px) 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}
.footer-col nav { display: flex; flex-direction: column; gap: 7px; }
.footer-col nav a { color: #8aabb8; font-size: 14px; transition: color .18s; }
.footer-col nav a:hover { color: var(--gold); }
.footer-col--brand p {
  color: #6e8fa3;
  font-size: 14px;
  max-width: 300px;
  line-height: 1.6;
}
.footer-logo   { width: 180px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-legal  { color: #4d6b7a !important; font-size: 12px !important; line-height: 1.7; }
.footer-address { color: #5a7587; font-size: 13px; line-height: 1.7; margin-top: 10px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px var(--px);
  color: #4d6b7a;
  font-size: 13px;
}
.footer-bottom nav { display: flex; gap: 18px; }
.footer-bottom nav a { color: #4d6b7a; transition: color .18s; }
.footer-bottom nav a:hover { color: var(--gold); }

/* ── Seções genéricas internas ───────────────────────── */
.content-section {
  padding: 56px var(--px);
  background: var(--bg);
}
.content-section + .content-section { padding-top: 24px; }
.content-section p { color: var(--muted); }
.section-heading { max-width: 720px; margin-bottom: 32px; }

.summary-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 48px var(--px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.summary-band article {
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .22s, box-shadow .22s;
}
.summary-band article:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.summary-band p              { color: var(--muted); font-size: 15px; }

.split, .internal-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Grids genéricos (páginas internas) */
.card-grid, .mini-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card-grid article, .mini-plan-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.mini-plan-grid article { border-top: 4px solid var(--navy); }
.card-grid article:hover, .mini-plan-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-grid p, .mini-plan-grid p { color: var(--muted); font-size: 15px; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan-grid article {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.plan-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.plan-grid p  { color: var(--muted); }
.plan-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 12px 0 24px;
  list-style: none;
}
.plan-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}
.plan-grid li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.plan-grid .button { margin-top: auto; }

.faq-list { display: grid; gap: 12px; }
.faq-list article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .22s, box-shadow .22s;
}
.faq-list article:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.faq-list p { color: var(--muted); margin: 0; }

.timeline { display: grid; gap: 14px; }
.timeline article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .22s, box-shadow .22s;
  align-items: start;
}
.timeline article:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.timeline strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}
.timeline p { color: var(--muted); font-size: 15px; margin: 0; }

.two-columns, .contact-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  gap: 28px;
  align-items: start;
}

.office-note {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.office-note h2, .office-note p { margin: 0; }
.office-note p { color: var(--muted); }

.contact-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.contact-card p { color: var(--muted); }

.facts {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.facts div { padding: 18px 22px; border-bottom: 1px solid var(--line); }
.facts div:last-child { border-bottom: 0; }
.facts dt { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.facts dd { margin: 0; color: var(--ink); font-weight: 700; }

.platform-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: 36px;
  align-items: center;
  padding: 56px var(--px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.platform-section p { color: var(--muted); max-width: 680px; }
.platform-list { display: grid; gap: 10px; padding: 22px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.platform-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}
.platform-list span::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.internal-section {
  background: var(--navy-2);
  color: #fff;
  padding: 56px var(--px);
}
.internal-section h2 { color: #fff; }
.internal-section p  { color: #b0ccdf; max-width: 640px; }

/* brand-name component */
.brand-name { white-space: nowrap; }
.brand-name__se { color: #c7362f; font-style: italic; }

/* Transportadoras page */
.transport-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.transport-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

/* ── Animações ───────────────────────────────────────── */
@keyframes carouselDrift {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}

/* ── Reduzir movimento ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .service-grid,
  .diff-grid,
  .segment-grid,
  .region-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-cols   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-hamburger  { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 80px 20px 40px;
    background: var(--navy-dark);
    box-shadow: -8px 0 40px rgba(0,0,0,.35);
    overflow-y: auto;
    z-index: 200;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    color: #c8dae8;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
  }
  .site-nav a.active, .site-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .nav-area-cliente { border-color: rgba(255,255,255,.2) !important; color: #c8dae8 !important; }
  .nav-cta          { margin-top: 12px !important; text-align: center; }

  .hero             { grid-template-columns: 1fr; }
  .hero-carousel    { min-height: 320px; }
  .about-split      { grid-template-columns: 1fr; }
  .wpp-cta          { flex-direction: column; text-align: center; }
  .wpp-cta__actions { justify-content: center; }
  .split, .internal-section { flex-direction: column; align-items: flex-start; }
  .two-columns, .contact-layout, .platform-section { grid-template-columns: 1fr; }
  .authority-strip  { grid-template-columns: repeat(2, 1fr); }
  .plan-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .brand img             { width: 160px; }
  .service-grid, .diff-grid, .segment-grid, .region-grid,
  .blog-grid, .card-grid, .mini-plan-grid, .plan-grid,
  .summary-band          { grid-template-columns: 1fr; }
  .footer-cols           { grid-template-columns: 1fr; gap: 28px; }
  .footer-col--brand     { text-align: left; }
  .footer-logo           { width: 140px; }
  .footer-bottom         { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom nav     { flex-wrap: wrap; gap: 10px 16px; }
  .authority-strip       { grid-template-columns: repeat(2, 1fr); }
  .authority-item        { border-right: 0; border-bottom: 1px solid var(--line); }
  .actions-row .button   { width: 100%; }
  .utility-bar           { justify-content: flex-start; flex-wrap: wrap; gap: 8px 14px; }
  .carousel-slide figcaption { font-size: 14px; left: 16px; right: 16px; bottom: 18px; }
  .carousel-controls     { bottom: 70px; left: 16px; }
  .hero-title            { font-size: clamp(26px, 7vw, 40px); }
  .section-heading h2    { font-size: clamp(22px, 6vw, 36px); }
  .wpp-cta               { padding: 28px 20px; }
}

@media (max-width: 400px) {
  :root                  { --px: 16px; }
  .brand img             { width: 130px; }
  .footer-logo           { width: 120px; }
  .nav-hamburger         { width: 38px; height: 38px; }
  .hero-cta              { flex-direction: column; gap: 10px; }
  .hero-cta .button      { width: 100%; text-align: center; }
  .authority-strip       { grid-template-columns: 1fr; }
  .segment-card          { padding: 20px 16px; }
  .footer-cols           { padding-top: 36px; }
}
