/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --c-primary:  #00c896;
  --c-mid:      #008B87;
  --c-deep:     #036271;
  --c-white:    #ffffff;
  --c-bg:       #05100d;
  --c-surface:  #0a1a16;
  --c-border:   rgba(0,200,150,.12);
  --c-text:     #ffffff;
  --c-text-2:   rgba(255,255,255,.5);
  --c-text-3:   rgba(255,255,255,.25);
  --c-grad:     linear-gradient(135deg, #00c896, #008B87);
  --r-card:     16px;
  --r-btn:      10px;
  --max-w:      1200px;
  --nav-h:      72px;
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
[hidden] { display: none !important; }

/* ═══════════════════════════════════════
   TIPOGRAFIA
═══════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

/* ═══════════════════════════════════════
   UTILITÁRIOS
═══════════════════════════════════════ */
.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-primary);
  color: #031a12;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,150,.3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  border: 1px solid rgba(255,255,255,.2);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--c-primary); background: rgba(0,200,150,.06); }

.grad-text {
  background: var(--c-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* reveal — animado pelo GSAP/IntersectionObserver */
.reveal { opacity: 0; }
.reveal.in { opacity: 1; transition: opacity .6s, transform .6s; }

/* skip link acessibilidade */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--c-primary);
  color: #031a12;
  padding: 8px 16px;
  z-index: 100;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* toast */
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: .9rem;
  z-index: 9999;
  transition: transform .3s;
  white-space: nowrap;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════
   NAV — header fixo glass dark
═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .3s, border-bottom .3s, box-shadow .3s;
}
#nav.nav--shadow {
  background: rgba(5,16,13,.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,200,150,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--nav-h);
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo — sem fundo, altura controlada */
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo picture, .nav-logo img {
  height: 38px;
  width: auto;
  background: transparent;
  display: block;
}

/* Links centrais */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--c-text-2);
  transition: color .2s;
  white-space: nowrap;
  padding: 6px 0;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--c-primary); }
.nav-links a.is-active {
  color: var(--c-primary);
  font-weight: 600;
}
/* Item duplicado de 'Área do Cliente' só aparece no drawer mobile */
.nav-link-cliente-mobile { display: none; }
@media (max-width: 960px) {
  .nav-link-cliente-mobile { display: list-item; }
  .nav-link-cliente-mobile a { color: var(--c-primary); }
}

/* Ações direita */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-actions .btn-ghost,
.nav-actions .btn-primary {
  padding: 9px 16px;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 8px;
}
.nav-actions .btn-ghost {
  border-color: rgba(255,255,255,.14);
  color: var(--c-text-2);
}
.nav-actions .btn-ghost:hover {
  color: var(--c-text);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
}

/* Hamburger — mobile/tablet trigger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Breakpoint tablet apertado: encolhe links + pill cidade */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .8rem; }
  .nav-actions .btn-ghost,
  .nav-actions .btn-primary { padding: 8px 12px; font-size: .8rem; }
}

/* Tablet médio: hamburger + drawer */
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5,16,13,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--c-border);
    width: 100%;
  }
  .nav-links li:last-child a { border-bottom: none; }

  .hamburger { display: flex; }

  /* No mobile, esconde 'Área do Cliente' do desktop (vai pro drawer abaixo) */
  .nav-actions > .btn-ghost { display: none; }
  /* CTA primário mantém visível e compacto */
  .nav-actions .btn-primary { padding: 8px 14px; }

  /* Pill cidade só ícone (sem texto) */
  .nav-cidade > span { display: none; }
  .nav-cidade { max-width: none; padding: 8px 10px; min-width: 36px; justify-content: center; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; gap: 8px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-primary { padding: 8px 10px; font-size: .78rem; }
  .nav-logo picture, .nav-logo img { height: 32px; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 24px 72px;
  overflow: hidden;
  background: var(--c-bg);
}

/* Vídeo de fundo HLS — cobre o hero inteiro, atrás de todo o conteúdo */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease-out;
}
.hero-bg-video.is-ready { opacity: 1; }

