/* =========================================================
   Controle de Dedetização - Landing Page Premium
   ========================================================= */

:root {
  --green-950: #052e23;
  --green-900: #064e3b;
  --green-800: #0d6f56;
  --green-600: #10b981;
  --green-500: #34d399;
  --green-300: #6ee7b7;
  --green-100: #d1fae5;
  --green-50:  #ecfdf5;
  --gold-500:  #f59e0b;
  --gold-400:  #fbbf24;
  --orange-500:#f97316;
  --ink-900:   #0f172a;
  --ink-700:   #334155;
  --ink-500:   #64748b;
  --ink-300:   #cbd5e1;
  --line:      #e2e8f0;
  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --shadow-sm: 0 8px 22px rgba(6, 78, 59, 0.08);
  --shadow-md: 0 22px 48px rgba(6, 78, 59, 0.14);
  --shadow-lg: 0 32px 64px rgba(6, 78, 59, 0.22);
  --radius:    18px;
  --radius-lg: 26px;
  --radius-xl: 32px;
  --container: 1200px;
  --easing: cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 9999; background: var(--green-900); color: var(--white); padding: .75rem 1rem; }
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* ---------- Decorações de fundo ---------- */
.bg-aura {
  position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden;
}
.aura {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
  animation: drift 18s ease-in-out infinite;
}
.aura-1 { width: 540px; height: 540px; background: rgba(16, 185, 129, .35); top: -160px; left: -180px; }
.aura-2 { width: 460px; height: 460px; background: rgba(245, 158, 11, .22); top: 30%; right: -180px; animation-delay: -5s; }
.aura-3 { width: 520px; height: 520px; background: rgba(6, 78, 59, .22); bottom: -200px; left: 30%; animation-delay: -10s; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20px,-20px) scale(1.05); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--green-500), var(--green-800));
  z-index: 2000; transition: width .12s ease;
}

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--green-900), var(--green-800));
  color: #e7fdf2; font-size: .88rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex; align-items: center; gap: .8rem; justify-content: center;
}
.topbar-inner p { margin: 0; }
.topbar-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green-300); box-shadow: 0 0 0 0 rgba(110, 231, 183, .7);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(110, 231, 183, .7); }
  70%{ box-shadow: 0 0 0 12px rgba(110, 231, 183, 0); }
  100%{ box-shadow: 0 0 0 0 rgba(110, 231, 183, 0); }
}
.topbar-cta { color: var(--gold-400); font-weight: 800; }
.topbar-cta:hover { color: #fff; }

/* ---------- Botões ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; font-size: .94rem; cursor: pointer;
  transition: transform .22s var(--easing), box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn-cta {
  color: #1a1300;
  background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
  box-shadow: 0 14px 32px rgba(245, 158, 11, .35);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(245, 158, 11, .42); }
.btn-cta .btn-shine {
  position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  animation: shine 3.4s infinite;
}
@keyframes shine { 0%{left:-120%} 60%{left:120%} 100%{left:120%} }
.btn-ghost {
  color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-sm  { padding: .68rem 1.05rem; font-size: .85rem; }
.btn-xl  { padding: 1.1rem 1.8rem; font-size: 1rem; }

.wa-ico { width: 18px; height: 18px; fill: currentColor; }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.95);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  min-height: 72px; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: nowrap;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.brand-logo {
  height: 46px !important; width: auto !important;
  max-height: 46px; max-width: 52px; object-fit: contain;
}
.brand-name {
  font-family: "Sora", sans-serif; font-weight: 700; font-size: .96rem;
  color: var(--green-900); letter-spacing: .02em;
}
.brand-name strong { color: var(--green-600); }

.nav { display: flex; align-items: center; gap: .9rem; flex-wrap: nowrap; white-space: nowrap; }
.nav > a:not(.btn) {
  font-size: .9rem; font-weight: 700; color: var(--ink-700); position: relative;
}
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav > a:not(.btn):hover,
.nav > a:not(.btn).active { color: var(--green-900); }
.nav > a:not(.btn):hover::after,
.nav > a:not(.btn).active::after { transform: scaleX(1); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--white); cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--green-900);
  margin: 5px auto; transition: transform .2s ease, opacity .2s ease;
}

/* ---------- HERO ---------- */
.hero {
  position: relative; padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(16,185,129,.18), transparent 45%),
    radial-gradient(circle at 8% 40%, rgba(245,158,11,.14), transparent 50%),
    var(--green-50);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.4rem; align-items: center;
}
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .8rem; border-radius: 999px;
  background: rgba(16,185,129,.12); color: var(--green-900);
  font-weight: 800; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
}
.chip-on-dark { background: rgba(255,255,255,.16); color: #fff; }
.chip-glow {
  background: linear-gradient(120deg, rgba(16,185,129,.18), rgba(245,158,11,.18));
  border: 1px solid rgba(16,185,129,.25);
  box-shadow: 0 8px 20px rgba(16,185,129,.18);
}
.chip-glow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-600);
  box-shadow: 0 0 0 0 rgba(16,185,129,.5);
  animation: pulseDot 2s ease-out infinite;
}
.display {
  font-family: "Sora", sans-serif; font-weight: 800;
  margin: .9rem 0 0; font-size: clamp(2.1rem, 5.2vw, 3.6rem); line-height: 1.08;
  color: var(--green-950); letter-spacing: -.02em;
}
.gradient-text {
  background: linear-gradient(120deg, var(--green-600) 0%, var(--gold-500) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gradient-text-light {
  background: linear-gradient(120deg, var(--gold-400) 0%, #fff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.underline-anim { position: relative; display: inline-block; }
.underline-anim::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 8px;
  background: linear-gradient(90deg, var(--gold-400), var(--green-500));
  border-radius: 4px; opacity: .35; transform: scaleX(.85); transform-origin: left;
  animation: stretch 3s ease-in-out infinite;
}
@keyframes stretch { 0%,100%{transform:scaleX(.85)} 50%{transform:scaleX(1)} }
.lead { margin: 1.1rem 0 0; color: var(--ink-700); max-width: 58ch; font-size: 1.04rem; }
.hero-actions { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-seals {
  margin: 1.4rem 0 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: .55rem;
}
.hero-seals li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.85); border: 1px solid var(--line);
  border-radius: 999px; padding: .55rem .85rem; font-weight: 700; color: var(--green-900);
  box-shadow: var(--shadow-sm); font-size: .88rem;
  backdrop-filter: blur(6px);
}

/* Hero visual */
.hero-visual { position: relative; perspective: 1200px; }
.hero-stage { position: relative; min-height: 460px; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(40px);
}
.orb-a { width: 280px; height: 280px; background: rgba(16,185,129,.35); top: -40px; right: -40px; animation: drift 12s ease-in-out infinite; }
.orb-b { width: 220px; height: 220px; background: rgba(245,158,11,.3); bottom: -30px; left: -20px; animation: drift 14s ease-in-out infinite reverse; }

.glass-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem;
  transform-style: preserve-3d;
  transition: transform .25s var(--easing);
}
.glass-card-main { padding: 1.2rem 1.2rem 1.4rem; }
.gc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .6rem;
}
.gc-status {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 800;
  color: var(--green-900); font-size: .82rem;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 0 rgba(16,185,129,.55);
  animation: pulseDot 1.8s ease-out infinite;
}
.gc-tag {
  background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
  color: #1a1300; padding: .22rem .6rem; border-radius: 999px;
  font-weight: 800; font-size: .72rem;
}
.gc-body { border-radius: var(--radius-lg); overflow: hidden; }
.gc-body svg { width: 100%; height: auto; display: block; }
.gc-foot {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .5rem;
  margin-top: .9rem;
}
.gc-metric {
  text-align: center; background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.9); border-radius: 14px; padding: .7rem .4rem;
}
.gc-metric strong { display: block; color: var(--green-900); font-family: "Sora"; font-size: 1.1rem; }
.gc-metric span { color: var(--ink-500); font-size: .78rem; }

