/* ═══════════════════════════════════════════════════════════════════════
   AFASTINSETOS™ — Sistema visual
   Verde-marca + creme + tipografia limpa
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --verde-marca: #8FBE3A;
  --verde-escuro: #4A6B22;
  --verde-profundo: #2C4416;
  --verde-claro: #E8F2D4;
  --verde-suave: #F5FAEB;

  --vermelho-marca: #E23A34;
  --vermelho-suave: #FDF1F0;

  --creme: #FBFCF7;
  --creme-card: #FFFFFF;
  --creme-borda: #E8EBE0;

  --texto: #1A1F12;
  --texto-medio: #4A4F42;
  --texto-suave: #7A7F72;
  --texto-fraco: #9CA092;

  --azul-agua: #2B7FB5;
  --azul-claro: #E0F0FA;

  --sombra-sm: 0 1px 3px rgba(74, 107, 34, 0.06), 0 1px 2px rgba(74, 107, 34, 0.04);
  --sombra-md: 0 4px 16px rgba(74, 107, 34, 0.08), 0 2px 6px rgba(74, 107, 34, 0.05);
  --sombra-lg: 0 16px 48px rgba(74, 107, 34, 0.10), 0 8px 20px rgba(74, 107, 34, 0.06);

  --raio-sm: 8px;
  --raio: 14px;
  --raio-lg: 22px;
  --raio-xl: 32px;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--texto);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--texto);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; }

em {
  color: var(--verde-marca);
  font-style: normal;
}
sup {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 700;
  color: var(--verde-marca);
}

p { color: var(--texto-medio); text-wrap: pretty; }

.container {
  width: min(var(--max-w), calc(100% - 2.5rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: var(--verde-claro);
  color: var(--verde-escuro);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--verde-marca);
}
.eyebrow-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
}
.eyebrow-light .dot { background: var(--verde-marca); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}
.section-head p {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  color: var(--texto-suave);
}

/* ═════ BOTÕES ═════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sombra-md); }
.btn i { width: 18px; height: 18px; }

.btn-primary { background: var(--vermelho-marca); color: #fff; }
.btn-primary:hover { background: #c92e29; box-shadow: 0 8px 24px rgba(226, 58, 52, 0.35); }

.btn-verde { background: var(--verde-marca); color: var(--verde-profundo); }
.btn-verde:hover { background: #7eaa30; }

.btn-wpp { background: #25D366; color: #fff; }
.btn-wpp:hover { background: #1ebe59; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--verde-escuro);
  border: 1.5px solid var(--verde-marca);
}
.btn-ghost:hover { background: var(--verde-suave); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-light { background: #fff; color: var(--verde-escuro); }
.btn-light:hover { background: var(--verde-suave); }

.btn-sm { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ═════ HEADER ═════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 247, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--creme-borda);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}
.brand-icon { width: 38px; height: 38px; flex: 0 0 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--vermelho-marca);
  letter-spacing: -0.02em;
}
.brand-name sup { color: var(--vermelho-marca); font-size: 0.55em; }
.brand-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--verde-escuro);
  letter-spacing: 0.18em;
  margin-top: 1px;
}

.site-nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.site-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--texto-medio);
  transition: color 0.18s ease;
  position: relative;
}
.site-nav a:hover { color: var(--vermelho-marca); }

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: var(--vermelho-marca);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.18s ease, transform 0.18s ease;
}
.cta-pill:hover { background: #c92e29; transform: translateY(-1px); }
.cta-pill i { width: 16px; height: 16px; }

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: var(--verde-escuro);
  cursor: pointer;
  padding: 0.4rem;
}
.menu-btn i { width: 26px; height: 26px; }

/* ═════ HERO ═════ */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(143, 190, 58, 0.12), transparent 38%),
    linear-gradient(155deg, var(--verde-suave) 0%, var(--creme) 60%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.molecule-pattern { width: 100%; height: 100%; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 3.5rem;
  align-items: center;
  width: min(var(--max-w), calc(100% - 2.5rem));
  margin: 0 auto;
}
.hero-copy h1 {
  margin: 0.4rem 0 1.2rem;
}
.hero-line-1 { display: block; color: var(--verde-escuro); }
.hero-line-2 { display: block; color: var(--vermelho-marca); }

.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  color: var(--texto-medio);
  max-width: 560px;
  margin-bottom: 1.6rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--verde-claro);
  color: var(--verde-escuro);
  font-size: 0.85rem;
  font-weight: 600;
}
.pill::before {
  content: "✓";
  color: var(--verde-marca);
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.checkout-note {
  font-size: 0.8rem;
  color: var(--texto-fraco);
  margin-bottom: 1.6rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--creme-borda);
  max-width: 620px;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--vermelho-marca);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--texto-suave);
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(143,190,58,0.22) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.hero-product-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(74, 107, 34, 0.22));
}
.hero-tag {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: var(--raio);
  background: #fff;
  box-shadow: var(--sombra-md);
  border: 1px solid var(--creme-borda);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--verde-escuro);
  line-height: 1.3;
}
.hero-tag i { width: 22px; height: 22px; color: var(--verde-marca); flex: 0 0 22px; }
.tag-tl { top: 8%; left: -2%; }
.tag-br { bottom: 12%; right: -4%; }