/* Overlay escuro com gradient — preserva legibilidade do texto sobre o vídeo */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(5,16,13,0.55) 0%, rgba(5,16,13,0.78) 70%, rgba(5,16,13,0.92) 100%),
    linear-gradient(180deg, rgba(5,16,13,0.45) 0%, rgba(5,16,13,0.60) 100%);
}

/* Hero inner precisa subir acima do vídeo + overlay */
.hero-inner { position: relative; z-index: 10; }
.hero-glow { z-index: 1; }

/* Em mobile: economiza dados/bateria — esconde vídeo, fundo dark padrão volta */
@media (max-width: 768px) {
  .hero-bg-video { display: none; }
  .hero-bg-overlay { display: none; }
}

/* Acessibilidade: respeita prefers-reduced-motion — vídeo é desabilitado via JS,
   mas garantimos que se chegar aqui não anima */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
  .hero-bg-overlay { display: none; }
}

/* dot-grid atmosférico no hero */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,200,150,.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}
/* grain sutil sobre tudo */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,200,150,.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-center { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,150,.08);
  border: 1px solid rgba(0,200,150,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--c-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
/* Hero title — 3 linhas, mesma fonte e mesmo tamanho */
.hero-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5.4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-text);
  text-align: center;
  margin: 0 auto 36px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--c-text-2);
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--c-primary); font-weight: 600; }
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .83rem;
  color: var(--c-text-3);
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-dot { width: 6px; height: 6px; background: var(--c-primary); border-radius: 50%; }
.trust-sep { color: var(--c-text-3); }

/* ═══════════════════════════════════════
   DIFERENCIAIS
═══════════════════════════════════════ */
#diferenciais { padding: 96px 0; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--c-text-2);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dif-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 32px;
  transition: border-color .2s, transform .2s;
}
.dif-card:hover { border-color: rgba(0,200,150,.3); transform: translateY(-4px); }
.dif-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,200,150,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: 20px;
}
.dif-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.dif-card p { font-size: .9rem; color: var(--c-text-2); line-height: 1.6; }

/* ═══════════════════════════════════════
   PLANOS
═══════════════════════════════════════ */
#planos { padding: 96px 0; background: rgba(0,0,0,.2); }
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plano-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.plano-destaque {
  border-color: var(--c-primary);
  transform: scale(1.03);
  background: linear-gradient(160deg, rgba(0,200,150,.06) 0%, var(--c-surface) 60%);
  box-shadow: 0 0 40px rgba(0,200,150,.1);
}
.plano-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-grad);
  color: #031a12;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plano-badge-premium {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #036271, #008B87);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plano-top { display: flex; flex-direction: column; gap: 8px; }
.plano-nome { font-size: 1rem; font-weight: 700; color: var(--c-text-2); letter-spacing: .05em; text-transform: uppercase; }
.plano-vel { font-family: 'DM Sans', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--c-primary); line-height: 1; }
.plano-vel span { font-size: 1rem; font-weight: 500; color: var(--c-text-2); }
.plano-preco { display: flex; align-items: baseline; gap: 4px; }
.plano-de { font-size: .9rem; color: var(--c-text-2); }
.plano-valor { font-family: 'DM Sans', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--c-text); }
.plano-periodo { font-size: .85rem; color: var(--c-text-2); }
.plano-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plano-features li { font-size: .9rem; color: var(--c-text-2); }
.plano-features li::first-letter { color: var(--c-primary); }
.btn-plano {
  width: 100%;
  padding: 14px;
  border-radius: var(--r-btn);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  text-align: center;
  transition: transform .15s, box-shadow .15s, background .2s, border-color .2s, color .2s;
  cursor: pointer;
  border: none;
}
.btn-plano-primary { background: var(--c-primary); color: #031a12; border: none; }
.btn-plano-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,150,.3); }
.btn-plano-outline { background: transparent; color: var(--c-text); border: 1px solid var(--c-border); }
.btn-plano-outline:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* ═══════════════════════════════════════
   STREAMING
═══════════════════════════════════════ */
#streaming { padding: 96px 0; }