.floating-pill {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.95);
  box-shadow: var(--shadow-md); border-radius: 999px; padding: .6rem .85rem;
  font-weight: 800; color: var(--green-900); font-size: .85rem;
  animation: floatY 4.6s ease-in-out infinite;
}
.pill-a { top: 6%;  left: -20px; }
.pill-b { bottom: 8%; right: -10px; animation-delay: 1.3s; }
.pill-c { top: 45%; right: -22px; animation-delay: .8s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* ---------- Marquee ---------- */
.marquee-wrap {
  margin-top: 3.2rem; padding: .8rem 0;
  background: linear-gradient(90deg, rgba(16,185,129,.06), rgba(245,158,11,.06));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee { width: 100%; overflow: hidden; }
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: scrollX 28s linear infinite;
  color: var(--green-900); font-weight: 700; font-size: .92rem;
}
.marquee-track span { white-space: nowrap; }
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTIONS ---------- */
.section { padding: 5.5rem 0; position: relative; }
.section-head {
  text-align: center; max-width: 780px; margin: 0 auto 2.6rem;
}
.section-head h2 {
  font-family: "Sora"; font-weight: 800;
  margin: .8rem 0 .6rem; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.18;
  color: var(--green-950);
}
.section-head p { margin: 0; color: var(--ink-700); }

/* ---------- Services ---------- */
.services { background: var(--white); }
.service-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem;
}
.card-service {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s var(--easing), box-shadow .25s ease, border-color .25s ease;
}
.card-service::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(135deg, rgba(16,185,129,.10), rgba(245,158,11,.10));
  opacity: 0; transition: opacity .25s ease;
}
.card-service:hover {
  transform: translateY(-6px);
  border-color: var(--green-500);
  box-shadow: var(--shadow-md);
}
.card-service:hover::before { opacity: 1; }