/* ═════ STRIP DE BENEFÍCIOS ═════ */
.strip {
  background: var(--verde-profundo);
  color: #fff;
  padding: 1rem 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  width: min(var(--max-w), calc(100% - 2.5rem));
  margin: 0 auto;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.strip-item i { width: 18px; height: 18px; color: var(--verde-marca); }

/* ═════ SEÇÕES GENÉRICAS ═════ */
.section { padding: 5.5rem 0; }
.section-dark {
  background: var(--verde-profundo);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-cream { background: var(--creme); }
.section-soft { background: var(--verde-suave); }

/* ═════ PROBLEMA ═════ */
.problema {
  background: var(--verde-profundo);
  color: #fff;
}
.problema h2 { color: #fff; }
.problema p { color: rgba(255,255,255,0.74); }

.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.stat-card {
  padding: 1.6rem 1.25rem;
  border-radius: var(--raio-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  color: var(--verde-marca);
  margin-bottom: 0.55rem;
}
.stat-card span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

.alert-box {
  max-width: 800px;
  margin: 2.2rem auto 0;
  padding: 1.4rem 1.6rem;
  border-radius: var(--raio-lg);
  background: rgba(143, 190, 58, 0.10);
  border: 1px solid rgba(143, 190, 58, 0.32);
  color: rgba(255,255,255,0.92);
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.55;
}

/* ═════ SOLUÇÃO (split image + texto) ═════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-image {
  position: relative;
  border-radius: var(--raio-xl);
  overflow: hidden;
  box-shadow: var(--sombra-lg);
  background: #fff;
}
.split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.anvisa-badge {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  border-radius: var(--raio);
  background: var(--verde-claro);
  border: 1px solid rgba(143,190,58,0.4);
}
.anvisa-badge i {
  width: 26px; height: 26px;
  color: var(--verde-escuro);
  flex: 0 0 26px;
  margin-top: 2px;
}
.anvisa-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--verde-escuro);
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}
.anvisa-badge span {
  font-size: 0.82rem;
  color: var(--texto-suave);
  display: block;
}

.quote-line {
  margin-top: 1.2rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--verde-marca);
  background: var(--verde-suave);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  font-style: italic;
  color: var(--verde-escuro);
  border-radius: 0 var(--raio) var(--raio) 0;
}

.benef-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.benef-card {
  background: #fff;
  border: 1px solid var(--creme-borda);
  border-radius: var(--raio);
  padding: 1.05rem 1.15rem;
}
.benef-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--verde-escuro);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.benef-card span {
  font-size: 0.86rem;
  color: var(--texto-suave);
}

/* ═════ COMO FUNCIONA — 3 passos ═════ */
.steps-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.step {
  background: #fff;
  border: 1px solid var(--creme-borda);
  border-radius: var(--raio-lg);
  padding: 1.6rem 1.4rem;
  position: relative;
  box-shadow: var(--sombra-sm);
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--verde-marca);
  color: var(--verde-profundo);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.5rem; color: var(--verde-escuro); }
.step p { font-size: 0.94rem; color: var(--texto-suave); }

/* ═════ PROVAS ═════ */
.provas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.prova-card {
  padding: 1.5rem 1.1rem;
  border-radius: var(--raio-lg);
  background: var(--verde-claro);
  border: 1px solid rgba(143,190,58,0.35);
  text-align: center;
}
.prova-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1;
  color: var(--verde-escuro);
  margin-bottom: 0.55rem;
}
.prova-num sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--verde-marca);
}
.prova-num i { width: 36px; height: 36px; }
.prova-label {
  display: block;
  font-size: 0.85rem;
  color: var(--texto-suave);
  font-weight: 600;
  line-height: 1.4;
}
.prova-label em { color: var(--verde-escuro); font-style: italic; }

.safety-note {
  max-width: 880px;
  margin: 2rem auto 0;
  padding: 1.2rem 1.4rem;
  border-radius: var(--raio);
  background: var(--vermelho-suave);
  border-left: 4px solid var(--vermelho-marca);
  color: var(--texto-medio);
  font-size: 0.93rem;
  line-height: 1.6;
}
.safety-note strong { color: var(--vermelho-marca); }

