/* =====================================================================
   GOVMARCAS — Design System
   Sóbrio, institucional e premium. Paleta extraída da marca:
   navy profundo, azul vibrante, prata/aço e ardósia.
   ===================================================================== */

:root {
  /* Brand */
  --navy-900: #081427;
  --navy-800: #0c1f3d;
  --navy-700: #102b54;
  --navy-600: #14366b;
  --blue-500: #1b9de0;   /* "MARCAS" azul vibrante */
  --blue-600: #1483c1;
  --blue-400: #45b6ec;
  --blue-300: #8fd2f3;

  /* Neutros */
  --slate-700: #3a465c;
  --slate-600: #59667d;  /* texto corpo original do site */
  --slate-400: #8b97ab;
  --line: #e4eaf2;
  --paper: #f4f7fb;
  --paper-2: #eaf1f8;
  --white: #ffffff;

  /* Aço (eco do check do escudo) */
  --steel-1: #f4f6f9;
  --steel-2: #c7ced8;
  --steel-3: #9aa6b6;

  --ink: #0d1b30;

  /* Tipografia — títulos e contadores em Sora (sans sóbria/institucional) */
  --display: "Sora", "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --sans: "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(12, 31, 61, .06);
  --shadow: 0 18px 50px -22px rgba(10, 27, 56, .35);
  --shadow-lg: 0 40px 90px -40px rgba(8, 20, 39, .55);
  --ring: 0 0 0 1px var(--line);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  font-family: var(--sans);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1340px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy-800); color: #c8d4e6; }
.text-center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--slate-600); line-height: 1.7; }
.muted { color: var(--slate-400); }
.mw-720 { max-width: 720px; }
.mw-820 { max-width: 820px; }

/* Eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--blue-600);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--blue-500); border-radius: 2px; }
.kicker svg { width: 16px; height: 16px; }
.section--navy .kicker { color: var(--blue-400); }
.text-center .kicker::before { display: none; }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head .lead { margin-top: 16px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: .98rem;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  white-space: nowrap; letter-spacing: .01em;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff; box-shadow: 0 14px 30px -12px rgba(27, 157, 224, .7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(27, 157, 224, .8); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { transform: translateY(-3px); background: var(--navy-700); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--navy-800); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--blue-500); color: var(--blue-600); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-800); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-wa { background: #1faf54; color: #fff; }
.btn-wa:hover { transform: translateY(-3px); background: #1c9d4c; box-shadow: 0 18px 34px -16px rgba(31, 175, 84, .8); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* =====================================================================
   TOPBAR
   ===================================================================== */
.topbar {
  background: var(--navy-900); color: #aebbd0;
  font-size: .82rem; font-weight: 500;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 42px; gap: 18px; }
.topbar a { color: #cdd7e8; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__list { display: flex; gap: 24px; align-items: center; }
.topbar__list li { display: flex; align-items: center; gap: 7px; }
.topbar__list svg { width: 15px; height: 15px; color: var(--blue-400); }
.topbar__tag { display: inline-flex; align-items: center; gap: 8px; letter-spacing: .04em; }
.topbar__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #36d07a; box-shadow: 0 0 0 4px rgba(54,208,122,.18); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
/* backdrop-filter só fora do range do menu lateral, para não virar
   containing block do drawer fixed (que ficaria preso à altura do header) */
@media (min-width: 1061px) {
  .header { background: rgba(255, 255, 255, .85); backdrop-filter: saturate(160%) blur(14px); }
}
.header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(8, 20, 39, .35); }
/* Com o menu aberto, o header sobe acima do backdrop para o drawer ficar clicável
   (o header cria stacking context via z-index, então o drawer-filho dependia disso) */
