/* ═══════════════════════════════════════════════════════════
   HOME — Todas as seções da página inicial
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/medias/hero.jpg') center center / cover no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(22, 72, 208, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(249, 115, 22, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 22, 40, 0.94) 0%,
    rgba(10, 22, 40, 0.86) 35%,
    rgba(10, 22, 40, 0.55) 58%,
    rgba(10, 22, 40, 0.25) 75%,
    rgba(10, 22, 40, 0.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
}
.hero h1 { color: #fff; margin-bottom: 20px; max-width: 15ch; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero h1 span { color: var(--org-l); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,.9);
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: .84rem;
}
.proof-item i { color: var(--org-l); font-size: .8rem; }

/* ── Urgency Strip ────────────────────────────────────────── */
.urgency { background: var(--orange); padding: 13px 0; }
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}
.urgency-inner p { color: #fff; font-weight: 600; font-size: .9rem; }
.urgency-inner a {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* ── Numbers Bar ──────────────────────────────────────────── */
.numbers { background: var(--ink); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .numbers-grid { grid-template-columns: repeat(4, 1fr); } }
.num-cell {
  padding: 38px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--ease);
}
.num-cell:hover { background: rgba(22,72,208,.07); }
.num-cell:nth-child(2n) { border-right: 0; }
@media (min-width: 640px) {
  .num-cell:nth-child(2n)  { border-right: 1px solid rgba(255,255,255,.06); }
  .num-cell:last-child     { border-right: 0; }
  .num-cell:nth-child(n+3) { border-bottom: 0; }
}
.num-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.num-label { color: rgba(255,255,255,.68); font-size: .82rem; font-weight: 500; }

/* ── Services ─────────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 900px) { .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.svc-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-card:hover { 
  transform: translateY(-10px); 
  box-shadow: 0 24px 56px rgba(0,0,0,.15); 
  border-color: rgba(249,115,22,.2); 
}
.svc-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(0.34, 1.56, 0.64, 1); }
.svc-card:hover .svc-thumb img { transform: scale(1.12); }
.svc-thumb-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.55) 0%, transparent 55%); }
.svc-chip {
  position: absolute;
  bottom: 14px; left: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff5e2e 100%);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.svc-body { padding: 22px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-size: 1.12rem; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
@media (min-width: 900px) { .svc-body h3 { font-size: 1.22rem; } }
.svc-body p { color: var(--muted); font-size: .88rem; line-height: 1.7; flex: 1; margin-bottom: 16px; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue);
  transition: var(--ease);
  margin-top: auto;
}
.svc-link i { font-size: .8rem; transition: var(--ease); }
.svc-card:hover .svc-link { color: var(--orange); }
.svc-card:hover .svc-link i { transform: translateX(6px); }

/* ── Pests ────────────────────────────────────────────────── */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (min-width: 540px) { .pest-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px) { .pest-grid { grid-template-columns: repeat(6, 1fr); } }
.pest-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pest-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 12px 40px rgba(0,0,0,.12); 
  border-color: rgba(249,115,22,.2); 
}
.pest-thumb { aspect-ratio: 1; overflow: hidden; }
.pest-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(0.34, 1.56, 0.64, 1); }
.pest-card:hover .pest-thumb img { transform: scale(1.15); }
.pest-name { padding: 12px 12px 14px; text-align: center; }
.pest-name h3 {
  font-family: 'Barlow', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .2px;
}

/* ── Why ──────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--orange));
  transform: scaleX(0);
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-card:hover { 
  background: linear-gradient(135deg, rgba(22,72,208,.15) 0%, rgba(22,72,208,.05) 100%); 
  border-color: rgba(22,72,208,.45); 
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.why-card:hover::before { transform: scaleX(1); }
.why-ico {
  width: 72px; 
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--org-d) 100%);
  border: 1px solid rgba(255,168,74,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 28px rgba(249,115,22,.3);
}
.why-ico i { 
  color: #fff; 
  font-size: 1.6rem; 
  text-shadow: 0 2px 10px rgba(10,22,40,.35);
}
.why-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; font-weight: 700; }
.why-card p  { color: rgba(255,255,255,.78); font-size: .9rem; line-height: 1.78; }
.section--dark .sec-head > p { color: rgba(255,255,255,.78); }

/* ── About ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 860px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--sh-md);
}
.about-badge {
  position: absolute;
  bottom: -18px; right: -12px;
  background: var(--blue);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--r);
  text-align: center;
  box-shadow: 0 8px 28px rgba(22,72,208,.38);
}
@media (max-width: 480px) { .about-badge { right: 0; } }
.about-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--org-l);
  line-height: 1;
  display: block;
}
.about-badge p { font-size: .78rem; font-weight: 600; opacity: .88; margin-top: 3px; }
.about-text h2  { color: var(--ink); margin: 12px 0 18px; }
.about-text > p { color: var(--muted); line-height: 1.78; font-size: .97rem; margin-bottom: 16px; }

/* ── Areas ────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 860px) { .areas-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.areas-text > p { color: var(--muted); line-height: 1.78; margin-bottom: 22px; font-size: .97rem; }
.areas-map { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-md); }
.areas-map iframe { width: 100%; height: 360px; display: block; border: 0; }
@media (min-width: 860px) { .areas-map iframe { height: 420px; } }

/* ── Home Contact ──────────────────────────────────────────── */
.hcontact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 860px) { .hcontact-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; } }
.info-cards { display: flex; flex-direction: column; gap: 14px; }
.hmap { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-md); }
.hmap iframe { width: 100%; height: 340px; display: block; border: 0; }
@media (min-width: 860px) { .hmap iframe { height: 440px; } }
.wa-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
