/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light only;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== VARIÁVEIS ===== */
:root {
  --vermelho: #4e0000;
  --vermelho-escuro: #3a0000;
  --dourado: #c9a84c;
  --dourado-hover: #b8962e;
  --verde-wpp: #25D366;
  --verde-wpp-hover: #1ebe5d;
  --cinza-claro: #f5f6fa;
  --cinza-texto: #555;
  --branco: #fff;
  --sombra: 0 4px 24px rgba(0,0,0,.12);
  --radius: 10px;
}

/* ===== UTILITÁRIOS ===== */
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section--cinza { background: var(--cinza-claro); }
.titulo-secao {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.subtitulo-secao {
  text-align: center;
  color: var(--cinza-texto);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* ===== BOTÕES ===== */
.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde-wpp);
  color: var(--branco);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  text-decoration: none;
}
.btn-wpp:hover { background: var(--verde-wpp-hover); transform: translateY(-2px); }
.btn-wpp svg { flex-shrink: 0; }

.btn-dourado {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dourado);
  color: var(--vermelho);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-dourado:hover { background: var(--dourado-hover); transform: translateY(-2px); }

/* ===== HEADER ===== */
header {
  background: #fff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  border-bottom: 2px solid var(--vermelho);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo-img {
  width: auto;
  height: 50px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.header-tel {
  color: var(--vermelho);
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
@media (max-width: 400px) { .header-tel span { display: none; } }

/* ===== URGÊNCIA STRIP ===== */
.urgencia-strip {
  background: #c0392b;
  color: var(--branco);
  text-align: center;
  padding: 11px 16px;
  font-size: .85rem;
  font-weight: 600;
}
.urgencia-strip strong { color: #ffd700; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.60);
  z-index: 1;
}

#loop-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

/* Conteúdo sobre o vídeo */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (min-width: 861px) {
  .hero-content {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* Mobile: centraliza o bloco de texto com espaço pro botão fixo */
@media (max-width: 860px) {
  .hero-content {
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 90px;
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 861px) {
  .hero-layout { grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.5);
  color: var(--dourado);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-titulo {
  font-size: clamp(1.9rem, 5.5vw, 3.1rem);
  font-weight: 900;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-titulo em { font-style: normal; color: var(--dourado); }
.hero-subtitulo {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: #e8d5d5;
  max-width: 520px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.hero-aviso {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: #f0e0e0;
  font-size: .8rem;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 28px;
}
.hero-aviso strong { color: #f0c040; }
.hero-prova {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
}
.hero-prova-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8d5d5;
  font-size: .85rem;
}
.hero-prova-item strong { color: var(--branco); font-size: 1.15rem; display: block; }

/* ===== FORM BOX ===== */
.form-box {
  background: var(--branco);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.form-box h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; text-align: center; color: var(--vermelho); }
.form-box p.form-sub { font-size: .82rem; color: var(--cinza-texto); text-align: center; margin-bottom: 18px; }
.form-group { margin-bottom: 13px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 5px; color: #333; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 11px 13px;
  font-size: .92rem;
  font-family: inherit;
  transition: border-color .2s;
  background: #fafafa;
  color: #1a1a2e;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dourado);
  background: var(--branco);
}
.form-group textarea { resize: vertical; min-height: 68px; }
.form-btns { display: flex; flex-direction: column; gap: 9px; margin-top: 6px; }
.btn-form-enviar {
  width: 100%;
  background: var(--vermelho);
  color: var(--branco);
  font-weight: 700;
  font-size: .92rem;
  padding: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.btn-form-enviar:hover { background: var(--vermelho-escuro); transform: translateY(-1px); }
.btn-form-wpp {
  width: 100%;
  background: var(--verde-wpp);
  color: var(--branco);
  font-weight: 700;
  font-size: .92rem;
  padding: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-form-wpp:hover { background: var(--verde-wpp-hover); transform: translateY(-1px); }
.form-pular {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: .75rem;
  color: #888;
}
.form-pular a { color: var(--vermelho); font-weight: 600; text-decoration: underline; }
.form-privacidade { font-size: .72rem; color: #aaa; text-align: center; margin-top: 8px; }
#form-msg { text-align: center; font-size: .88rem; margin-top: 10px; padding: 10px; border-radius: 8px; display: none; }
#form-msg.sucesso { background: #e8f5e9; color: #2e7d32; display: block; }
#form-msg.erro { background: #fdecea; color: #c62828; display: block; }

/* ===== PROBLEMAS ===== */
.problemas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 760px) {
  .problemas-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.problema-card {
  background: var(--branco);
  border: 2px solid #e8eaf0;
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.problema-card:hover { border-color: var(--dourado); box-shadow: var(--sombra); }
.problema-icon {
  width: 42px; height: 42px;
  background: #fff0f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.problema-card h3 { font-size: .88rem; font-weight: 700; line-height: 1.3; }
.problema-card p { font-size: .8rem; color: var(--cinza-texto); line-height: 1.5; }

/* ===== SOLUÇÃO ===== */
.solucao-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 680px) { .solucao-layout { grid-template-columns: 1fr 1fr; gap: 48px; } }
.solucao-lista { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.solucao-lista li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; }
.check-icon {
  width: 22px; height: 22px;
  background: var(--dourado);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.solucao-cta-box {
  background: var(--vermelho);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  color: var(--branco);
}
.solucao-cta-box h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.solucao-cta-box p { font-size: .88rem; color: #f0d0d0; margin-bottom: 22px; }

/* ===== PASSOS ===== */
.passos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}
@media (min-width: 600px) { .passos-grid { grid-template-columns: repeat(3, 1fr); } }
.passo-card {
  background: var(--branco);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.passo-num {
  width: 50px; height: 50px;
  background: var(--dourado);
  color: var(--vermelho);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.passo-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.passo-card p { font-size: .84rem; color: var(--cinza-texto); }

/* ===== SOBRE ===== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 680px) { .sobre-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; } }
.sobre-texto h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.sobre-texto p { font-size: .93rem; color: var(--cinza-texto); margin-bottom: 12px; }
.sobre-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  gap: 14px;
  align-self: start;
  align-content: start;
  height: fit-content;
}
.sobre-num-card {
  background: var(--vermelho);
  color: var(--branco);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}
.sobre-num-card strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--dourado); }
.sobre-num-card span { font-size: .78rem; color: #f0d0d0; }

/* ===== DEPOIMENTOS — SLIDER ===== */
.depo-slider-wrap {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
}
.depo-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.depo-card {
  background: var(--branco);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border-left: 4px solid var(--dourado);
  flex: 0 0 100%;
  box-sizing: border-box;
}
@media (min-width: 700px) {
  .depo-card { flex: 0 0 calc(100% / 3); }
}
.depo-stars { color: #f0c040; font-size: .95rem; margin-bottom: 10px; }
.depo-card p { font-size: .87rem; color: #333; margin-bottom: 14px; font-style: italic; line-height: 1.6; }
.depo-autor { display: flex; align-items: center; gap: 10px; }

/* Setas */
.depo-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  background: var(--branco);
  border: 2px solid var(--dourado);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .2s, color .2s;
  color: var(--vermelho);
  font-size: 1.1rem;
  padding: 0;
  line-height: 1;
}
.depo-btn:hover { background: var(--dourado); color: var(--vermelho); }
.depo-btn--prev { left: 0; }
.depo-btn--next { right: 0; }
@media (min-width: 700px) {
  .depo-btn--prev { left: -18px; }
  .depo-btn--next { right: -18px; }
}

/* Dots */
.depo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.depo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.depo-dot.ativo { background: var(--dourado); transform: scale(1.25); }
.depo-avatar {
  width: 36px; height: 36px;
  background: var(--vermelho);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dourado);
  font-weight: 700;
  font-size: .88rem;
  flex-shrink: 0;
}
.depo-autor strong { font-size: .85rem; display: block; }
.depo-autor span { font-size: .76rem; color: var(--cinza-texto); }

/* ===== CTA FINAL ===== */
#cta-final { background: var(--vermelho); padding: 60px 0; text-align: center; }
#cta-final h2 { color: var(--branco); font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 10px; }
#cta-final p { color: #f0d0d0; margin-bottom: 26px; font-size: .93rem; }

/* ===== FAQ ===== */
.faq-lista { max-width: 700px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 2px solid #e0e4f0; border-radius: 10px; overflow: hidden; transition: border-color .2s; }
.faq-item.aberto { border-color: var(--dourado); }
.faq-pergunta {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: .92rem;
  background: var(--branco);
  user-select: none;
  gap: 12px;
}
.faq-icone { flex-shrink: 0; font-size: 1.2rem; color: var(--dourado); transition: transform .25s; }
.faq-item.aberto .faq-icone { transform: rotate(45deg); }
.faq-resposta { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: #fafafa; }
.faq-resposta-inner { padding: 0 18px 16px; font-size: .88rem; color: var(--cinza-texto); line-height: 1.65; }

/* ===== FOOTER ===== */
footer {
  background: #1a0000;
  color: #c0a0a0;
  padding: 40px 0 22px;
  font-size: .84rem;
}

/* Selos */
.footer-selos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}
.footer-selo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-selo--lg { height: 80px; }

/* Divisor */
.footer-divisor {
  border: none;
  border-top: 1px solid rgba(255,255,255,.12);
  margin: 0 0 32px;
}

/* Corpo */
.footer-corpo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
@media (min-width: 680px) {
  .footer-corpo { grid-template-columns: 200px 1fr; gap: 48px; align-items: start; }
}

/* Coluna logo */
.footer-logo-col { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.footer-contato { display: flex; flex-direction: column; gap: 8px; }
.footer-contato-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dourado);
  font-size: .85rem;
  transition: opacity .2s;
  text-decoration: none;
}
.footer-contato-item:hover { opacity: .8; }
.footer-contato-item svg { flex-shrink: 0; color: var(--dourado); }

/* Coluna aviso */
.footer-aviso-col { display: flex; flex-direction: column; gap: 12px; }
.footer-aviso-texto {
  font-size: .8rem;
  color: #b0909090;
  line-height: 1.7;
  color: rgba(192,160,160,.85);
}
.footer-aviso-destaque {
  font-weight: 700;
  color: #c0a0a0;
}

/* Rodapé final */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  text-align: center;
  font-size: .76rem;
  color: rgba(192,160,160,.6);
}

/* ===== WHATSAPP FLOAT ===== */
.wpp-float { position: fixed; bottom: 20px; right: 20px; z-index: 999; animation: pulsar 2.5s ease-in-out infinite; }
.wpp-float a {
  width: 58px; height: 58px;
  background: var(--verde-wpp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s;
}
.wpp-float a:hover { transform: scale(1.1); }
@keyframes pulsar { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO FORM — oculto no mobile, visível no desktop ===== */
.hero-form-desktop { display: none; }
@media (min-width: 861px) {
  .hero-form-desktop { display: block; }
}

/* ===== MOBILE: BARRA FIXA COM BOTÃO ===== */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 860px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 12px 16px 28px;
    background: linear-gradient(to top, rgba(0,0,0,.7) 60%, transparent 100%);
  }
  /* empurra o wpp-float para cima da barra */
  .wpp-float { bottom: 88px; }
}
.mobile-cta-btn {
  width: 100%;
  background: #bc9d47;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 28px rgba(188,157,71,.45);
  transition: background .35s, box-shadow .35s, transform .1s;
}
.mobile-cta-btn.fora-hero {
  background: var(--vermelho);
  box-shadow: 0 4px 28px rgba(78,0,0,.45);
}
.mobile-cta-btn:active { transform: scale(.97); }

/* ===== MOBILE: OVERLAY TELA CHEIA ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: #fff;
  flex-direction: column;
  transform: translateY(110%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.mobile-overlay.aberto {
  transform: translateY(0);
}
@media (max-width: 860px) {
  .mobile-overlay { display: flex; }
}

.mobile-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--vermelho);
  flex-shrink: 0;
}
.mobile-overlay-titulo {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
.mobile-overlay-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-overlay-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px 24px;
  -webkit-overflow-scrolling: touch;
}

.mobile-overlay-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--verde-wpp);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 16px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background .2s;
}
.mobile-overlay-wpp:hover { background: var(--verde-wpp-hover); }

.mobile-overlay-divisor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 10px;
  color: #aaa;
  font-size: .78rem;
}
.mobile-overlay-divisor::before,
.mobile-overlay-divisor::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* Campos mais compactos dentro do overlay mobile */
.mobile-overlay-body .form-group { margin-bottom: 8px; }
.mobile-overlay-body .form-group input,
.mobile-overlay-body .form-group select,
.mobile-overlay-body .form-group textarea { padding: 9px 12px; font-size: .88rem; }
.mobile-overlay-body .form-group label { font-size: .76rem; margin-bottom: 3px; }
.mobile-overlay-body .form-group textarea { min-height: 44px; }
.mobile-overlay-body .form-btns { margin-top: 8px; gap: 7px; }

#form-msg-m {
  text-align: center;
  font-size: .88rem;
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  display: none;
}
#form-msg-m.sucesso { background: #e8f5e9; color: #2e7d32; display: block; }
#form-msg-m.erro    { background: #fdecea; color: #c62828; display: block; }

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .hero-titulo { font-size: 1.7rem; }
  .hero-subtitulo { font-size: .9rem; }
  .section { padding: 44px 0; }
  .form-box { padding: 22px 16px; }
  .btn-wpp { width: 100%; justify-content: center; }
  .sobre-nums { gap: 10px; }
  .urgencia-strip { font-size: .78rem; }
}