.header.menu-open { z-index: 80; }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 24px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .95rem; color: var(--slate-700);
  padding: 10px 15px; border-radius: 10px; transition: color .2s, background .2s; cursor: pointer;
}
.nav__link:hover { color: var(--navy-800); background: var(--paper); }
.nav__link.active { color: var(--blue-600); }
.nav__link.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--blue-500); border-radius: 2px;
}
.nav__caret { width: 13px; height: 13px; transition: transform .3s var(--ease); opacity: .7; }
.nav__subtoggle { display: none; }

/* Dropdown desktop */
.nav__sub {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 248px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 8px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav__sub::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav__sub li a {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 10px;
  font-weight: 600; font-size: .92rem; color: var(--slate-700); transition: background .2s, color .2s;
}
.nav__sub li a:hover { background: var(--paper); color: var(--blue-600); padding-left: 18px; }
.nav__item.has-sub:hover .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__item.has-sub:hover .nav__caret { transform: rotate(180deg); }

.nav__drawer-cta { display: none; }
.nav__close { display: none; }
.header__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; color: var(--navy-800); align-items: center; justify-content: center; transition: background .2s; }
.nav-toggle:hover { background: var(--paper); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Ícones de marca (Font Awesome) */
.brand-ico { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.btn .brand-ico { font-size: 1.15em; }
.topbar__list .brand-ico { font-size: 14px; color: var(--blue-400); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(27,157,224,.32), transparent 60%),
    radial-gradient(700px 600px at 6% 110%, rgba(20,54,107,.55), transparent 60%),
    linear-gradient(160deg, #081427 0%, #0c1f3d 55%, #102b54 100%);
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;
  align-items: center; padding: clamp(56px, 8vw, 110px) 0 clamp(80px, 9vw, 130px);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px;
  border-radius: 999px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); font-size: .82rem; font-weight: 600;
  color: #cfe0f2; margin-bottom: 26px;
}
.hero__badge img { height: 26px; width: 26px; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--blue-400); }
.hero__slogan {
  font-family: var(--display); font-size: clamp(1.12rem, 1.9vw, 1.42rem);
  color: #d7e3f3; font-weight: 500; margin: 22px 0 14px; letter-spacing: -.01em;
}
.hero__sub { color: #a9bbd4; font-size: 1.06rem; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero__stat .n { font-family: var(--display); font-size: 2.1rem; color: #fff; font-weight: 600; }
.hero__stat .l { font-size: .82rem; color: #95a8c4; letter-spacing: .02em; }
.hero__stat .n .u { color: var(--blue-400); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__photo {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08); aspect-ratio: 4/4.4;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__shield {
  position: absolute; left: -38px; bottom: 42px; width: 120px; height: auto;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.5));
}
.hero__card {
  position: absolute; right: -18px; top: 36px; background: #fff; color: var(--ink);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero__card .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(27,157,224,.12); color: var(--blue-600); display: grid; place-items: center; flex-shrink: 0; }
.hero__card .ic svg { width: 24px; height: 24px; }
.hero__card .t { font-weight: 700; font-size: .92rem; color: var(--ink); }
.hero__card .d { font-size: .78rem; color: var(--slate-400); }

/* Wave separator bottom of hero */
.hero__wave { position: relative; display: block; width: 100%; height: auto; color: var(--white); }

/* =====================================================================
   SEARCH HIGHLIGHT (destaque na home)
   ===================================================================== */
.search-spot { position: relative; margin-top: -70px; z-index: 20; }
.search-card {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr; gap: 28px; /* texto acima, busca abaixo (resultados precisam de largura) */
}
.search-card__intro .kicker { margin-bottom: 14px; }
.search-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.search-card__intro p { margin-top: 12px; color: var(--slate-600); }
.search-form { display: flex; flex-direction: column; gap: 14px; }
.search-field {
  display: flex; align-items: center; gap: 12px; background: var(--paper);
  border: 1.5px solid var(--line); border-radius: 14px; padding: 6px 6px 6px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.search-field:focus-within { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(27,157,224,.12); background: #fff; }
.search-field svg { width: 22px; height: 22px; color: var(--slate-400); flex-shrink: 0; }
.search-field input {
  flex: 1; border: 0; background: transparent; font-family: var(--sans);
  font-size: 1.05rem; color: var(--ink); padding: 14px 0; outline: none;
}
.search-row { display: flex; gap: 12px; flex-wrap: wrap; }
.search-row .search-field { flex: 1; min-width: 180px; padding-left: 16px; }
.search-row select { flex: 1; min-width: 180px; border: 1.5px solid var(--line); border-radius: 14px; padding: 16px; font-family: var(--sans); color: var(--slate-700); background: var(--paper); font-size: 1rem; outline: none; }
.search-note { font-size: .82rem; color: var(--slate-400); display: flex; align-items: center; gap: 8px; }
.search-note svg { width: 15px; height: 15px; color: var(--blue-500); }

/* Search result placeholder */
.search-result { margin-top: 18px; border-radius: 14px; padding: 18px 20px; background: var(--paper); border: 1px dashed var(--line); display: none; }
.search-result.show { display: block; animation: fade-up .4s var(--ease); }
.search-result__head { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy-800); }
.search-result__head svg { width: 20px; height: 20px; color: var(--blue-600); }
.search-result p { font-size: .9rem; margin-top: 6px; color: var(--slate-600); }

/* Lead-gate antes do resultado */
.search-lead { margin-top: 18px; border-radius: 14px; padding: 18px 20px; background: var(--paper); border: 1.5px solid var(--line); display: flex; flex-direction: column; gap: 14px; animation: fade-up .4s var(--ease); }
.search-lead[hidden] { display: none; }
.search-lead__head { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy-800); font-size: .95rem; }
.search-lead__head svg { width: 20px; height: 20px; color: var(--blue-600); flex-shrink: 0; }
.search-lead .search-field { padding-left: 16px; }
.search-lead__erro { color: #b3261e; min-height: 1em; }

/* Veredicto + lista de resultados da busca */
.search-verdict { margin-top: 12px; border-radius: 10px; padding: 12px 14px; font-size: .9rem; font-weight: 600; }
.search-verdict--alerta { background: #fdf1f0; color: #8c2a23; border: 1px solid #f3d2cf; }
.search-verdict--neutro { background: #f2f7fb; color: var(--navy-800); border: 1px solid var(--line); }
.search-verdict--ok { background: #f0f9f2; color: #1e6b35; border: 1px solid #cfe9d6; }
.search-hits { list-style: none; margin: 12px 0 4px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.search-hits li { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 4px 12px; font-size: .88rem; padding: 8px 12px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }
.search-hits li strong { color: var(--navy-800); overflow-wrap: anywhere; flex: 1 1 auto; min-width: 60%; }
.search-hits li span { color: var(--slate-600); font-size: .8rem; margin-left: auto; text-align: right; }
.search-more { display: block; width: 100%; margin: 10px 0 4px; padding: 10px 14px; border-radius: 8px; border: 1.5px dashed var(--line); background: transparent; color: var(--blue-600); font-family: var(--sans); font-size: .85rem; font-weight: 700; cursor: pointer; transition: all .2s var(--ease); }
.search-more:hover { border-color: var(--blue-500); background: rgba(27,157,224,.06); }
.search-more[hidden] { display: none; }

/* =====================================================================
   TRUST / LOGOS STRIP
   ===================================================================== */
.trust { padding: 40px 0; border-bottom: 1px solid var(--line); }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.trust__item { display: flex; align-items: center; gap: 12px; color: var(--slate-600); font-weight: 600; font-size: .95rem; }
.trust__item svg { width: 26px; height: 26px; color: var(--blue-600); flex-shrink: 0; }

/* =====================================================================
   CARDS GERAIS
   ===================================================================== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d4e0ee; }
.card__ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; margin-bottom: 22px;
}
.card__ic svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--slate-600); }
.card__list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.card__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .96rem; color: var(--slate-700); }
.card__list svg { width: 19px; height: 19px; color: var(--blue-600); flex-shrink: 0; margin-top: 2px; }
.card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 700; color: var(--blue-600); font-size: .95rem; }
.card__link svg { width: 17px; height: 17px; transition: transform .3s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* Card com foto */
.card-photo { padding: 0; }
.card-photo__img { display: block; height: 210px; overflow: hidden; }
.card-photo__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card-photo:hover .card-photo__img img { transform: scale(1.06); }
.card-photo__body { padding: 30px 32px 34px; }

/* =====================================================================
   FRENTES (3 colunas com foto)
   ===================================================================== */

/* =====================================================================
   NEWS CARDS
   ===================================================================== */
.news-card {
  display: flex; flex-direction: column; gap: 14px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 28px 26px;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d4e0ee; }
.news-card__top { display: flex; align-items: center; justify-content: space-between; }
.news-card__tag { display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); padding: 6px 12px; border-radius: 999px; }
.news-card__tag svg { width: 14px; height: 14px; }
.news-card__min { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--slate-400); font-weight: 600; }
.news-card__min svg { width: 14px; height: 14px; }
.news-card__title { font-family: var(--display); font-size: 1.12rem; font-weight: 600; color: var(--navy-800); line-height: 1.35; margin: 0; }
.news-card:hover .news-card__title { color: var(--blue-600); }
.news-card__date { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; color: var(--blue-600); font-weight: 700; padding-top: 12px; border-top: 1px solid var(--line); }
.news-card__date svg { width: 16px; height: 16px; transition: transform .2s ease; }
.news-card:hover .news-card__date svg { transform: translateX(4px); }

/* =====================================================================
   PLANOS / PRICING
   ===================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan .btn { margin-top: auto; }   /* alinha os botões no rodapé do card */
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured {
  background: linear-gradient(170deg, var(--navy-800), var(--navy-700));
  color: #cdd9ec; border-color: transparent; box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-6px); }
.plan__badge {
  position: absolute; top: 20px; right: 20px; background: var(--blue-500); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}
.plan__name { font-family: var(--display); font-size: 1.45rem; color: var(--ink); font-weight: 600; }
.plan--featured .plan__name { color: #fff; }
.plan__sub { font-size: .9rem; color: var(--slate-400); margin-top: 4px; }
.plan--featured .plan__sub { color: var(--blue-300); }
.plan__desc { font-size: .92rem; margin-top: 16px; color: var(--slate-600); min-height: 44px; }
.plan--featured .plan__desc { color: #aebfd8; }
.plan__price { margin: 22px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan--featured .plan__price { border-color: rgba(255,255,255,.12); }
.plan__price .v { font-family: var(--display); font-size: 2rem; color: var(--navy-800); font-weight: 600; }
.plan--featured .plan__price .v { color: #fff; }
.plan__price .v small { font-size: .9rem; color: var(--slate-400); font-family: var(--sans); font-weight: 600; }
.plan__items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan__items li { display: flex; align-items: flex-start; gap: 11px; font-size: .94rem; }
.plan__items svg { width: 19px; height: 19px; color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }
.plan--featured .plan__items svg { color: var(--blue-400); }

.price-notes { margin-top: 44px; background: var(--paper); border-radius: var(--radius); padding: 28px 32px; border: 1px solid var(--line); }
.section--navy .price-notes { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.price-notes ul { display: flex; flex-direction: column; gap: 9px; }
.price-notes li { display: flex; gap: 10px; font-size: .9rem; color: var(--slate-600); align-items: flex-start; }
.section--navy .price-notes li { color: #aebfd8; }
.price-notes li svg { width: 16px; height: 16px; color: var(--blue-500); flex-shrink: 0; margin-top: 4px; }
.price-notes .rodape { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .9rem; font-style: italic; color: var(--slate-600); }
.section--navy .price-notes .rodape { border-color: rgba(255,255,255,.1); color: #aebfd8; }

/* =====================================================================
   VANTAGENS (numbered)
   ===================================================================== */
.vant { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vant__item {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; position: relative; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.vant__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.vant__num {
  font-family: var(--display); font-size: 3.4rem; font-weight: 600; line-height: 1;
  background: linear-gradient(135deg, var(--steel-3), var(--steel-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.vant__item h3 { color: var(--navy-800); margin-bottom: 14px; }
.vant__sub { font-weight: 700; color: var(--slate-700); margin: 16px 0 8px; font-size: .95rem; }
.vant__list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.vant__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
.vant__list svg { width: 18px; height: 18px; color: var(--blue-600); flex-shrink: 0; margin-top: 2px; }
.vant__ex { margin-top: auto; padding: 14px 16px; background: var(--paper); border-left: 3px solid var(--blue-500); border-radius: 0 10px 10px 0; font-size: .89rem; color: var(--slate-600); }
.vant__ex b { color: var(--navy-700); }

/* =====================================================================
   ATENDIMENTO NACIONAL (split)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split__media .badge-float {
  position: absolute; background: #fff; border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
}
.split__media .badge-float.bl { left: -26px; bottom: -26px; }
.split__media .badge-float .ic { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg,var(--navy-800),var(--navy-600)); color:#fff; display:grid; place-items:center; }
.split__media .badge-float .ic svg { width: 24px; height: 24px; }
.split__media .badge-float .t { font-family: var(--display); font-size: 1.3rem; color: var(--navy-800); font-weight: 600; }
.split__media .badge-float .l { font-size: .78rem; color: var(--slate-400); }
.feature-list { display: grid; gap: 18px; margin-top: 28px; }
.feature-list__item { display: flex; gap: 16px; align-items: flex-start; }
.feature-list__item .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(27,157,224,.1); color: var(--blue-600); display: grid; place-items: center; flex-shrink: 0; }
.feature-list__item .ic svg { width: 22px; height: 22px; }
.feature-list__item h4 { font-family: var(--sans); font-size: 1.02rem; color: var(--navy-800); font-weight: 700; }
.feature-list__item p { font-size: .94rem; color: var(--slate-600); margin-top: 2px; }

/* =====================================================================
   STEPS / PROCESSO
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step__n { width: 52px; height: 52px; border-radius: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; place-items: center; font-family: var(--display); font-size: 1.4rem; font-weight: 600; color: var(--blue-600); margin-bottom: 18px; }
.step h4 { font-family: var(--sans); font-size: 1.05rem; color: var(--navy-800); font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--slate-600); }
.section--navy .step__n { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--blue-400); }
.section--navy .step h4 { color: #fff; }
.section--navy .step p { color: #aebfd8; }

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq__item.open { border-color: #cfe0f1; box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; text-align: left; font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--navy-800); }
.faq__q .icn { width: 30px; height: 30px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; flex-shrink: 0; transition: transform .35s var(--ease), background .3s; }
.faq__q .icn svg { width: 17px; height: 17px; color: var(--blue-600); }
.faq__item.open .faq__q .icn { transform: rotate(45deg); background: var(--blue-500); }
.faq__item.open .faq__q .icn svg { color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 26px 24px; color: var(--slate-600); white-space: pre-line; line-height: 1.7; }

/* =====================================================================
   CTA FINAL
   ===================================================================== */
.cta-band { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 380px at 85% 0%, rgba(27,157,224,.28), transparent 60%), linear-gradient(140deg, #081427, #102b54); }
.cta-band__inner { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; padding: clamp(50px, 7vw, 84px) 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #aebfd4; margin-top: 14px; font-size: 1.08rem; max-width: 560px; }
.cta-band__actions { display: flex; flex-direction: column; gap: 14px; }

/* =====================================================================
   FORMULÁRIO DE CONTATO
   ===================================================================== */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 46px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 700; color: var(--navy-800); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--paper);
  transition: border-color .2s, box-shadow .2s, background .2s; outline: none; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(27,157,224,.12); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .84rem; color: var(--slate-400); margin-top: 4px; }

/* =====================================================================
   PAGE HEADER (internas)
   ===================================================================== */
.page-hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; padding: clamp(70px, 9vw, 120px) 0 clamp(56px, 7vw, 96px); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 460px at 82% -10%, rgba(27,157,224,.28), transparent 60%), linear-gradient(150deg, #081427, #0c1f3d 60%, #102b54); }
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #b3c3da; margin-top: 18px; font-size: 1.15rem; max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: #8ba0c0; margin-bottom: 22px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; }

/* Prose for long content */
.prose { max-width: 760px; }
.prose h2 { margin: 40px 0 16px; }
.prose h3 { margin: 32px 0 12px; color: var(--navy-800); }
.prose p { margin-bottom: 18px; color: var(--slate-600); }
.prose ul.bullets { margin: 0 0 20px; display: flex; flex-direction: column; gap: 12px; }
.prose ul.bullets li { display: flex; gap: 12px; align-items: flex-start; }
.prose ul.bullets svg { width: 20px; height: 20px; color: var(--blue-600); flex-shrink: 0; margin-top: 3px; }

.callout { background: var(--paper); border-left: 4px solid var(--blue-500); border-radius: 0 14px 14px 0; padding: 22px 26px; margin: 28px 0; }
.callout strong { color: var(--navy-800); }

/* Sticky aside */
.layout-aside { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); position: sticky; top: 110px; }
.aside-card h4 { font-family: var(--display); color: var(--navy-800); margin-bottom: 8px; font-size: 1.25rem; }
.aside-card p { font-size: .92rem; color: var(--slate-600); margin-bottom: 18px; }
.aside-card .btn { width: 100%; margin-bottom: 10px; }
.aside-card .mini { font-size: .82rem; color: var(--slate-400); text-align: center; margin-top: 6px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--navy-900); color: #93a5c1; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; right: -80px; top: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(27,157,224,.12), transparent 65%); }
.footer__top { position: relative; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(56px, 7vw, 84px) 0 48px; }
.footer__brand img { height: 40px; margin-bottom: 20px; }
.footer__brand p { font-size: .94rem; max-width: 320px; line-height: 1.7; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cdd7e8; transition: background .25s, transform .25s; }
.footer__social a:hover { background: var(--blue-500); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__social a .brand-ico { font-size: 18px; }
.footer h5 { font-family: var(--sans); color: #fff; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
.footer__links { display: flex; flex-direction: column; gap: 13px; }
.footer__links a { font-size: .94rem; transition: color .2s, padding .2s; }
.footer__links a:hover { color: #fff; padding-left: 4px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: .92rem; }
.footer__contact svg { width: 19px; height: 19px; color: var(--blue-400); flex-shrink: 0; margin-top: 2px; }
.footer__contact .brand-ico { font-size: 18px; width: 19px; color: var(--blue-400); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { position: relative; border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .85rem; flex-wrap: wrap; }
.footer__bottom a:hover { color: #fff; }
.footer__credit a { color: #cfe0f2; font-weight: 700; transition: color .2s; }
.footer__credit a:hover { color: var(--blue-400); }

/* WhatsApp float */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 60px; height: 60px; border-radius: 50%; background: #1faf54; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(31,175,84,.6); transition: transform .3s; animation: wa-pulse 2.4s infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float .brand-ico { font-size: 30px; }
@keyframes wa-pulse { 0% { box-shadow: 0 14px 30px -8px rgba(31,175,84,.6), 0 0 0 0 rgba(31,175,84,.45); } 70% { box-shadow: 0 14px 30px -8px rgba(31,175,84,.6), 0 0 0 16px rgba(31,175,84,0); } 100% { box-shadow: 0 14px 30px -8px rgba(31,175,84,.6), 0 0 0 0 rgba(31,175,84,0); } }

/* =====================================================================
   ANIMAÇÕES (reveal on scroll)
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .layout-aside { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
/* Esconde botão fantasma do header em telas médias para a navbar respirar */
@media (max-width: 1280px) { .header__cta .btn-text-hide { display: none; } }
@media (max-width: 1140px) { .nav__link { padding: 10px 12px; font-size: .9rem; } }

/* Navbar vira menu lateral abaixo de 1060px */
@media (max-width: 1060px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header__cta-main { display: none; }   /* mobile limpo: só logo + hambúrguer */

  /* Drawer mobile */
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px);
    background: #fff; padding: 88px 20px 28px; box-shadow: -20px 0 60px -20px rgba(8,20,39,.4);
    z-index: 70; overflow-y: auto;
  }
  .nav.open .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav.open .nav__item { border-bottom: 1px solid var(--line); }
  .nav.open .nav__link { padding: 16px 8px; font-size: 1.06rem; border-radius: 0; width: 100%; }
  .nav.open .nav__link.active::after { display: none; }
  .nav.open .nav__caret { display: none; }

  /* Submenu vira acordeão dentro do drawer */
  .nav.open .nav__item.has-sub { position: relative; display: flex; flex-wrap: wrap; align-items: center; }
  .nav.open .nav__item.has-sub > .nav__link { flex: 1; }
  .nav.open .nav__subtoggle {
    display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    color: var(--navy-800); border-radius: 10px;
  }
  .nav.open .nav__subtoggle svg { width: 20px; height: 20px; transition: transform .3s var(--ease); }
  .nav.open .nav__item.sub-open .nav__subtoggle svg { transform: rotate(180deg); }
  .nav.open .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; padding: 0; min-width: 0; width: 100%; max-height: 0; overflow: hidden;
    transition: max-height .35s var(--ease); background: var(--paper); border-radius: 12px;
  }
  .nav.open .nav__item.sub-open .nav__sub { max-height: 360px; margin: 4px 0 12px; padding: 6px; }
  .nav.open .nav__sub li a { font-size: .98rem; }

  /* Botão de fechar dentro do drawer */
  .nav.open .nav__close {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 20px; right: 16px; width: 46px; height: 46px;
    border-radius: 12px; color: var(--navy-800); background: var(--paper); transition: background .2s, color .2s;
  }
  .nav.open .nav__close:hover { background: #e6edf6; color: var(--blue-600); }
  .nav.open .nav__close svg { width: 24px; height: 24px; }

  /* CTAs dentro do drawer */
  .nav.open .nav__drawer-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

  .nav-backdrop { position: fixed; inset: 0; background: rgba(8,20,39,.5); z-index: 65; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

@media (max-width: 920px) {
  .grid-3, .grid-4, .plans, .vant, .split, .steps { grid-template-columns: 1fr; }
  .steps { gap: 28px; }
  .split--reverse .split__media { order: 0; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .topbar__list { display: none; }
  .topbar .container { justify-content: center; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .hero__stats { gap: 22px; }
  .hero__shield { width: 84px; left: -14px; }
  .trust__row { justify-content: center; }
  .footer__top { grid-template-columns: 1fr; }
  /* Atendimento nacional: badge deixa de flutuar centralizado e vira um
     cartão horizontal limpo, sobrepondo só levemente a base da imagem */
  .split__media { display: flex; flex-direction: column; }
  .split__media .badge-float.bl {
    position: static; transform: none; left: auto; bottom: auto;
    align-self: stretch; margin: -28px 16px 0; padding: 16px 18px;
    box-shadow: var(--shadow);
  }
  .split__media .badge-float .t { white-space: nowrap; font-size: 1.2rem; }
}
