/* ============================================================
   ITU PLACAS — DESIGN SYSTEM v2
   Revisão completa de responsividade — 2026-07-06
   Paleta: Navy · Blue · Gold · White · WA Green
   Tipografia: Inter (Google Fonts)
   Mobile-first · CSS Puro · Zero overflow horizontal
   ============================================================ */

/* ── 1. GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── 2. VARIÁVEIS ── */
:root {
  /* Cores */
  --navy:           #071A33;
  --blue:           #0B3D66;
  --blue-mid:       #0D4F85;
  --mercosul:       #005CA9;
  --gold:           #D9A72E;
  --gold-light:     #F5C542;
  --white:          #FFFFFF;
  --gray-light:     #F5F7FA;
  --gray-mid:       #E5EAF0;
  --text:           #2F3A45;
  --text-muted:     #5A6878;
  --green-wa:       #16A34A;
  --green-wa-hover: #15803D;

  /* Tipografia */
  --font: 'Inter', system-ui, Arial, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-px:  1rem;

  /* Bordas */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Sombras */
  --shadow-sm: 0 1px 4px rgba(7,26,51,.08);
  --shadow-md: 0 4px 16px rgba(7,26,51,.12);
  --shadow-lg: 0 8px 32px rgba(7,26,51,.18);

  /* Transições */
  --t: 0.22s ease;
  --t-slow: 0.38s ease;

  /* Layout global */
  --header-h:   60px;
  --section-py: 3.5rem;

  /* Mobile WA bar */
  --wa-bar-h: 64px;
}

/* ── 3. RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Proteção global: elimina qualquer overflow causado por elemento filho */
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  min-height: 100vh;
  overflow-x: hidden;
  /* Espaço inferior para barra WA mobile */
  padding-bottom: var(--wa-bar-h);
}

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

/* Imagens dentro de containers com aspect-ratio */
img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── 4. CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ── 5. TIPOGRAFIA ── */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  color: var(--navy);
  /* Previne quebra de texto fora da viewport */
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 { font-size: clamp(1.7rem, 5.5vw, 3.2rem); }
h2 { font-size: clamp(1.35rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.25rem); }
h4 { font-size: .95rem; }

p {
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}
p:last-child { margin-bottom: 0; }

.text-muted  { color: var(--text-muted); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-sm     { font-size: .875rem; }

/* ── 6. BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.2;
  min-height: 48px;
  /* Permitir quebra de texto em vez de overflow */
  white-space: normal;
  word-break: break-word;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  /* Garantir que o botão não vaze */
  max-width: 100%;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

/* WA */
.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn-wa:hover, .btn-wa:focus {
  background: var(--green-wa-hover);
  border-color: var(--green-wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22,163,74,.35);
}

/* Primary */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary */
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--gray-light);
  transform: translateY(-1px);
}

/* Outline white (hero dark bg) */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover, .btn-outline-white:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* Rota */
.btn-rota {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-mid);
  font-size: .82rem;
}
.btn-rota:hover, .btn-rota:focus {
  border-color: var(--mercosul);
  color: var(--mercosul);
}

/* Sizes */
.btn-lg {
  padding: .9rem 1.75rem;
  font-size: 1rem;
  min-height: 52px;
  border-radius: var(--radius-lg);
}
.btn-sm {
  padding: .55rem 1rem;
  font-size: .82rem;
  min-height: 40px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* Group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
}

/* Em mobile, botões do grupo empilham sozinhos */
@media (max-width: 480px) {
  .btn-group .btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* ── 7. HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.28);
  transition: background var(--t);
  /* Nunca causar overflow */
  overflow: hidden;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  /* Garante que não ultrapasse 100% */
  min-width: 0;
}

/* Logo texto */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
  /* Impede que o logo empurre outros elementos */
  min-width: 0;
}

.logo-main {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  white-space: nowrap;
}
.logo-main .logo-accent { color: var(--gold); }

.logo-sub {
  font-size: .55rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

/* Nav desktop — oculto por padrão (mobile-first) */
.main-nav { display: none; margin-left: auto; }
.main-nav > ul { display: flex; gap: .1rem; align-items: center; }
.main-nav > ul > li > a {
  display: block;
  padding: .5rem .75rem;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--white); background: rgba(255,255,255,.1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,.5);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform var(--t);
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t);
  z-index: 10;
  padding: .5rem;
}
.nav-dropdown:hover .dropdown,
.nav-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: .6rem .85rem;
  color: var(--text);
  font-size: .85rem;
  border-radius: var(--radius-sm);
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.dropdown li a:hover { background: var(--gray-light); color: var(--mercosul); }

