/* ==========================================================
   Nomad Energia — estilos
   Paleta: grafite #16212B · azul-petróleo #12556B · âmbar #F2A31B (CTAs) · neutros
   ========================================================== */

/* ---------- Fontes auto-hospedadas ---------- */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Para usar Inter auto-hospedada no corpo, copie os arquivos para assets/fonts/
   e descomente o bloco abaixo (ver README.md, seção "Fontes").
@font-face { font-family: "Inter"; src: url("../fonts/inter-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/inter-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
*/

:root {
  --azul: #16212B;          /* grafite (fundo escuro principal) */
  --azul-2: #1d2b38;
  --azul-3: #12556B;
  --amb: #F2A31B;
  --amb-esc: #c9820a;
  --amb-claro: #fff3dc;
  --tinta: #10222f;
  --texto: #3b4b58;
  --mudo: #6a7a86;
  --linha: #e3e8ec;
  --fundo: #ffffff;
  --fundo-2: #f5f7f9;
  --verde-w: #1f9d55;
  --pet: #12556B;           /* azul-petróleo (apoio) */
  --pet-esc: #0d4253;
  --pet-claro: #e5f0f3;
  --erro: #c0392b;

  --f-tit: "Poppins", "Segoe UI", system-ui, sans-serif;
  --f-corpo: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --raio: 14px;
  --raio-sm: 10px;
  --sombra: 0 1px 2px rgba(22, 33, 43, .05), 0 8px 24px rgba(22, 33, 43, .06);
  --topo-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--topo-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-corpo);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--texto);
  background: var(--fundo);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--azul-3); text-underline-offset: 3px; }
a:hover { color: var(--azul); }
h1, h2, h3 { font-family: var(--f-tit); color: var(--tinta); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.35rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: 1.18rem; font-weight: 500; }
p { margin: 0 0 1em; }
ul, ol { padding: 0; margin: 0; list-style: none; }
strong { color: var(--tinta); }
:focus-visible { outline: 3px solid var(--amb); outline-offset: 3px; border-radius: 4px; }

.ico { width: 1.25em; height: 1.25em; flex: none; }
.container { width: min(1200px, 100% - 32px); margin-inline: auto; }
.container--estreito { width: min(820px, 100% - 32px); }

.pular { position: absolute; left: -9999px; top: 8px; background: var(--azul); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }
.pular:focus { left: 8px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--f-tit); font-weight: 500; font-size: 1rem; line-height: 1.2;
  padding: .95em 1.5em; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--amb { background: var(--amb); color: var(--azul); }