/* ═════ DEPOIMENTOS ═════ */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.depo-card {
  background: #fff;
  border: 1px solid var(--creme-borda);
  border-radius: var(--raio-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--sombra-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.depo-card:hover { transform: translateY(-3px); box-shadow: var(--sombra-md); }
.stars {
  color: #f5b400;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}
.depo-card p {
  font-size: 0.95rem;
  color: var(--texto-medio);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}
.depo-card footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--creme-borda);
}
.depo-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--verde-claro);
  color: var(--verde-escuro);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}
.depo-card footer strong {
  display: block;
  color: var(--texto);
  font-size: 0.92rem;
  font-family: var(--font-display);
}
.depo-card footer span {
  display: block;
  color: var(--texto-fraco);
  font-size: 0.8rem;
}

.depo-counter {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--creme-borda);
}
.depo-counter strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--vermelho-marca);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.depo-counter span {
  color: var(--texto-suave);
  font-size: 1rem;
}

/* ═════ COMPARATIVO (dedetização vs Afastinsetos) ═════ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.compare-card {
  padding: 1.6rem;
  border-radius: var(--raio-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.compare-card.good {
  background: rgba(143,190,58,0.10);
  border-color: rgba(143,190,58,0.4);
}
.compare-card-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
}
.compare-card.good .compare-card-head { color: var(--verde-marca); }
.compare-card-head .indicator {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.compare-card.good .compare-card-head .indicator { background: var(--verde-marca); }
.compare-card ul { list-style: none; display: grid; gap: 0.7rem; }
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.compare-card.good li { color: rgba(255,255,255,0.82); }
.compare-card li::before {
  content: "—";
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  flex: 0 0 auto;
}
.compare-card.good li::before {
  content: "✓";
  color: var(--verde-marca);
}

/* ═════ APLICAÇÕES ═════ */
.aplic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.aplic-card {
  background: #fff;
  border: 1px solid var(--creme-borda);
  border-radius: var(--raio-lg);
  padding: 1.6rem 1.3rem;
  box-shadow: var(--sombra-sm);
  transition: transform 0.2s ease;
}
.aplic-card:hover { transform: translateY(-3px); }
.aplic-emoji {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.aplic-card h3 { margin-bottom: 0.4rem; color: var(--verde-escuro); font-size: 1.1rem; }
.aplic-card p { font-size: 0.88rem; color: var(--texto-suave); }

/* ═════ SEGURANÇA ═════ */
.seg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.seg-card {
  background: #fff;
  border: 1px solid var(--creme-borda);
  border-radius: var(--raio);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.seg-emoji { font-size: 2rem; margin-bottom: 0.6rem; }
.seg-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--verde-escuro);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.seg-card span { font-size: 0.85rem; color: var(--texto-suave); }

/* ═════ ESPECIFICAÇÕES ═════ */
.spec-table {
  width: 100%;
  background: #fff;
  border-radius: var(--raio-lg);
  overflow: hidden;
  box-shadow: var(--sombra-sm);
  border-collapse: collapse;
  font-size: 0.94rem;
}
.spec-table tr { border-bottom: 1px solid var(--creme-borda); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table td { padding: 0.95rem 1.2rem; vertical-align: top; }
.spec-table td:first-child {
  color: var(--texto-suave);
  font-weight: 600;
  width: 42%;
}
.spec-table td:last-child {
  color: var(--texto);
  font-weight: 700;
  font-family: var(--font-display);
}

.surface-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.surface-card {
  padding: 1.15rem 1.25rem;
  border-radius: var(--raio);
  background: var(--verde-claro);
  border: 1px solid rgba(143,190,58,0.35);
}
.surface-card.no {
  background: var(--vermelho-suave);
  border-color: rgba(226,58,52,0.25);
}
.surface-card h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--verde-escuro);
  margin-bottom: 0.55rem;
}
.surface-card.no h4 { color: var(--vermelho-marca); }
.surface-card p { font-size: 0.88rem; color: var(--texto-medio); }

.spec-warning {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  background: var(--vermelho-suave);
  border-left: 4px solid var(--vermelho-marca);
  border-radius: var(--raio);
  font-size: 0.9rem;
  color: var(--texto-medio);
}
.spec-warning strong { color: var(--vermelho-marca); }

/* ═════ MODO DE APLICAÇÃO — 4 passos ═════ */
.passos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
}
.passo {
  background: #fff;
  border: 1px solid var(--creme-borda);
  border-radius: var(--raio-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--sombra-sm);
}
.passo-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--verde-marca);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.passo h3 { margin-bottom: 0.35rem; color: var(--verde-escuro); }
.passo p { font-size: 0.88rem; color: var(--texto-suave); }