/* Header CTA — oculto no mobile para não quebrar header */
.header-cta {
  display: none;
  flex-shrink: 0;
  font-size: .82rem;
  padding: .55rem .9rem;
  min-height: 40px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--t);
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. MENU MOBILE ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  /* Garante que não ultrapasse a tela */
  width: 100%;
  max-width: 100%;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 1rem 5rem;
  /* Animação suave */
  transform: translateX(-100%);
  transition: transform var(--t-slow);
}
.mobile-nav.open {
  display: block;
  transform: translateX(0);
}
.mobile-nav-section { margin-bottom: 1.75rem; }
.mobile-nav-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.mobile-nav a {
  display: block;
  padding: .78rem 0;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--t);
  /* Garante que links não causem overflow */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-wa {
  width: 100%;
  justify-content: center;
  margin-top: 1.75rem;
  font-size: .95rem;
  min-height: 52px;
}

/* ── 9. OFFSET DO BODY ── */
.page-body { padding-top: var(--header-h); }

/* ── 10. BARRA WA MOBILE FIXA (substitui wa-float no mobile) ── */
.wa-mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--wa-bar-h);
  background: var(--green-wa);
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 -2px 16px rgba(22,163,74,.35);
}
.wa-mobile-bar svg {
  width: 22px; height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}

/* WA float — desktop only */
.wa-float {
  display: none;
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green-wa);
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(22,163,74,.45);
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
}
.wa-float svg { width: 27px; height: 27px; fill: var(--white); }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 26px rgba(22,163,74,.55); }

/* ── 11. HERO — PRINCIPAL (Home) ── */
.hero-principal {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,26,51,.96) 0%, rgba(11,61,102,.82) 55%, rgba(11,61,102,.6) 100%);
  z-index: 0;
}
.hero-principal .hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  width: 100%;
  /* Evita overflow de texto */
  overflow: hidden;
}
.hero-principal h1 {
  color: var(--white);
  font-size: clamp(1.65rem, 5.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 760px;
}
.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: clamp(.9rem, 2vw, 1.08rem);
  max-width: 560px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* Badge / chip hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(217,167,46,.14);
  border: 1px solid rgba(217,167,46,.4);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-badge svg { width: 12px; height: 12px; fill: var(--gold); }

/* Selos hero */
.hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.75rem;
}
.hero-seal {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  font-size: .76rem;
  font-weight: 500;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.hero-seal svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }

/* ── 12. HERO — UNIDADE ── */
.hero-unidade {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 3rem 0 2.5rem;
}
.hero-unidade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,26,51,.95) 0%, rgba(7,26,51,.72) 100%);
}
.hero-unidade .hero-content { position: relative; z-index: 1; }
.hero-unidade h1 { color: var(--white); margin-bottom: .75rem; max-width: 680px; }
.hero-unidade .hero-sub { margin-bottom: 1.5rem; }

.hero-address-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .45rem 1rem;
  color: rgba(255,255,255,.78);
  font-size: .8rem;
  margin-bottom: 1.25rem;
  /* Não deixar vazar */
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-address-pill svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }

/* Breadcrumb */
.breadcrumb {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .35; }

/* ── 13. HERO — SERVIÇO / LP ── */
.hero-servico {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 2.5rem 0 2.25rem;
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
}
.hero-servico h1 { color: var(--white); margin-bottom: .75rem; }
.hero-servico .hero-sub { margin-bottom: 1.75rem; }
.hero-servico .breadcrumb { margin-bottom: 1rem; }