/* Ticker / marquee infinito */
.stream-ticker-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.stream-ticker {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: stream-ticker 60s linear infinite;
  will-change: transform;
}
.stream-ticker:hover { animation-play-state: paused; }
@keyframes stream-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.stream-card {
  flex-shrink: 0;
  width: 150px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
  cursor: default;
}
.stream-card:hover {
  border-color: rgba(0,200,150,.35);
  background: rgba(0,200,150,.06);
}
.stream-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stream-note {
  text-align: center;
  margin-top: 28px;
  font-size: .78rem;
  color: var(--c-text-3);
}

/* ═══════════════════════════════════════
   COBERTURA
═══════════════════════════════════════ */
#cobertura { padding: 96px 0; background: rgba(0,0,0,.2); }
.cob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cob-texto h2 { margin-bottom: 16px; }
.cob-sub { color: var(--c-text-2); margin-bottom: 32px; line-height: 1.7; }
.cob-cidades {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cob-cidades li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
}
.cob-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.cob-cidades strong { display: block; font-weight: 700; margin-bottom: 2px; }
.cob-cidades span { font-size: .85rem; color: var(--c-text-2); }
.cob-mapa { border-radius: 16px; overflow: hidden; border: 1px solid var(--c-border); }
.mapa-cobertura { height: 420px; background: var(--c-surface); }
.mapa-cobertura-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--c-text-3);
  font-size: .9rem;
}

/* ═══════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════ */
#depoimentos { padding: 96px 0; }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dep-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dep-stars { color: var(--c-primary); font-size: 1.1rem; letter-spacing: 2px; }
.dep-card p { color: var(--c-text-2); font-size: .95rem; line-height: 1.7; flex: 1; }
.dep-autor { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: #031a12;
  flex-shrink: 0;
}
.dep-card:nth-child(2) .dep-avatar { background: linear-gradient(135deg, #008B87, #036271); color: #fff; }
.dep-card:nth-child(3) .dep-avatar { background: linear-gradient(135deg, #036271, #04485a); color: #00c896; }
.dep-autor strong { display: block; font-size: .9rem; }
.dep-autor span { font-size: .8rem; color: var(--c-text-3); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
#faq { padding: 96px 0; background: rgba(0,0,0,.2); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--c-border); transition: background .2s; }
.faq-item.open {
  background: rgba(0,200,150,.04);
  border-left: 3px solid var(--c-primary);
  padding-left: 16px;
  margin-left: -16px;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.faq-q:hover { color: var(--c-primary); }
.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, border-color .2s;
}
.faq-arrow::after { content: '▾'; font-size: .7rem; color: var(--c-text-2); }
.faq-item.open .faq-arrow { transform: rotate(180deg); border-color: var(--c-primary); }
.faq-item.open .faq-arrow::after { color: var(--c-primary); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding-bottom: 22px; color: var(--c-text-2); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
#cta-final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-bg) 0%, rgba(0,40,30,.6) 100%);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,200,150,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { margin-bottom: 20px; }
.cta-inner p { color: var(--c-text-2); font-size: 1.1rem; margin-bottom: 40px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { border-top: 1px solid var(--c-border); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; color: var(--c-text-2); line-height: 1.6; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-3);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a, .footer-col address {
  font-size: .88rem;
  color: var(--c-text-2);
  font-style: normal;
  line-height: 1.6;
  transition: color .2s;
}
.footer-col a:hover { color: var(--c-primary); }
.footer-bottom { border-top: 1px solid var(--c-border); padding: 20px 0; }
.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: var(--c-text-3);
}
.footer-bottom a { color: var(--c-text-2); transition: color .2s; }
.footer-bottom a:hover { color: var(--c-primary); }

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--c-text-2);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  cursor: pointer;
  border: none;
}
.modal-close:hover { background: rgba(255,255,255,.15); }
.modal-title { margin-bottom: 8px; font-size: 1.4rem; }
.modal-lead { color: var(--c-text-2); margin-bottom: 20px; font-size: .9rem; }
.modal-plano-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,200,150,.08);
  border: 1px solid rgba(0,200,150,.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: .9rem;
}
.modal-plano-info strong { font-family: 'DM Sans', sans-serif; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .82rem; font-weight: 500; color: var(--c-text-2); }
.field input, .field select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--c-text);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--c-primary); }
.field select option { background: var(--c-surface); color: var(--c-text); }
.field-err { font-size: .78rem; color: #f87171; min-height: 16px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--c-primary);
  color: #031a12;
  border: none;
  border-radius: var(--r-btn);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 8px;
  transition: transform .15s, box-shadow .15s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,150,.3); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.modal-success-head { font-size: 1.3rem; margin-bottom: 12px; color: var(--c-primary); }
