@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap");

/* =====================================================================
   BIOTECH Controle de Pragas : folha de estilo
   Design system: verde-floresta (do logo) + acento laranja
   Tipografia: Bricolage Grotesque (títulos) · Inter (texto) · Space Mono (rótulos)
   ===================================================================== */

:root {
  --brand:      #033d2c;
  --brand-700:  #06553c;
  --brand-600:  #0b6b4f;
  --brand-050:  #e8f3ee;
  --accent:     #f07e1a;
  --accent-600: #d96a0c;

  --ink:    #16211d;
  --muted:  #5a6b63;
  --line:   #dce7e1;
  --paper:  #fbfbf8;
  --soft:   #f2f7f4;
  --card:   #ffffff;

  --display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono:    "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius:   20px;
  --radius-sm:14px;
  --shadow:   0 22px 50px -24px rgba(3, 61, 44, 0.35);
  --shadow-sm:0 10px 30px -18px rgba(3, 61, 44, 0.3);
  --ring:     0 0 0 3px rgba(240, 126, 26, 0.35);
  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--brand); color: #fff; padding: 10px 16px;
  border-radius: 10px; z-index: 200; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container { width: min(1140px, calc(100% - 44px)); margin-inline: auto; }
.narrow { max-width: 820px; }

/* ---------- Tipografia ---------- */
h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin: 0 0 16px;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.01em; }
p  { margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 14px;
}
.eyebrow-light { color: #7fe3bf; }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(251, 251, 248, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(3, 61, 44, 0.5);
}
.header-inner {
  height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: 46px; border-radius: 11px; }
.brand-name {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--display); font-weight: 800; font-size: 1.06rem;
  color: var(--brand); letter-spacing: -0.01em;
}
.brand-name small {
  font-family: var(--mono); font-weight: 400; font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-weight: 600; font-size: 0.94rem; color: var(--brand-700);
  padding: 9px 13px; border-radius: 10px; transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.nav a:hover { background: var(--brand-050); color: var(--brand); }
.nav a.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  margin-left: 8px;
  box-shadow: 0 10px 26px -16px rgba(240, 126, 26, 0.65);
}
.nav a.nav-cta:hover {
  background: var(--accent-600);
  color: #fff !important;
}

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 40px; padding: 10px; border: 1px solid var(--line);
  background: var(--card); border-radius: 12px; cursor: pointer;
}
.menu-toggle span {
  height: 2px; width: 100%; background: var(--brand); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 88px);
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(240, 126, 26, 0.12), transparent 55%),
    linear-gradient(180deg, var(--brand-050), var(--paper) 78%);
}
/* traço tipo retícula/monitoramento ao fundo (a assinatura da página) */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(3, 61, 44, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 61, 44, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(90% 70% at 50% 20%, #000 40%, transparent 78%);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 4vw, 56px); align-items: start;
}
/* alinha o topo do card com o título (compensa a altura do rótulo acima) */
.hero-card { margin-top: 34px; }
.hero-content p {
  font-size: 1.16rem; color: var(--muted);
  max-width: 560px; margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.trust-list {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.trust-list li {
  position: relative; padding-left: 30px;
  font-weight: 500; color: var(--brand-700); font-size: 0.98rem;
}
.trust-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--brand-050);
  box-shadow: inset 0 0 0 1.5px var(--brand-600);
}
.trust-list li::after {
  content: ""; position: absolute; left: 6px; top: 8px;
  width: 7px; height: 4px; border-left: 2px solid var(--brand-600);
  border-bottom: 2px solid var(--brand-600); transform: rotate(-45deg);
}

.hero-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow);
}
.hero-card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.hero-card-top img { width: 64px; height: 64px; border-radius: 14px; }
.hero-card-top h2 { margin: 0; font-size: 1.5rem; }
.hero-card-top p { margin: 2px 0 0; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.hero-facts { margin: 0 0 22px; padding: 0; display: grid; gap: 0; }
.hero-facts div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-top: 1px solid var(--line);
}
.hero-facts dt { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.hero-facts dd { margin: 0; text-align: right; font-weight: 600; color: var(--brand); font-size: 0.95rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  border-radius: 999px; padding: 14px 24px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.16s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-block { width: 100%; }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 14px 26px -12px rgba(240, 126, 26, 0.7);
}
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); }
.btn-ghost { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-ghost:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Seções ---------- */
.section { padding: clamp(56px, 8vw, 92px) 0; }
.section-muted { background: var(--soft); }
.section-dark {
  background: var(--brand); color: #fff;
  background-image: radial-gradient(120% 100% at 100% 0%, rgba(240, 126, 26, 0.16), transparent 45%);
}
.section-dark h2 { color: #fff; }
.section-dark .section-title p { color: rgba(255, 255, 255, 0.75); }

.section-title { max-width: 700px; margin-bottom: 40px; }
.section-title p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Cards de serviço ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-050); }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); margin: 0; font-size: 0.98rem; }
.icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 15px; margin-bottom: 18px;
  background: var(--brand-050); color: var(--brand);
}
.icon svg { width: 28px; height: 28px; }
.service-card:hover .icon { background: var(--brand); color: #fff; }

/* ---------- Processo ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.process-step {
  position: relative; padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}
.process-num {
  font-family: var(--mono); font-weight: 700; font-size: 1.05rem;
  color: var(--accent);
}
.process-step h3 { color: #fff; margin: 14px 0 8px; }
.process-step p { color: rgba(255, 255, 255, 0.78); margin: 0; font-size: 0.98rem; }

/* ---------- Split (sobre / segurança) ---------- */
.split, .contact-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 52px); align-items: center;
}
.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split p { color: var(--muted); font-size: 1.05rem; }