/* ── 14. SEÇÕES ── */
.section { padding: var(--section-py) 0; }
.section-white { background: var(--white); }
.section-gray  { background: var(--gray-light); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-dark  { background: var(--navy); color: var(--white); }
.section-blue  { background: var(--blue); color: var(--white); }
.section-navy h2, .section-navy h3,
.section-dark h2, .section-dark h3,
.section-blue h2,  .section-blue h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-header h2 { margin-bottom: .6rem; }
.section-header p { color: var(--text-muted); font-size: .95rem; margin: 0; }
.section-navy .section-header p,
.section-dark .section-header p,
.section-blue .section-header p { color: rgba(255,255,255,.68); }

/* Gold separator */
.gold-line {
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: .65rem auto 0;
}

/* ── 15. CARDS DE UNIDADE ── */
.units-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.card-unit {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
  /* Nunca vazar */
  min-width: 0;
}
.card-unit:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Imagem do card unidade */
.card-unit > img,
.card-unit .card-unit-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

/* Tag sobre a imagem — posicionamento relativo ao card */
.card-unit { position: relative; }
.card-unit-tag {
  position: absolute;
  top: .65rem; left: .65rem;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .5px;
  padding: .28rem .75rem;
  border-radius: 100px;
}

.card-unit-body { padding: 1.25rem; }
.card-unit-body h3 { font-size: 1.1rem; margin-bottom: .4rem; color: var(--navy); }
.card-unit-body > p { font-size: .875rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.55; }

.address-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 999px;
  padding: .28rem .75rem;
  margin-bottom: 1rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.address-pill svg { fill: var(--gold); flex-shrink: 0; width: 12px; height: 12px; }

.card-unit-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* ── 16. CARDS DE SERVIÇO ── */
.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

/* Layout do card: vertical (nunca lado a lado em mobile) */
.card-service {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
  min-width: 0;
}
.card-service:hover { box-shadow: var(--shadow-md); border-color: var(--mercosul); transform: translateY(-2px); }

.card-service-icon {
  width: 44px; height: 44px;
  background: rgba(0,92,169,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.card-service:hover .card-service-icon { background: rgba(0,92,169,.15); }
.card-service-icon svg { width: 22px; height: 22px; fill: var(--mercosul); }

.card-service h3 { font-size: 1rem; margin-bottom: .2rem; }
.card-service p  { font-size: .855rem; color: var(--text-muted); margin-bottom: .6rem; line-height: 1.55; }

.card-service-link {
  font-size: .82rem; font-weight: 600; color: var(--mercosul);
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: auto;
  transition: gap var(--t);
}
.card-service-link:hover { gap: .5rem; }
.card-service-link svg { width: 13px; height: 13px; fill: currentColor; }

/* ── 17. COMO FUNCIONA — STEPS ── */
.steps-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

/* CORREÇÃO PRINCIPAL: layout VERTICAL, não horizontal */
.step-item {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.step-num {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}

.step-item h3 { font-size: .95rem; margin-bottom: .2rem; }
.step-item p  { font-size: .845rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ── 18. FAQ ACCORDION ── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  /* Garante que não vaze */
  width: 100%;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem 1.1rem;
  text-align: left;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: background var(--t);
  min-width: 0;
  /* Texto pode quebrar linha */
  line-height: 1.45;
}
.faq-question:hover { background: var(--gray-light); }
.faq-question[aria-expanded="true"] { background: var(--gray-light); }

/* Ícone FAQ — não esmaga o texto */
.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
  margin-top: .1rem;
}
.faq-icon svg { width: 12px; height: 12px; fill: var(--white); transition: transform var(--t); }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--mercosul); }
.faq-question[aria-expanded="true"] .faq-icon svg { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: .9rem 1.1rem 1.1rem;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.68;
  border-top: 1px solid var(--gray-mid);
}
.faq-answer.open { display: block; }

/* ── 19. CTA BLOCK ── */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.35rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: rgba(217,167,46,.07);
  border-radius: 50%;
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 110px; height: 110px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.cta-block h2, .cta-block h3 { color: var(--white); margin-bottom: .7rem; }
.cta-block p {
  color: rgba(255,255,255,.72);
  max-width: 460px;
  margin: 0 auto 1.5rem;
  font-size: .95rem;
  position: relative;
  z-index: 1;
}
.cta-block .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ── 20. ALERT / ANTES DE COMPARECER ── */
.alert-block {
  background: rgba(217,167,46,.07);
  border: 1px solid rgba(217,167,46,.28);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  align-items: flex-start;
}
@media (min-width: 560px) {
  .alert-block { flex-direction: row; align-items: flex-start; }
}
.alert-icon { width: 30px; min-width: 30px; }
.alert-icon svg { width: 30px; height: 30px; fill: var(--gold); }
.alert-block h3 { font-size: .975rem; margin-bottom: .25rem; color: var(--navy); }
.alert-block p { font-size: .875rem; color: var(--text-muted); margin-bottom: .65rem; }
.alert-block p:last-child { margin-bottom: 0; }
/* Botão dentro do alert: 100% no mobile */
.alert-block .btn { width: 100%; justify-content: center; }
@media (min-width: 560px) {
  .alert-block .btn { width: auto; }
}

/* ── 21. ENDEREÇO / HORÁRIO ROWS ── */
.address-block {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.address-block h3 {
  font-size: .975rem;
  margin-bottom: .85rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--gray-mid);
}
.address-rows { display: flex; flex-direction: column; gap: .65rem; }
.address-row {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--text);
  line-height: 1.5;
  min-width: 0;
}
.address-row:last-child { margin-bottom: 0; }
.address-row svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.address-row strong { color: var(--navy); }
.address-row a { color: var(--mercosul); text-decoration: none; }
.address-row a:hover { text-decoration: underline; }