.ci-wrap {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: .9rem;
  background: linear-gradient(135deg, var(--green-100), #bef7d3);
  display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
  transition: transform .35s var(--easing);
}
.ci { font-size: 1.55rem; }
.card-service:hover .ci-wrap { transform: rotate(-6deg) scale(1.05); }

.card-service h3 { margin: 0; font-size: 1.05rem; color: var(--green-900); }
.card-service p { margin: .55rem 0 1rem; color: var(--ink-700); font-size: .94rem; flex: 1; }
.card-link {
  align-self: flex-start; font-weight: 800; color: var(--orange-500);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .2s ease, color .2s ease;
}
.card-link:hover { color: var(--green-800); gap: .55rem; }

/* ---------- Stats ---------- */
.stats {
  padding: 3.6rem 0;
  background:
    linear-gradient(120deg, var(--green-950), var(--green-900) 60%, var(--green-800));
  color: #fff;
  position: relative; overflow: hidden;
}
.stats::before, .stats::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35;
}
.stats::before { width: 320px; height: 320px; background: var(--green-500); top: -80px; left: -80px; }
.stats::after  { width: 320px; height: 320px; background: var(--gold-500); bottom: -80px; right: -80px; }
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem;
  text-align: center;
}
.stat { padding: 1rem; }
.stat strong {
  font-family: "Sora"; font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: linear-gradient(120deg, var(--gold-400), #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-size: 1.4rem; color: var(--gold-400); font-weight: 800; vertical-align: top; }
.stat p { margin: .4rem 0 0; color: rgba(255,255,255,.86); font-weight: 600; }

/* ---------- Benefits ---------- */
.benefits { background: var(--gray-50); }
.benefit-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem;
}
.benefit {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem;
  transition: transform .25s var(--easing), border-color .2s ease, box-shadow .2s ease;
}
.benefit:hover {
  transform: translateY(-4px); border-color: var(--green-500);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: .8rem;
  background: linear-gradient(135deg, var(--green-100), #fff2c6);
  font-size: 1.45rem;
}
.benefit h3 { margin: 0; color: var(--green-900); font-size: 1.05rem; }
.benefit p  { margin: .45rem 0 0; color: var(--ink-700); font-size: .94rem; }

/* ---------- How ---------- */
.how { background: var(--white); }
.steps {
  list-style: none; margin: 0; padding: 0; position: relative;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem;
}
.steps::before {
  content: ""; position: absolute; top: 38px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-500) 0 14px, transparent 14px 26px);
  opacity: .7;
}
.step {
  position: relative; z-index: 1;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--easing);
}
.step:hover { transform: translateY(-4px); }
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  margin: 0 auto .8rem;
  background: linear-gradient(135deg, var(--green-700, #115a43), var(--green-900));
  color: #fff; font-family: "Sora"; font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 12px 22px rgba(6,78,59,.35);
}
.step h3 { margin: 0; color: var(--green-900); font-size: 1.04rem; }
.step p  { margin: .45rem 0 0; color: var(--ink-700); font-size: .94rem; }

/* ---------- CTA box ---------- */
.cta-strong { padding: 3.5rem 0; }
.cta-box {
  position: relative; isolation: isolate;
  text-align: center; color: #fff; padding: 3.4rem 1.4rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 25%, rgba(245,158,11,.35), transparent 45%),
    linear-gradient(135deg, var(--green-950), var(--green-900) 55%, var(--green-700, #115a43));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: -1;
  background: conic-gradient(from 0deg, rgba(16,185,129,.0), rgba(16,185,129,.35), rgba(245,158,11,.35), rgba(16,185,129,.0));
  filter: blur(48px); opacity: .6; animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-box h2 {
  font-family: "Sora"; margin: .9rem 0 0; font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.18;
}
.cta-box > p {
  margin: .9rem auto 1.5rem; max-width: 58ch; color: rgba(255,255,255,.92);
}
.pulse-ring { position: relative; }
.pulse-ring::after {
  content: ""; position: absolute; inset: -6px; border-radius: 999px;
  border: 2px solid rgba(245,158,11,.5);
  animation: ringPulse 1.8s ease-out infinite;
}
@keyframes ringPulse {
  0%{ transform: scale(.9); opacity:1; }
  100%{ transform: scale(1.25); opacity: 0; }
}

/* ---------- Segments ---------- */
.segments { background: var(--white); }
.segment-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .85rem;
}
.segment {
  display: flex; align-items: center; gap: .7rem;
  background: var(--gray-50); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem; font-weight: 700; color: var(--green-900);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.segment span { font-size: 1.3rem; }
.segment:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--green-100), #fff8d6);
  border-color: var(--green-500);
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--gray-50); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem;
}
.testimonial {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--easing), box-shadow .2s ease;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold-400); letter-spacing: .08em; font-size: 1.05rem; }
.testimonial p { margin: .55rem 0 1rem; color: var(--ink-700); }
.testimonial footer { display: flex; flex-direction: column; }
.testimonial strong { color: var(--green-900); }
.testimonial span { color: var(--ink-500); font-size: .85rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { display: grid; gap: .8rem; max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); padding: 1rem 1.1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--green-500); box-shadow: var(--shadow-md); }
.faq-item summary {
  cursor: pointer; font-weight: 800; color: var(--green-900); list-style: none;
  position: relative; padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--green-800); transition: transform .25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: .55rem 0 0; color: var(--ink-700); }