.info-box, .contact-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
}
.info-box { border-top: 4px solid var(--accent); }
.contact-card { border-top: 4px solid var(--brand); }

.data-list { margin: 6px 0 0; padding: 0; }
.data-list div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-top: 1px solid var(--line);
}
.data-list dt { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.data-list dd { margin: 0; text-align: right; font-weight: 600; color: var(--ink); font-size: 0.95rem; }

.highlight-card {
  background: var(--brand); color: #fff;
  border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow);
}
.highlight-card h3 { color: #fff; }
.check-list { list-style: none; margin: 18px 0 0; padding: 0; }
.check-list li {
  position: relative; padding-left: 30px; margin: 14px 0;
  color: rgba(255, 255, 255, 0.9);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 8px; height: 14px; border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent); transform: rotate(45deg);
}

.small-note { font-size: 0.84rem; color: var(--muted); margin-top: 16px; }

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(120deg, var(--brand), var(--brand-600));
  color: #fff; padding: clamp(44px, 6vw, 68px) 0;
}
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-box h2 { color: #fff; margin-bottom: 6px; }
.cta-box p { color: rgba(255, 255, 255, 0.85); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--card); overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
details[open] { border-color: var(--brand-050); box-shadow: var(--shadow-sm); }
summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-family: var(--display); font-weight: 600;
  color: var(--brand); font-size: 1.05rem;
}
summary::-webkit-details-marker { display: none; }
.faq-mark { position: relative; width: 16px; height: 16px; flex: none; }
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  transition: transform 0.25s var(--ease);
}
.faq-mark::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-mark::after  { left: 7px; top: 0; width: 2px; height: 16px; }
details[open] .faq-mark::after { transform: scaleY(0); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { margin: 0; color: var(--muted); }

/* ---------- Página de texto (política) ---------- */
.prose h1 { margin-bottom: 8px; }
.prose h2 { font-size: 1.4rem; margin-top: 34px; }
.prose p { color: var(--muted); font-size: 1.05rem; }

/* ---------- WhatsApp flutuante ---------- */
.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  background: #1faf52; color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 13px 20px; border-radius: 999px;
  box-shadow: 0 16px 30px -12px rgba(31, 175, 82, 0.7);
  transition: transform 0.16s var(--ease), box-shadow 0.2s var(--ease);
}
.floating-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -12px rgba(31, 175, 82, 0.8); }
.floating-whatsapp svg { width: 22px; height: 22px; }