.btn--amb:hover { background: #ffb235; color: var(--azul); box-shadow: 0 6px 18px rgba(242, 163, 27, .35); }
.btn--whats { background: var(--verde-w); color: #fff; }
.btn--whats:hover { background: #178a49; color: #fff; }
.btn--linha { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn--linha:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; }
.btn--linha-escura { border-color: var(--linha); color: var(--azul); }
.btn--linha-escura:hover { border-color: var(--azul); color: var(--azul); }
.btn--sm { padding: .65em 1.15em; font-size: .95rem; }
.btn--bloco { width: 100%; }

/* ---------- Header fixo ---------- */
.topo {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--linha);
  backdrop-filter: saturate(1.4) blur(8px);
}
.topo__in { display: flex; align-items: center; gap: 24px; height: var(--topo-h); }
.topo__logo img { width: 190px; height: auto; }
.menu { margin-left: auto; }
.menu ul { display: flex; gap: 4px; }
.menu a {
  display: block; padding: .5em .8em; border-radius: 8px;
  color: var(--tinta); text-decoration: none; font-size: .95rem; font-weight: 500;
}
.menu a:hover { background: var(--fundo-2); color: var(--azul); }
.menu__tel { display: none; }
.menu__tel a { display: flex; align-items: center; gap: .5em; color: var(--azul); font-weight: 700; }
.topo__acoes { display: flex; align-items: center; gap: 14px; }
.topo__tel { display: inline-flex; align-items: center; gap: .4em; color: var(--azul); font-weight: 600; text-decoration: none; font-size: .95rem; white-space: nowrap; }
.topo__burger { display: none; background: none; border: 0; padding: 8px; color: var(--azul); cursor: pointer; border-radius: 8px; }
.topo__burger .ico { width: 28px; height: 28px; }
.topo__burger .i-fechar { display: none; }
.topo__burger[aria-expanded="true"] .i-abrir { display: none; }
.topo__burger[aria-expanded="true"] .i-fechar { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 88% 10%, rgba(242, 163, 27, .22), transparent 60%),
    linear-gradient(160deg, var(--azul) 0%, #18333f 60%, #12556B 100%);
  color: #d6e2ec;
  overflow: hidden;
}
.hero__in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding-block: clamp(56px, 8vw, 104px); }
.hero h1 { color: #fff; }
.hero__sub { font-size: 1.15rem; max-width: 38em; color: #c9d7e3; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }
.hero__ctas--centro { justify-content: center; }
.hero__nota { font-size: .88rem; color: #9fb4c6; margin: 0; }
.hero__arte img { width: 100%; max-width: 560px; margin-inline: auto; }
.selo {
  display: inline-flex; align-items: center; gap: .5em;
  background: rgba(242, 163, 27, .14); color: var(--amb);
  border: 1px solid rgba(242, 163, 27, .35);
  padding: .4em .9em; border-radius: 999px; font-size: .9rem; font-weight: 600; margin-bottom: 20px;
}

/* ---------- Barra de confiança ---------- */
.confianca { background: var(--pet-claro); border-bottom: 1px solid #cbe0e6; }
.confianca__lista { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-block: 20px; }
.confianca__lista li { display: flex; align-items: center; gap: .65em; color: var(--azul); font-weight: 600; font-size: .96rem; line-height: 1.35; }
.confianca__lista .ico { color: var(--pet-esc); width: 1.6em; height: 1.6em; }

/* ---------- Seções ---------- */
.secao { padding-block: clamp(64px, 9vw, 112px); }
.secao--clara { background: var(--fundo-2); }
.secao--escura { background: var(--azul); color: #c9d7e3; }
.secao--escura h2, .secao--escura strong { color: #fff; }
.secao__cab { max-width: 720px; margin-bottom: 48px; }
.secao__cab p:last-child { font-size: 1.1rem; margin-bottom: 0; }
.sobretitulo { font-family: var(--f-tit); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amb-esc); font-weight: 700; margin-bottom: .6em; }
.sobretitulo--amb { color: var(--amb); }

.grade { display: grid; gap: 20px; }
.grade--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff; border: 1px solid var(--linha); border-radius: var(--raio);
  padding: 28px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  margin: 0;
}
.card:hover { border-color: #cfd8df; box-shadow: var(--sombra); transform: translateY(-2px); }
.card p { margin: 0; }
.card__ico {
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px;
  background: var(--pet-claro); color: var(--pet-esc); margin-bottom: 18px;
}
.card__ico .ico { width: 26px; height: 26px; }

/* ---------- Serviços ---------- */
.servicos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.servico { background: #fff; border: 1px solid var(--linha); border-radius: var(--raio); padding: 30px; position: relative; }
.servico__num { font-family: var(--f-tit); font-weight: 700; color: var(--amb-esc); font-size: .95rem; display: block; margin-bottom: 10px; }
.servico h3 { font-size: 1.25rem; }
.servico--cta { background: var(--azul); border-color: var(--azul); color: #c9d7e3; display: flex; flex-direction: column; justify-content: center; }
.servico--cta h3 { color: #fff; }
.servico--cta .btn { align-self: flex-start; margin-top: 6px; }
.servicos { grid-auto-flow: dense; }
.servico--destaque { grid-column: span 2; border-top: 4px solid var(--pet); background: linear-gradient(180deg, var(--pet-claro), #fff 55%); }
.servico--destaque .lista-check { grid-template-columns: 1fr 1fr; column-gap: 24px; }
.servico--cta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.servico--cta h3 { margin-bottom: .3em; }
.servico--cta p { margin-bottom: 0; }
.servico--cta .btn { align-self: center; margin: 0; }
.rodape__marca { color: #fff; font-weight: 600; margin-bottom: 6px; }
.lista-check { display: grid; gap: 8px; margin-top: 14px; font-size: .96rem; }
.lista-check li { display: flex; gap: .55em; align-items: flex-start; }
.lista-check .ico { color: var(--pet); margin-top: .2em; width: 1.1em; height: 1.1em; }

/* ---------- Como funciona ---------- */
.passos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: p; position: relative; }
.passos::before {
  content: ""; position: absolute; top: 24px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--pet) 0 8px, transparent 8px 16px); z-index: 0;
}
.passo { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.passo__n {
  display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
  background: var(--azul); color: #fff; font-family: var(--f-tit); font-weight: 700; font-size: 1.15rem;
  box-shadow: 0 0 0 6px #fff; margin-bottom: 16px;
}
.passo h3 { font-size: 1.05rem; }
.passo p { font-size: .95rem; margin: 0; }
.explica {
  margin-top: 56px; background: var(--fundo-2); border: 1px solid var(--linha); border-left: 4px solid var(--pet);
  border-radius: var(--raio); padding: clamp(24px, 4vw, 40px);
}
.explica p:last-child { margin-bottom: 0; }

/* ---------- Simulador ---------- */
.sim { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
.aviso {
  margin-top: 24px; background: rgba(242, 163, 27, .1); border: 1px solid rgba(242, 163, 27, .45);
  border-radius: var(--raio-sm); padding: 18px 20px; font-size: .95rem; color: #f2e3c6;
}
.aviso strong { color: var(--amb); }
.sim__painel { background: #fff; color: var(--texto); border-radius: 20px; padding: clamp(22px, 3.5vw, 36px); box-shadow: 0 20px 60px rgba(0, 0, 0, .25); }
.sim__form label { display: block; font-weight: 600; color: var(--tinta); margin-bottom: 8px; }
.sim__entrada { display: flex; align-items: center; border: 2px solid var(--linha); border-radius: 12px; padding: 0 16px; transition: border-color .15s; }
.sim__entrada:focus-within { border-color: var(--amb); }
.sim__entrada span { font-family: var(--f-tit); font-weight: 700; color: var(--mudo); }
.sim__entrada input { border: 0; outline: 0; font: 700 1.6rem var(--f-tit); color: var(--azul); width: 100%; padding: 12px 10px; background: transparent; -moz-appearance: textfield; appearance: textfield; }
.sim__entrada input::-webkit-outer-spin-button, .sim__entrada input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
#sim-faixa { width: 100%; margin: 18px 0 4px; accent-color: var(--amb-esc); }
.sim__dica { font-size: .85rem; color: var(--mudo); margin: 0 0 18px; }
.sim__res { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0 0 16px; }
.sim__res div { background: var(--fundo-2); border-radius: 12px; padding: 14px 16px; }
.sim__res dt { font-size: .82rem; color: var(--mudo); line-height: 1.35; }
.sim__res dd { margin: 4px 0 0; font-family: var(--f-tit); font-weight: 700; color: var(--azul); font-size: 1.2rem; line-height: 1.25; }
.sim__res .sim__res--destaque { grid-column: 1 / -1; background: var(--azul); }
.sim__res--destaque dt { color: #b9cad8; }
.sim__res--destaque dd { color: var(--amb); font-size: 1.6rem; }
.sim__rodape { font-size: .8rem; color: var(--mudo); }

/* ---------- Sobre ---------- */
.sobre { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.ficha { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 0; }
.ficha div { border: 1px solid var(--linha); border-radius: var(--raio-sm); padding: 12px 16px; }
.ficha dt { font-size: .8rem; color: var(--mudo); text-transform: uppercase; letter-spacing: .06em; }
.ficha dd { margin: 2px 0 0; font-weight: 600; color: var(--tinta); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--linha); border-radius: var(--raio); transition: border-color .2s; }
.faq__item[open] { border-color: #cdd6de; }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 { margin: 0; font-size: 1.05rem; }
.faq__sinal { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--amb-claro); position: relative; }
.faq__sinal::before, .faq__sinal::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 12px; height: 2px; background: var(--amb-esc); transform: translate(-50%, -50%); transition: transform .2s; }
.faq__sinal::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__sinal::after { transform: translate(-50%, -50%) rotate(0); }
.faq__resp { padding: 0 24px 20px; }
.faq__resp p { margin: 0; }

/* ---------- Orçamento ---------- */
.orc { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.orc__contatos { display: grid; gap: 12px; margin-top: 28px; }
.orc__contatos a, .orc__end { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--tinta); font-weight: 600; word-break: break-word; }
.orc__contatos .ico { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--fundo-2); color: var(--azul); }
.orc__contatos small { display: block; font-weight: 500; color: var(--mudo); font-size: .8rem; }
.orc__end { font-weight: 500; }

.form { background: #fff; border: 1px solid var(--linha); border-radius: 20px; padding: clamp(22px, 3.5vw, 36px); box-shadow: var(--sombra); }
.form__linha { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.campo { display: flex; flex-direction: column; margin-bottom: 16px; }
.campo label { font-weight: 600; color: var(--tinta); font-size: .95rem; margin-bottom: 6px; }
.campo input, .campo select, .campo textarea {
  font: inherit; font-size: 1rem; color: var(--tinta); background: #fff;
  border: 1.5px solid #cfd8df; border-radius: var(--raio-sm); padding: .75em .9em; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.campo textarea { resize: vertical; min-height: 110px; }
.campo input:focus, .campo select:focus, .campo textarea:focus { outline: 0; border-color: var(--amb-esc); box-shadow: 0 0 0 4px rgba(242, 163, 27, .18); }
.campo [aria-invalid="true"] { border-color: var(--erro); }
.campo__erro { color: var(--erro); font-size: .86rem; margin-top: 4px; }
.campo--check { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 10px; }
.campo--check input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--azul); }
.campo--check label { flex: 1; font-weight: 400; font-size: .92rem; color: var(--texto); margin: 0; min-width: 0; }
.campo--check .campo__erro { flex-basis: 100%; }
.form__alerta { background: #fdecea; color: #8e2a1f; border: 1px solid #f5c2bc; border-radius: var(--raio-sm); padding: 12px 16px; margin-bottom: 18px; font-weight: 600; }
.form__nota { font-size: .82rem; color: var(--mudo); margin: 12px 0 0; }
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Páginas internas ---------- */
.pagina-simples { min-height: 50vh; }
.texto-legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.texto-legal h2 { font-size: 1.3rem; margin-top: 2em; }
.texto-legal ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.texto-legal li { margin-bottom: .35em; }
.texto-legal__data { color: var(--mudo); font-size: .92rem; }
.obrigado { text-align: center; }
.obrigado__ico { display: inline-grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: #e6f6ed; color: var(--verde-w); margin-bottom: 20px; }
.obrigado__ico .ico { width: 38px; height: 38px; }

/* ---------- Rodapé ---------- */
.rodape { background: #0f171e; color: #a9bccb; font-size: .95rem; }
.rodape__grid { display: grid; grid-template-columns: 1.4fr 1.1fr .9fr 1fr; gap: 40px; padding-block: 64px 48px; }
.rodape__col--marca img { width: 180px; margin-bottom: 16px; }
.rodape__tit { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.rodape a { color: #d4e0ea; text-decoration: none; }
.rodape a:hover { color: var(--amb); }
.rodape__cadastro { font-style: normal; line-height: 1.7; margin-top: 8px; }
.rodape__cadastro strong { color: #fff; }
.rodape__lista { display: grid; gap: 10px; }
.rodape__lista a, .rodape__lista span { display: inline-flex; align-items: flex-start; gap: .55em; word-break: break-word; }
.rodape__lista .ico { color: var(--amb); margin-top: .15em; }
.rodape__cidades { display: flex; flex-wrap: wrap; gap: 8px; }
.rodape__cidades li { border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; padding: .2em .75em; font-size: .86rem; }
.rodape__base { border-top: 1px solid rgba(255, 255, 255, .08); }
.rodape__base-in { display: flex; justify-content: space-between; gap: 16px 32px; flex-wrap: wrap; padding-block: 20px; font-size: .85rem; }
.rodape__base p { margin: 0; }
.rodape__base nav { display: flex; gap: 20px; }
.rodape__base nav a { text-decoration: underline; }

/* ---------- WhatsApp flutuante ---------- */
.whats-flutuante {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: var(--verde-w); color: #fff; box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: transform .15s ease;
}
.whats-flutuante:hover { transform: scale(1.06); color: #fff; }
.whats-flutuante .ico { width: 32px; height: 32px; }

/* ---------- Animação discreta ---------- */
.js .revela { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.js .revela.visivel { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .revela { opacity: 1; transform: none; }
}

/* ==========================================================
   Responsivo
   ========================================================== */
@media (min-width: 1600px) {
  body { font-size: 1.125rem; }
  .container { width: min(1320px, 100% - 64px); }
}

@media (max-width: 1180px) {
  .topo__tel span { display: none; }
  .menu a { padding: .5em .6em; font-size: .92rem; }
}

@media (max-width: 1024px) {
  .menu {
    position: fixed; inset: var(--topo-h) 0 auto 0; background: #fff; border-bottom: 1px solid var(--linha);
    box-shadow: 0 16px 30px rgba(22, 33, 43, .12); display: none; margin: 0;
  }
  .menu.aberto { display: block; }
  .menu__tel { display: block; }
  .menu ul { flex-direction: column; padding: 12px 16px 20px; gap: 0; }
  .menu a { padding: 14px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--linha); border-radius: 0; }
  .topo__acoes { margin-left: auto; }
  .topo__burger { display: inline-flex; }
  .topo__tel span { display: inline; }

  .hero__in, .sim, .sobre, .orc { grid-template-columns: 1fr; gap: 40px; }
  .hero__arte { order: -1; max-width: 460px; }
  .grade--3, .servicos { grid-template-columns: 1fr 1fr; }
  .confianca__lista { grid-template-columns: 1fr 1fr; }
  .passos { grid-template-columns: 1fr; gap: 0; }
  .passos::before { top: 0; bottom: 0; left: 24px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--pet) 0 8px, transparent 8px 16px); }
  .passo { display: grid; grid-template-columns: 50px 1fr; column-gap: 20px; text-align: left; padding: 0 0 28px; }
  .passo__n { grid-row: span 2; margin: 0; }
  .passo h3 { margin: 10px 0 6px; }
  .rodape__grid { grid-template-columns: 1fr 1fr; }
  .sobre__arte { max-width: 460px; }
}

@media (max-width: 767px) {
  :root { --topo-h: 64px; }
  .topo__logo img { width: 148px; }
  .topo__tel { display: none; }
  .hero__arte { display: none; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .grade--3, .servicos, .confianca__lista, .form__linha, .ficha, .rodape__grid { grid-template-columns: 1fr; }
  .servico--destaque { grid-column: auto; }
  .servico--destaque .lista-check { grid-template-columns: 1fr; }
  .servico--cta { flex-direction: column; align-items: flex-start; }
  .confianca__lista { gap: 12px; }
  .sim__res { grid-template-columns: 1fr; }
  .rodape__base-in { flex-direction: column; }
  .whats-flutuante { right: 14px; bottom: 14px; width: 56px; height: 56px; }
  .secao__cab { margin-bottom: 32px; }
  .faq__item summary { padding: 16px 18px; }
  .faq__resp { padding: 0 18px 16px; }
}

@media (max-width: 380px) {
  .topo__acoes .btn--sm { padding: .55em .9em; font-size: .88rem; }
  .topo__logo img { width: 130px; }
  .topo__in { gap: 10px; }
}
.rodape__extra { font-size: .86rem; margin: 12px 0 0; }