#alert-area { margin-bottom: 12px; font-size: .85rem; color: #f87171; }

/* ═══════════════════════════════════════
   STICKY CTA + FAB
═══════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 24px;
  background: rgba(5,16,13,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--c-border);
  display: flex;
  gap: 12px;
  justify-content: center;
  z-index: 900;
  transform: translateY(100%);
  transition: transform .3s;
}
.sticky-cta[aria-hidden="false"] { transform: translateY(0); }
.sticky-cta .btn-primary,
.sticky-cta .btn-ghost { flex: 1; max-width: 200px; justify-content: center; }
.fab-cliente {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text-2);
  z-index: 800;
  transition: border-color .2s, color .2s;
  display: none;
}
.fab-cliente:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* ═══════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav — handled in larger breakpoint (960px) above */

  /* Hero */
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .hero-trust { gap: 8px; }
  .trust-sep { display: none; }

  /* Diferenciais */
  #diferenciais { padding: 64px 0; }
  .dif-grid { grid-template-columns: 1fr; }

  /* Planos */
  #planos { padding: 64px 0; }
  .planos-grid { grid-template-columns: 1fr; }
  .plano-destaque { transform: none; }

  /* Streaming */
  #streaming { padding: 64px 0; }
  .stream-grid { grid-template-columns: repeat(3, 1fr); }

  /* Cobertura */
  #cobertura { padding: 64px 0; }
  .cob-grid { grid-template-columns: 1fr; gap: 40px; }
  .mapa-cobertura { height: 300px; }

  /* Depoimentos */
  #depoimentos { padding: 64px 0; }
  .dep-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .dep-card { min-width: 280px; scroll-snap-align: start; }

  /* FAQ */
  #faq { padding: 64px 0; }
  .faq-item.open { margin-left: -8px; padding-left: 8px; }

  /* CTA Final */
  #cta-final { padding: 80px 0; }
  .cta-btns { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom .wrap { flex-direction: column; text-align: center; }

  /* Modal */
  .modal { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* FAB */
  .fab-cliente { display: block; }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .stream-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .stream-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   ACESSIBILIDADE
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-badge-dot { animation: none; }
}

/* ═══════════════════════════════════════
   AUDITORIA FINAL — regras ausentes
═══════════════════════════════════════ */

/* container/section utilitários usados no HTML */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: rgba(0,0,0,.2); }
.section-title { text-align: center; margin-bottom: 48px; }

/* nav-inner precisa do container */
#nav .nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.nav-links a.is-active { color: var(--c-primary); }
#nav.nav--solid { background: rgba(5,16,13,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: var(--r-btn);
  transition: transform .15s, box-shadow .15s, border-color .2s, background .2s, color .2s;
  cursor: pointer;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.nav-cta-mobile { padding: 10px 20px; font-size: .88rem; }

/* hero alinhamento */
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; color: var(--c-text-3); }
.trust-sep { color: var(--c-text-3); margin: 0 4px; }

/* diferenciais — wrappers usados no HTML */
.dif-icon svg { width: 24px; height: 24px; }
.dif-title { margin-bottom: 10px; font-size: 1.1rem; color: var(--c-text); }
.dif-text { font-size: .9rem; color: var(--c-text-2); line-height: 1.6; }