/* ---------- Rodapé ---------- */
.footer { background: var(--brand); color: #fff; padding: 56px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand { display: flex; gap: 16px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 12px; flex: none; }
.footer-brand strong { font-family: var(--display); font-size: 1.1rem; }
.footer p { color: rgba(255, 255, 255, 0.78); margin: 6px 0; }
.footer .small-note { color: rgba(255, 255, 255, 0.6); }
.footer-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #7fe3bf !important; margin-bottom: 8px !important; }
.footer-contact a { color: #fff; transition: color 0.18s var(--ease); }
.footer-contact a:hover { color: var(--accent); }
.footer-base {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6);
  font-family: var(--mono); letter-spacing: 0.04em;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 1; transform: none; transition: none; }
.reveal.in { opacity: 1; transform: none; }
.cards-grid .reveal.in, .process-grid .reveal.in { transition-delay: 0s; }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .hero-grid, .split, .reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { margin-top: 0; }
  .reverse .highlight-card { order: 2; }
  .cards-grid, .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .brand-name { display: none; }
  .menu-toggle { display: flex; }

  .nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 8px);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--card); border: 1px solid var(--line);
    border-radius: 16px; padding: 14px; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 12px 14px; }
  .nav-cta { text-align: center; margin: 6px 0 0; }

  .cards-grid, .process-grid { grid-template-columns: 1fr; }
  .cta-box, .footer-inner, .footer-base { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .floating-whatsapp { right: 16px; bottom: 16px; padding: 12px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .service-card:hover, .floating-whatsapp:hover { transform: none !important; }
}


/* =====================================================================
   Ajustes finais — preserva o layout original
   ===================================================================== */

/* Garante contraste do botão Orçamento no menu. */
.nav a.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  margin-left: 8px;
  box-shadow: 0 12px 28px -17px rgba(240, 126, 26, .78);
}
.nav a.nav-cta:hover {
  background: var(--accent-600);
  color: #fff !important;
}

/* Fluxo de atendimento: compacto no desktop e legível no celular. */
.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .68fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 44px;
}
.process-heading h2 {
  color: #fff;
  margin-bottom: 0;
}
.process-heading > p {
  color: rgba(255, 255, 255, .76);
  margin: 0;
  font-size: 1.02rem;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.process-item {
  position: relative;
  min-width: 0;
  padding: 28px 24px 12px 0;
}
.process-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .14);
  margin-right: 24px;
}
.process-item .process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: .78rem;
}
.process-item h3 {
  color: #fff;
  margin-bottom: 9px;
}
.process-item p {
  color: rgba(255, 255, 255, .76);
  margin: 0;
  font-size: .94rem;
}

/* Licença ganha destaque fora do quadro burocrático de dados. */
.license-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.license-seal {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}
.license-callout strong {
  display: block;
  color: var(--brand);
  font-family: var(--display);
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.license-callout p {
  margin: 0;
  font-size: .94rem;
}

/* Evita quebra e desaparecimento de dados em telas estreitas. */
.hero-card,
.service-card,
.info-box,
.contact-card,
.process-item {
  min-width: 0;
}
.data-list dd,
.hero-facts dd,
.service-card p,
.process-item p {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .process-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-item:nth-child(2) {
    border-right: 0;
    margin-right: 0;
  }
  .process-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .14);
  }
}

@media (max-width: 720px) {
  .nav a.nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .process-flow {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 0;
  }
  .process-item,
  .process-item:not(:last-child),
  .process-item:nth-child(n + 3) {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 0;
    margin: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }
  .process-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }
  .process-item .process-num {
    width: 38px;
    height: 38px;
    margin: 0;
  }
  .process-item h3 {
    margin-top: 1px;
  }

  .license-callout {
    padding-bottom: 8px;
  }

  .hero-facts div,
  .data-list div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .hero-facts dd,
  .data-list dd {
    text-align: left;
  }

  .hero-card-top {
    align-items: flex-start;
  }
  .hero-card-top img {
    flex: 0 0 58px;
  }

  .service-card {
    padding: 24px;
  }
}


/* =====================================================================
   V15 — ajustes exclusivamente mobile
   O desktop permanece igual à versão v10.
   ===================================================================== */