/* ---------- Footer ---------- */
.footer {
  margin-top: 3rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(16,185,129,.22), transparent 40%),
    linear-gradient(180deg, var(--green-950), #04231b);
  color: rgba(255,255,255,.92); padding: 3.4rem 0 1.6rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 1.4rem;
}
.footer-logo {
  width: min(100%, 170px); height: auto;
  background: rgba(255,255,255,.06); padding: .4rem; border-radius: 12px;
}
.footer-brand p { margin-top: .9rem; color: rgba(255,255,255,.82); max-width: 38ch; }
.footer h3 { margin: 0 0 .8rem; color: #fff; font-size: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer a:hover { color: var(--gold-400); }
.muted { color: rgba(255,255,255,.78); margin-bottom: .8rem; }
.footer-copy {
  text-align: center; margin-top: 1.6rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .9rem; color: rgba(255,255,255,.78);
}

/* ---------- Botão flutuante WhatsApp ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1500;
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
}
.wf-core {
  position: relative; z-index: 3;
  width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: grid; place-items: center;
  box-shadow: 0 16px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--easing);
}
.wf-core svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-float:hover .wf-core { transform: scale(1.08); }
.wf-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,.55);
  animation: waPulse 1.9s ease-out infinite;
}
.wf-ring.delay { animation-delay: .95s; }
@keyframes waPulse {
  0%   { transform: scale(.85); opacity: .85; }
  80%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wf-tooltip {
  position: absolute; right: 78px; top: 50%; transform: translateY(-50%);
  background: var(--green-900); color: #fff; padding: .55rem .8rem;
  border-radius: 10px; font-weight: 700; font-size: .85rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.wf-tooltip::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--green-900);
}
.whatsapp-float:hover .wf-tooltip {
  opacity: 1; transform: translateY(-50%) translateX(-4px);
}

/* ---------- Animação reveal ---------- */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--easing), transform .8s var(--easing);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Tilt fallback (suave) ---------- */
.tilt { transition: transform .35s var(--easing); will-change: transform; }

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .segment-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pill-c { display: none; }
}
@media (max-width: 768px) {
  .brand-name { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: fixed; top: 72px; left: 1rem; right: 1rem;
    background: rgba(255,255,255,.98); border: 1px solid var(--line);
    border-radius: 18px; padding: 1rem; display: grid; gap: .8rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px) scale(.98); opacity: 0; pointer-events: none;
    transition: .22s ease;
  }
  .nav.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

  .service-grid, .segment-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .benefit-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-pill { display: none; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero { padding: 3.6rem 0 3rem; }
  .service-grid, .segment-grid, .steps, .stats-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .brand-logo { height: 40px !important; max-width: 44px; }
  .whatsapp-float { width: 58px; height: 58px; right: 16px; bottom: 16px; }
}