.passos-resumo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 1.3rem;
  background: var(--verde-claro);
  border: 1px solid rgba(143,190,58,0.35);
  border-radius: var(--raio-lg);
  text-align: center;
}
.passos-resumo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--verde-escuro);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ═════ OFERTA / KIT ═════ */
.oferta-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.oferta-image {
  position: relative;
}
.oferta-image img {
  width: 100%;
  border-radius: var(--raio-xl);
  box-shadow: var(--sombra-lg);
}
.oferta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--raio-xl);
  padding: 2rem;
}
.preco {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 1rem 0 0.4rem;
}
.preco .old {
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 1.1rem;
}
.preco .new {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--verde-marca);
  line-height: 1;
}
.preco-nota {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 1.4rem;
}

.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
.kit-card {
  padding: 1.15rem;
  border-radius: var(--raio);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}
.kit-card.featured {
  background: rgba(143,190,58,0.12);
  border-color: rgba(143,190,58,0.4);
}
.kit-card strong {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.kit-card span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.kit-card b {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  color: var(--verde-marca);
  font-size: 1.2rem;
}

.oferta-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.guarantee-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  border-radius: var(--raio);
  background: rgba(143,190,58,0.10);
  border: 1px solid rgba(143,190,58,0.30);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.guarantee-row i { width: 22px; height: 22px; color: var(--verde-marca); flex: 0 0 22px; margin-top: 2px; }
.guarantee-row strong { color: #fff; display: block; margin-bottom: 0.2rem; font-family: var(--font-display); }

/* ═════ FAQ ═════ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--creme-borda);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--texto);
  transition: color 0.18s ease;
}
.faq-q:hover { color: var(--verde-escuro); }
.faq-plus {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--verde-claro);
  color: var(--verde-escuro);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
  font-size: 1.2rem;
  font-weight: 700;
}
.faq-item.open .faq-plus {
  transform: rotate(45deg);
  background: var(--verde-marca);
  color: var(--verde-profundo);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--texto-medio);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 0 1.2rem;
}

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ═════ CTA FINAL ═════ */
.cta-final {
  background:
    linear-gradient(135deg, rgba(74, 107, 34, 0.96), rgba(44, 68, 22, 0.98)),
    var(--verde-profundo);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}
.cta-final h2 {
  color: #fff;
  max-width: 820px;
  margin: 0 auto 1rem;
}
.cta-final p {
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto 1.8rem;
  font-size: 1.05rem;
}

/* ═════ TECNOLOGIA BR ═════ */
.tech-br {
  background: var(--verde-profundo);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.tech-br-inner {
  max-width: 760px;
  margin: 0 auto;
}
.tech-br h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.tech-br p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.tech-br .small { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ═════ FOOTER ═════ */
.site-footer {
  background: #1a1f12;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 2.2rem;
  margin-bottom: 2.2rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 1rem;
  line-height: 1.6;
}
.footer-brand p em { color: var(--verde-marca); font-style: italic; }

.footer-grid h4 {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.95rem;
}
.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  margin-bottom: 0.5rem;
  transition: color 0.18s ease;
}
.footer-grid a:hover { color: var(--verde-marca); }

.company-data {
  font-size: 0.78rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: rgba(255,255,255,0.36);
  font-size: 0.78rem;
}

/* ═════ WHATSAPP FLUTUANTE ═════ */
.wa-float {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.18s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.45;
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* ═════ DRAWER MOBILE ═════ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}
.drawer.open { pointer-events: auto; visibility: visible; }
.drawer-bd {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 18, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.drawer.open .drawer-bd { opacity: 1; }
.drawer-inner {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 86vw);
  background: var(--creme);
  padding: 5rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.drawer.open .drawer-inner { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1rem; }
.drawer nav a {
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--texto);
  border-bottom: 1px solid var(--creme-borda);
}
.drawer nav a:hover { color: var(--vermelho-marca); }
.drawer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--verde-claro);
  border: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--verde-escuro);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer-close i { width: 22px; height: 22px; }

/* ═════ RESPONSIVO ═════ */
@media (max-width: 980px) {
  .site-nav { display: none; }
  .menu-btn { display: inline-flex; }
  .cta-pill { display: none; }

  .hero-grid,
  .split,
  .oferta-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .tag-tl { left: 4%; }
  .tag-br { right: 2%; }

  .hero-trust,
  .problema-grid,
  .steps-3,
  .provas-grid,
  .aplic-grid,
  .seg-grid,
  .passos {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 4rem 0; }
  .hero { padding: 3.5rem 0 3rem; }

  .hero-trust,
  .benef-grid,
  .problema-grid,
  .steps-3,
  .provas-grid,
  .aplic-grid,
  .seg-grid,
  .passos,
  .surface-grid,
  .kit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas .btn,
  .oferta-ctas .btn,
  .cta-final .btn {
    width: 100%;
  }

  .strip-inner { gap: 1.4rem; }
  .strip-item { font-size: 0.82rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═════ MOTION ═════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