@media screen and (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Nunca cortar palavras comuns no meio. */
  body,
  h1,
  h2,
  h3,
  p,
  li,
  dt,
  dd,
  a,
  span,
  strong,
  summary {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .container {
    width: calc(100% - 30px);
    max-width: none;
  }

  /* Abertura: os botões externos usam a mesma largura útil do botão do card. */
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn,
  .hero-card .btn-block {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    font-size: .94rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .hero-card {
    min-width: 0;
    overflow: hidden;
  }

  .hero-card-top {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .hero-card-top img {
    width: 58px;
    height: 58px;
  }

  .hero-card-top h2 {
    font-size: 1.38rem;
  }

  .hero-facts div,
  .data-list div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero-facts dd,
  .data-list dd {
    margin: 0;
    text-align: left;
    white-space: normal;
  }

  /* Faixa "Precisa de controle de pragas?" */
  .cta-box {
    width: 100%;
    align-items: stretch;
    text-align: left;
  }

  .cta-box .btn {
    align-self: center;
    justify-self: center;
    width: auto;
    min-width: 225px;
    min-height: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 22px;
    text-align: center;
  }

  /* Fluxo */
  .process-flow {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .process-item,
  .process-item:not(:last-child),
  .process-item:nth-child(n + 3) {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 0;
    margin: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .process-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .process-item .process-num {
    width: 38px;
    height: 38px;
    margin: 0;
  }

  /* Contato final */
  .contact-grid,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .contact-actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .contact-card,
  .info-box,
  .highlight-card,
  .service-card {
    min-width: 0;
    max-width: 100%;
  }

  /* FAQ */
  summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: start;
    gap: 12px;
  }

  .faq-mark {
    justify-self: end;
    margin-top: 3px;
  }

  /* Rodapé: coluna única e texto usando toda a largura.
     Nenhuma alteração no rodapé desktop. */
  .footer-inner {
    display: block;
    width: 100%;
  }

  .footer-brand {
    display: block;
    width: 100%;
  }

  .footer-brand img {
    display: block;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    object-fit: contain;
  }

  .footer-brand > div {
    width: 100%;
  }

  .footer-brand strong {
    display: block;
    font-size: 1rem;
    line-height: 1.35;
  }

  .footer-brand p {
    width: 100%;
    max-width: 100%;
    font-size: .9rem;
    line-height: 1.58;
  }

  .footer-contact {
    width: 100%;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .footer-contact p,
  .footer-contact a {
    width: 100%;
    max-width: 100%;
    font-size: .92rem;
    line-height: 1.5;
  }

  /* Somente o identificador longo do Instagram pode quebrar internamente. */
  .footer-contact p:nth-of-type(3) a {
    overflow-wrap: anywhere !important;
  }

  .footer-base {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: start;
    width: 100%;
    padding-bottom: 90px;
    font-family: var(--body);
    letter-spacing: 0;
    font-size: .78rem;
    line-height: 1.45;
  }

  /* WhatsApp flutuante compacto e sem cobrir o final. */
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp svg {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 390px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero-actions {
    width: calc(100% - 44px);
  }

  .cta-box .btn {
    min-width: 210px;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }
}


/* =====================================================================
   V16 — refinamento de ícones e correções finais de mobile
   ===================================================================== */

.footer-address span { display: block; }

@media screen and (max-width: 720px) {
  .container { width: calc(100% - 36px) !important; }

  .icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .icon svg {
    width: 30px;
    height: 30px;
  }

  .cards-grid { gap: 18px; }
  .service-card {
    padding: 24px;
  }
  .service-card h3 {
    font-size: 1.12rem;
    line-height: 1.18;
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .cta-section { overflow: hidden; }
  .cta-box {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
    align-items: start !important;
    width: 100%;
  }
  .cta-box > div { min-width: 0; }
  .cta-box h2 {
    font-size: clamp(2.05rem, 9.6vw, 2.7rem);
    line-height: 1.04;
    margin-bottom: 10px;
  }
  .cta-box p {
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .cta-box .btn {
    align-self: center;
    justify-self: center;
    min-width: 0 !important;
    width: min(100%, 320px) !important;
    min-height: 50px;
    padding: 12px 20px;
    text-align: center;
    white-space: normal;
  }

  .faq-list { gap: 14px; }
  summary {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) 18px !important;
    gap: 12px;
    align-items: start;
    padding: 18px 18px;
    font-size: 1rem;
    line-height: 1.42;
  }
  .faq-body { padding: 0 18px 18px; }

  .footer { overflow: hidden; }
  .footer .container { width: calc(100% - 36px) !important; }
  .footer-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px;
    padding-bottom: 30px;
  }
  .footer-brand {
    display: grid !important;
    grid-template-columns: 44px minmax(0,1fr) !important;
    gap: 14px;
    align-items: start;
    width: 100%;
  }
  .footer-brand img {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px;
    max-height: 44px;
    border-radius: 10px;
    object-fit: contain;
  }
  .footer-brand > div {
    min-width: 0;
    width: 100%;
  }
  .footer-brand strong {
    display: block;
    font-size: 1rem;
    line-height: 1.32;
  }
  .footer-brand p {
    width: 100%;
    max-width: 100%;
    font-size: .9rem;
    line-height: 1.56;
    margin: 6px 0;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  .footer-tagline { margin-top: 8px !important; }
  .footer-address { margin-top: 14px !important; }
  .footer-address span { display: block; }
  .footer-contact {
    width: 100%;
    margin-top: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .footer-link { margin: 10px 0 !important; }
  .footer-contact a {
    display: block;
    width: 100%;
    font-size: .92rem;
    line-height: 1.5;
  }
  .footer-instagram a { overflow-wrap: anywhere; }
  .footer-base {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px;
    padding: 18px 0 96px;
    font-size: .78rem;
    line-height: 1.45;
    font-family: var(--body);
    letter-spacing: 0;
  }

  .floating-whatsapp {
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    justify-content: center;
    right: 14px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px) !important;
  }
  .floating-whatsapp span { display: none !important; }
  .floating-whatsapp svg { width: 24px !important; height: 24px !important; }
}

@media screen and (max-width: 390px) {
  .container,
  .footer .container { width: calc(100% - 24px) !important; }
  .cta-box h2 { font-size: 1.95rem; }
  .service-card { padding: 22px 20px; }
  .footer-brand { grid-template-columns: 40px minmax(0,1fr) !important; }
  .footer-brand img { width: 40px !important; height: 40px !important; }
}


/* =====================================================================
   V17 — rodapé centralizado no mobile + crédito BP Tech
   ===================================================================== */

.footer-credit strong {
  font-weight: 700;
}

@media screen and (max-width: 720px) {
  .footer {
    text-align: center;
  }

  .footer-inner,
  .footer-brand,
  .footer-contact,
  .footer-base {
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-brand {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-brand > div,
  .footer-contact,
  .footer-contact a,
  .footer-brand p,
  .footer-brand strong,
  .footer-base span {
    text-align: center !important;
  }

  .footer-contact {
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .footer-link,
  .footer-label,
  .footer-tagline,
  .footer-address,
  .small-note {
    text-align: center !important;
  }

  .footer-address span {
    text-align: center !important;
  }

  .footer-base {
    justify-items: center !important;
    padding-bottom: 102px !important;
  }

  .footer-credit {
    color: rgba(255,255,255,.78);
  }
}


/* =====================================================================
   V18 — alinhamento do rodapé no desktop + link BP Tech
   ===================================================================== */

.footer-inner {
  align-items: start;
}

.footer-brand {
  align-items: flex-start;
}

.footer-contact {
  justify-self: end;
  width: min(100%, 440px);
}

.footer-contact .footer-link:first-of-type {
  margin-top: 0 !important;
}

.footer-base {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.footer-base span:nth-child(1) {
  justify-self: start;
}

.footer-base span:nth-child(2) {
  justify-self: center;
}

.footer-base span:nth-child(3) {
  justify-self: end;
}

.footer-credit,
.footer-credit a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-credit a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.footer-credit a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.7);
}

@media screen and (max-width: 720px) {
  .footer-base {
    grid-template-columns: 1fr !important;
    gap: 6px;
  }

  .footer-base span:nth-child(1),
  .footer-base span:nth-child(2),
  .footer-base span:nth-child(3) {
    justify-self: center !important;
  }

  .footer-credit,
  .footer-credit a {
    text-align: center !important;
  }
}


/* =====================================================================
   V25 — rodapé desktop aproximado e centralizado
   Mantém o layout da v19, apenas reduzindo a largura útil.
   ===================================================================== */

@media screen and (min-width: 901px) {
  .footer .container {
    width: min(920px, calc(100% - 64px));
  }

  .footer-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(290px, .85fr) !important;
    column-gap: 72px !important;
    align-items: start !important;
    padding-bottom: 38px;
  }

  .footer-brand {
    grid-column: 1;
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    gap: 16px !important;
    align-items: start !important;
    width: 100%;
    max-width: 520px;
    justify-self: start;
  }

  .footer-brand img {
    margin: 0;
  }

  .footer-brand > div {
    min-width: 0;
  }

  .footer-contact {
    grid-column: 2;
    width: 100% !important;
    max-width: 330px !important;
    justify-self: start !important;
    align-self: start;
    padding-top: 0;
    margin-top: 0;
  }

  .footer-contact .footer-label {
    margin-top: 0 !important;
    line-height: 1.2;
  }

  .footer-contact .footer-link {
    margin: 9px 0 !important;
  }

  .footer-base {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 26px !important;
    align-items: center !important;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-base span:nth-child(1) {
    justify-self: start !important;
    text-align: left;
  }

  .footer-base span:nth-child(2) {
    justify-self: center !important;
    text-align: center;
  }

  .footer-base span:nth-child(3) {
    justify-self: end !important;
    text-align: right;
  }

  .footer-credit a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
}