/* planos — nomes que o HTML usa */
.plano-card--destaque {
  border-color: var(--c-primary);
  transform: scale(1.03);
  background: linear-gradient(160deg, rgba(0,200,150,.06) 0%, var(--c-surface) 60%);
  box-shadow: 0 0 40px rgba(0,200,150,.1);
}
.plano-header { display: flex; flex-direction: column; gap: 8px; }
.plano-preco-val { font-family: 'DM Sans', sans-serif; font-size: 2rem; font-weight: 800; color: var(--c-primary); }
.plano-preco-val strong { font-weight: 800; }
.plano-preco-periodo { font-size: 0.875rem; color: var(--c-text-2); margin-left: 2px; }

/* streaming nada novo — já existe */

/* cobertura — nomes que o HTML usa */
.cobertura-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cobertura-texto h2 { margin-bottom: 16px; }
.cobertura-desc { color: var(--c-text-2); line-height: 1.7; margin-bottom: 20px; }
.cobertura-desc strong { color: var(--c-text); }
.cobertura-cidades { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cobertura-cidades li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  font-size: .92rem;
}
.cobertura-cidades li svg { color: var(--c-primary); flex-shrink: 0; }
.cobertura-mapa { border-radius: 16px; overflow: hidden; border: 1px solid var(--c-border); }

/* depoimentos — nomes do HTML */
.dep-text { color: var(--c-text-2); font-size: .95rem; line-height: 1.7; flex: 1; }
.dep-autor { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.dep-nome { font-size: .9rem; font-weight: 700; color: var(--c-text); }
.dep-cidade { font-size: .8rem; color: var(--c-text-3); }

/* FAQ — ajuste do faq-a (sem max-height fixo curto) */
.faq-item.open .faq-a { max-height: 600px; }

/* CTA FINAL — nomes do HTML */
.cta-final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: var(--c-bg);
  border-top: 1px solid rgba(0,200,150,.12);
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,200,150,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
}
/* Vídeo de fundo MP4 — cobre todo o CTA */
.cta-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease-out;
}
.cta-bg-video.is-ready { opacity: 1; }
/* Overlay escuro gradient — preserva legibilidade */
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(5,16,13,0.55) 0%, rgba(5,16,13,0.82) 70%, rgba(5,16,13,0.95) 100%),
    linear-gradient(180deg, rgba(5,16,13,0.50) 0%, rgba(5,16,13,0.70) 100%);
}
.cta-final-inner { position: relative; z-index: 10; }

/* Mobile e reduced-motion: esconde vídeo, mantém fundo dark padrão */
@media (max-width: 768px) {
  .cta-bg-video, .cta-bg-overlay { display: none; }
  .cta-final { background: linear-gradient(180deg, var(--c-bg) 0%, rgba(0,40,30,.6) 100%); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-bg-video, .cta-bg-overlay { display: none; }
}
.cta-final-title { margin-bottom: 20px; }
.cta-final-sub { color: var(--c-text-2); font-size: 1.1rem; margin-bottom: 40px; }
.cta-final-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* FOOTER — nomes do HTML */
.footer { border-top: 1px solid var(--c-border); padding-top: 64px; margin-top: 48px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-slogan { font-size: .9rem; color: var(--c-text-2); line-height: 1.6; }
.footer-col-title {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-3);
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; color: var(--c-text-2); transition: color .2s; }
.footer-col a:hover { color: var(--c-primary); }
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: var(--c-text-3);
}
.footer-version { color: var(--c-text-3); font-size: 0.8rem; }

/* MODAL — overlay + caixa (nova marcação) */
#modal.modal,
#modal-cidade.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  /* Reset de regras herdadas da .modal antiga (que era box interno) */
  border: none;
  border-radius: 0;
  width: auto;
  max-width: none;
  max-height: none;
  overflow: visible;
}
#modal.modal.open,
#modal-cidade.modal.open { display: flex; }
.modal-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 0;
}
.modal-body { padding: 16px 28px 28px; }
.modal-preco-label { color: var(--c-text-2); margin-bottom: 16px; font-size: 0.9rem; }
.modal-preco-label strong { color: var(--c-primary); font-size: 1.2rem; }
.sucesso-msg {
  color: var(--c-primary);
  font-size: 1rem;
  text-align: center;
  padding: 24px 0;
}
.alert { padding: 10px 14px; border-radius: 8px; font-size: .85rem; margin-bottom: 12px; }
.alert.err { background: rgba(248,113,113,.1); color: #f87171; border: 1px solid rgba(248,113,113,.3); }

/* sticky CTA — wrapper interno */
.sticky-cta { display: none; }
.sticky-cta.show { display: block; transform: translateY(0); }
.sticky-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta-inner span { font-size: .88rem; color: var(--c-text); }
.sticky-cta-inner strong { color: var(--c-primary); font-weight: 700; }

/* FAB WhatsApp */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 850;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform .2s;
}
.fab-whatsapp:hover { transform: scale(1.08); }
@media (max-width: 900px) { .fab-whatsapp { bottom: 80px; } }