/* ── 22. LISTA DE SERVIÇOS (unidade) ── */
.services-list {
  display: grid;
  gap: .5rem;
  grid-template-columns: 1fr;
}
.services-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text);
  padding: .65rem .9rem;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  line-height: 1.45;
  min-width: 0;
}
.services-list li::before {
  content: '';
  width: 7px; height: 7px; min-width: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .35rem;
}
.services-list li svg { fill: var(--mercosul); flex-shrink: 0; width: 16px; height: 16px; margin-top: .1rem; }

/* ── 23. PRÉ-REQUISITOS ── */
.prereq-block {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  border: 1px solid var(--gray-mid);
}
.prereq-block h3 { font-size: .975rem; margin-bottom: .85rem; color: var(--navy); }
.prereq-list { display: flex; flex-direction: column; gap: .75rem; }
.prereq-item { display: flex; gap: .7rem; align-items: flex-start; min-width: 0; }
.prereq-item svg { width: 18px; height: 18px; min-width: 18px; fill: var(--green-wa); flex-shrink: 0; margin-top: 2px; }
.prereq-item p { font-size: .875rem; color: var(--text); margin: 0; line-height: 1.55; }

/* ── 24. UNIDADES EM PÁGINA DE SERVIÇO ── */
.unit-list-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
.unit-list-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t), box-shadow var(--t);
  min-width: 0;
}
.unit-list-card:hover { border-color: var(--mercosul); box-shadow: var(--shadow-md); }
.unit-dot {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 800; font-size: .8rem;
  flex-shrink: 0;
}
.unit-list-card h3 { font-size: .935rem; margin-bottom: .15rem; }
.unit-list-card p  { font-size: .79rem; color: var(--text-muted); margin-bottom: .65rem; }
.unit-list-card .btn-group { gap: .45rem; flex-wrap: wrap; }

/* ── 25. FORMULÁRIO ── */
.form-group { margin-bottom: 1.15rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }

/* Suporte ao uso com label e input padrão no HTML */
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.form-group input,
.form-group select,
.form-group textarea,
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .7rem .9rem;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--mercosul);
  box-shadow: 0 0 0 3px rgba(0,92,169,.12);
}
.form-group textarea,
.form-textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: .78rem; color: var(--text-muted); margin-top: .35rem; }
.contact-form { display: flex; flex-direction: column; gap: 0; max-width: 580px; }

/* ── 26. GALERIA ── */
.gallery-grid {
  display: grid;
  gap: .65rem;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── 27. FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
  grid-template-columns: 1fr;
}
.footer-logo { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; letter-spacing: -.5px; }
.footer-logo .logo-accent { color: var(--gold); }
.footer-desc { font-size: .84rem; line-height: 1.68; color: rgba(255,255,255,.6); }
.footer-col h3 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold); margin-bottom: .85rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul a { font-size: .84rem; color: rgba(255,255,255,.62); transition: color var(--t); }
.footer-col ul a:hover { color: var(--white); }
.footer-unit { margin-bottom: 1.35rem; }
.footer-unit:last-child { margin-bottom: 0; }
.footer-unit strong { display: block; color: var(--white); font-size: .875rem; margin-bottom: .25rem; }
.footer-unit address { font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.48); margin-bottom: .35rem; }
.footer-unit-links { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .4rem; }
.footer-unit-links a {
  font-size: .78rem; font-weight: 600; color: var(--gold);
  padding: .25rem .6rem;
  border: 1px solid rgba(217,167,46,.3);
  border-radius: 999px;
  transition: color var(--t), background var(--t);
  /* Área de toque confortável */
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.footer-unit-links a:hover { color: var(--navy); background: var(--gold); }
.footer-contact a {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: rgba(255,255,255,.62);
  margin-bottom: .6rem; transition: color var(--t);
  /* Área mínima de toque */
  min-height: 44px;
  padding: .35rem 0;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact a:last-child { margin-bottom: 0; }
.footer-contact svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-start;
  padding: 1.35rem 0;
}
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.32); margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { font-size: .74rem; color: rgba(255,255,255,.32); transition: color var(--t); min-height: 32px; display: inline-flex; align-items: center; }
.footer-legal a:hover { color: rgba(255,255,255,.65); }
.footer-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .68rem; color: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 100px; padding: .3rem .75rem; margin-top: .65rem;
}
.footer-badge svg { width: 10px; height: 10px; fill: var(--gold); }

/* ── 28. CONTACT PAGE ── */
.contact-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
  min-width: 0;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card .tag,