/* responsivo extra para classes novas */
@media (max-width: 768px) {
  .cobertura-grid { grid-template-columns: 1fr; gap: 40px; }
  .plano-card--destaque { transform: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
  .cta-final { padding: 80px 0; }
  .cta-final-actions { flex-direction: column; }
  .cta-final-actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   LOCATOR / DETECÇÃO DE CIDADE
═══════════════════════════════════════ */
.hero-locator {
  margin: 32px auto 0;
  max-width: 640px;
  padding: 24px;
  background: rgba(0,200,150,.04);
  border: 1px solid rgba(0,200,150,.18);
  border-radius: 16px;
  text-align: center;
}
.hero-locator-prompt {
  font-size: .95rem;
  color: var(--c-text);
  margin-bottom: 16px;
}
.hero-locator-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-locator-sep {
  font-size: .8rem;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 0 4px;
}
.hero-locator-cep {
  display: flex;
  gap: 8px;
}
.hero-locator-cep input {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--c-text);
  width: 130px;
  outline: none;
  transition: border-color .2s;
}
.hero-locator-cep input:focus {
  border-color: var(--c-primary);
}
.hero-locator-cidades {
  font-size: .82rem;
  color: var(--c-text-2);
  margin: 0;
}
.hero-locator-cidades span {
  color: var(--c-text-3);
  margin: 0 4px;
}
.link-btn {
  background: none;
  border: none;
  color: var(--c-primary);
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.link-btn:hover { color: #00e8ad; }
.hero-locator-status {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--c-primary);
  min-height: 1.2em;
}
.hero-locator-status.error { color: #ff7878; }

.hero-cidade-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 14px;
  background: rgba(0,200,150,.08);
  border: 1px solid rgba(0,200,150,.28);
  border-radius: 100px;
  font-size: .88rem;
  color: var(--c-text);
}
.hero-cidade-pill svg { color: var(--c-primary); flex-shrink: 0; }
.hero-cidade-pill strong { color: var(--c-primary); font-weight: 700; }

.nav-cidade {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0,200,150,.06);
  border: 1px solid rgba(0,200,150,.22);
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--c-text);
  transition: background .2s, border-color .2s;
  font-family: inherit;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-cidade > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}
.nav-cidade:hover { background: rgba(0,200,150,.12); border-color: var(--c-primary); }
.nav-cidade svg { color: var(--c-primary); flex-shrink: 0; }

/* Modal de troca de cidade — variante menor */
.modal-box-sm { max-width: 460px; }
.modal-sub { font-size: .9rem; color: var(--c-text-2); margin-bottom: 16px; }
.modal-hint { font-size: .82rem; color: var(--c-text-3); margin-top: 16px; }
.modal-hint a { color: var(--c-primary); }
.cidade-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cidade-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.cidade-option:hover {
  border-color: var(--c-primary);
  background: rgba(0,200,150,.06);
}
.cidade-option.is-active {
  border-color: var(--c-primary);
  background: rgba(0,200,150,.1);
}
.cidade-option-uf { font-size: .8rem; color: var(--c-text-3); }

@media (max-width: 600px) {
  .hero-locator { padding: 18px; }
  .hero-locator-row { flex-direction: column; }
  .hero-locator-sep { padding: 4px 0; }
  .hero-locator-cep { width: 100%; }
  .hero-locator-cep input { flex: 1; width: auto; }
  .nav-cidade span { display: none; }
}