.contact-card-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  background: rgba(0,92,169,.08); color: var(--mercosul);
  padding: .22rem .6rem; border-radius: 100px; margin-bottom: .75rem;
}
.contact-card h2,
.contact-card-title { font-size: 1.15rem; margin-bottom: .2rem; color: var(--navy); }
.contact-card-sub { font-size: .8rem; color: var(--text-muted); margin-bottom: .65rem; }
.contact-divider { height: 1px; background: var(--gray-mid); margin: 1.1rem 0; }

/* ── 29. INSTITUTIONAL TEXT ── */
.instit-block {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  max-width: 800px;
  margin-inline: auto;
}
.instit-block p { font-size: .9rem; color: var(--text-muted); line-height: 1.72; }
.instit-block a { color: var(--mercosul); font-weight: 600; text-decoration: underline; }
.instit-block a:hover { color: var(--blue); }

/* ── 30. UNIT DETAIL (páginas de unidade) ── */
.unit-detail-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.unit-detail-text h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: .85rem; }
.unit-detail-text p { color: var(--text-muted); line-height: 1.72; margin-bottom: .8rem; }
.unit-detail-info {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 1.35rem;
}
.unit-detail-info h3 { font-size: 1rem; color: var(--navy); margin-bottom: .85rem; }

/* ── 31. UTILITÁRIOS ── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: .5rem; }
.gap-md { gap: 1rem; }
.w-full { width: 100%; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--mercosul); font-weight: 600; font-size: .88rem;
  text-decoration: none; transition: gap var(--t);
}
.link-arrow:hover { gap: .5rem; }
.link-arrow svg { width: 13px; height: 13px; fill: currentColor; }
.btn-rota-gold {
  background: rgba(217,167,46,.12);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: .82rem;
}
.btn-rota-gold:hover { background: var(--gold); color: var(--navy); }

/* ── 32. MICRO-ANIMAÇÕES (leves) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .45s ease both; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
.delay-4 { animation-delay: .32s; }

/* ── 33. HEADER SCROLLED ── */
.site-header.scrolled { background: rgba(7,26,51,.98); backdrop-filter: blur(8px); }

/* ── 34. ACESSIBILIDADE ── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — BREAKPOINTS
   Testados: 320 · 360 · 375 · 390 · 414 · 430
             768 · 1024 · 1366 · 1440
   ═══════════════════════════════════════════════ */

/* ── ≥ 480px: botões do hero lado a lado ── */
@media (min-width: 480px) {
  :root { --container-px: 1.25rem; }
  .card-unit-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .card-unit-actions .btn { flex: 1 1 auto; }
}

/* ── ≥ 560px: cards de serviço em 2 cols ── */
@media (min-width: 560px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .unit-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── ≥ 640px: tablet pequeno ── */
@media (min-width: 640px) {
  :root { --section-py: 4.5rem; }
  .units-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(4, 1fr); }
}

/* ── ≥ 768px: tablet / desktop pequeno ── */
@media (min-width: 768px) {
  :root {
    --header-h: 72px;
    --container-px: 1.75rem;
    --section-py: 5rem;
    --wa-bar-h: 0px; /* Sem barra WA mobile */
  }

  body { padding-bottom: 0; }

  /* Header desktop */
  .hamburger     { display: none; }
  .main-nav      { display: flex; }
  .header-cta    { display: inline-flex; margin-left: 0; }
  .mobile-nav    { display: none !important; }

  /* WA: esconde barra mobile, mostra float */
  .wa-mobile-bar { display: none; }
  .wa-float      { display: flex; }

  /* Layout */
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: repeat(2, 1fr); }
  .unit-detail-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-bottom  { flex-direction: row; justify-content: space-between; align-items: center; }
  .cta-block      { padding: 3rem 2.5rem; }
  .hero-principal { min-height: 600px; }
}

/* ── ≥ 1024px: desktop ── */
@media (min-width: 1024px) {
  :root {
    --container-px: 2.25rem;
    --section-py: 5.75rem;
  }

  .units-grid    { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid    { grid-template-columns: repeat(4, 1fr); }
  .footer-grid   { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .contact-grid  { grid-template-columns: repeat(3, 1fr); }
  .unit-list-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-block     { padding: 3.5rem 3rem; }
}

/* ── ≥ 1280px: large desktop ── */
@media (min-width: 1280px) {
  :root { --container-px: 2.5rem; }
}

/* ── NOTE: TODO markers ──
   Endereços, horários e CNPJ estão marcados no HTML como:
   <!-- TODO: confirmar [dado] -->
   Não publicar sem confirmação documental.
   ─────────────────────────────────────────── */
