/* ===== Care & Clean — Design System ===== */
:root {
  /* Paleta da marca (verde premium) */
  --verde: #48B849;          /* primary-green — eyebrow, destaque, ícones, detalhes ativos */
  --verde-forte: #073F3A;    /* dark-green — topbar, footer, fundos escuros, texto em fundo escuro */
  --verde-claro: #EAF8E8;    /* soft-green — fundos suaves de ícone, decoração, chips */
  --light-green: #86D978;    /* light-green — destaque claro no H1 ("You Can Trust") */
  --deep-green: #06342F;     /* deep-green — hover de fundos escuros */
  --grad-a: #77D86A;         /* gradiente de botão/ícone — início */
  --grad-b: #3FBA49;         /* gradiente de botão/ícone — fim */
  --texto: #0A3D38;          /* text-dark — títulos e texto principal */
  --texto-sub: #667785;      /* text-gray — parágrafos e texto secundário */
  --branco: #ffffff;
  --off: #F8FCF9;            /* background-soft */
  --borda: #E3EFE6;          /* border-soft */
  --sombra: 0 20px 45px -30px rgba(7,63,58,0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--branco);
  color: var(--texto);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 500;
}

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

h1, h2, h3, h4 { font-weight: 800; color: var(--texto); letter-spacing: -0.02em; line-height: 1.2; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 3px;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.destaque { color: var(--verde); }

section { padding: 84px 0; }
.center { text-align: center; }
.eyebrow { display: inline-block; color: var(--verde); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 14px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
.subtitulo { color: var(--texto-sub); font-size: 1.02rem; max-width: 600px; margin: 0 auto; }
.bg-off { background: var(--off); }

/* Pequeno divisor decorativo com folha (usado sob títulos de seção) */
.title-leaf-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 4px 0 14px; color: var(--verde); }
.title-leaf-divider span { width: 26px; height: 1px; background: var(--borda); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: 0.08s; }
.reveal-delay-2.visible { transition-delay: 0.16s; }
.reveal-delay-3.visible { transition-delay: 0.24s; }
.reveal-delay-4.visible { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== Topbar ===== */
.topbar {
  background: var(--verde-forte);
  color: #dff3da;
  font-size: 0.82rem;
  font-weight: 600;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; gap: 8px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: #ffffff; }
.topbar .socials { display: flex; gap: 10px; }
.topbar .socials a { width: 28px; height: 28px; border-radius: 50%; background: var(--branco); color: var(--verde-forte); justify-content: center; transition: transform 0.2s ease; }
.topbar .socials a:hover { transform: translateY(-2px); }
.topbar .socials a svg { width: 14px; height: 14px; }

/* ===== Nav ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--borda);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.nav-wrap.scrolled { box-shadow: 0 10px 30px -20px rgba(7,63,58,0.3); background: rgba(255,255,255,0.98); }

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 16px 0;
}
.nav-overlay { display: none; }
.brand { flex-shrink: 0; display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.15rem; color: var(--texto); }
.brand img { height: 48px; width: auto; transition: transform 0.25s ease; }
.brand:hover img { transform: scale(1.04); }

.nav-links { flex: 1; display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.nav-links a { font-weight: 700; font-size: 0.9rem; color: var(--texto); position: relative; padding: 6px 0; white-space: nowrap; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--verde); }

.nav-cta { flex-shrink: 0; margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle svg { color: var(--texto); }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-burger { display: none; }
.nav-toggle.open .icon-close { display: block; }

@media (max-width: 1080px) {
  .nav { position: relative; justify-content: center; gap: 0; }
  .nav-links { position: fixed; top: 0; right: 0; bottom: 0; width: 78%; max-width: 320px; background: var(--branco); flex-direction: column; align-items: flex-start; gap: 6px; padding: 90px 28px 28px; box-shadow: -20px 0 50px -20px rgba(0,0,0,0.25); transform: translateX(100%); transition: transform 0.3s ease; z-index: 60; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--borda); }
  .nav-toggle { display: flex; }
  .nav-cta { position: absolute; right: 0; top: 50%; transform: translateY(-50%); margin-left: 0; }
  .nav-cta .btn, .nav-cta .btn-outline { display: none; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(7,63,58,0.4); z-index: 55; }
  .nav-overlay.open { display: block; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 100%);
  color: var(--branco);
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 14px;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 14px 30px -16px rgba(63,186,73,0.55);
}
.btn:hover { transform: translateY(-3px); filter: brightness(0.96); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--branco);
  color: var(--verde-forte);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 0.92rem;
  border: 2px solid var(--verde);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.btn-outline:hover { background: var(--verde); color: var(--branco); transform: translateY(-3px); }
.btn-outline.soft-hover:hover { background: var(--verde-claro); color: var(--verde-forte); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-title { font-size: 2.7rem; }
@media (max-width: 640px) {
  .hero-title { font-size: 2rem; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 1.7rem; }
}

.destaque-claro { color: var(--light-green); }

.hero-highlights { display: flex; flex-wrap: nowrap; margin-top: 34px; }
.hero-highlight { display: flex; gap: 8px; align-items: flex-start; flex: 1 1 0; min-width: 0; padding: 0 14px; }
.hero-highlight:first-child { padding-left: 0; }
.hero-highlight:not(:last-child) { border-right: 1px solid var(--borda); }
.hero-highlight .hh-icon { color: var(--verde); flex-shrink: 0; margin-top: 1px; }
.hero-highlight b { display: block; font-size: 0.86rem; color: var(--texto); }
.hero-highlight span { font-size: 0.74rem; color: var(--texto-sub); }

@media (max-width: 720px) {
  .hero-highlights { flex-direction: column; gap: 16px; }
  .hero-highlight { flex-basis: auto; padding: 0; border-right: none !important; }
  .hero-highlight b { font-size: 0.9rem; }
  .hero-highlight span { font-size: 0.78rem; }
}

/* ===== Home hero ===== */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
  background: var(--branco);
}
.home-hero::before {
  content: '';
  position: absolute; top: -180px; left: -200px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, var(--verde-claro) 0%, rgba(234,248,232,0) 70%);
  z-index: 0;
}

.hero-grid-custom { display: grid; grid-template-columns: 1fr 1.18fr; gap: 56px; align-items: center; position: relative; z-index: 1; }

.hero-image-wrap { position: relative; }
.hero-image-wrap img { border-radius: 26px; box-shadow: var(--sombra); width: 100%; position: relative; z-index: 1; }
.hero-image-wrap .decor-blob { z-index: 0; }
.hero-image-wrap .decor-dots { z-index: 0; }

.hero-float-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 22px 44px -18px rgba(7,63,58,0.28);
  z-index: 2;
}
.hero-float-card .icon-circle { width: 42px; height: 42px; flex-shrink: 0; }
.hero-float-card b { font-size: 1.05rem; display: block; }
.hero-float-card span { font-size: 0.76rem; color: var(--texto-sub); font-weight: 600; }
.fc-1 { bottom: -20px; left: -22px; }
.fc-2 { top: -18px; right: -18px; padding: 10px 16px; }

@media (max-width: 900px) {
  .hero-grid-custom { grid-template-columns: 1fr; gap: 0; }
  .hero-text { display: contents; }
  .hero-image-wrap { order: 2; margin-top: 4px; margin-bottom: 32px; }
  .hero-actions { order: 3; margin-top: 26px; flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn, .hero-actions .btn-outline { flex: 1; justify-content: center; padding: 14px 10px; font-size: 0.82rem; white-space: nowrap; }
  .hero-highlights { order: 4; }
}

@media (max-width: 520px) {
  .hero-float-card { padding: 10px 12px; gap: 8px; }
  .hero-float-card .icon-circle { width: 34px; height: 34px; }
  .hero-float-card b { font-size: 0.9rem; }
  .hero-float-card span { font-size: 0.68rem; }
  .fc-1 { left: -10px; bottom: -16px; }
  .fc-2 { right: -8px; top: -12px; }
}

/* ===== Page header (subpages) ===== */
.page-header {
  background: linear-gradient(155deg, var(--verde-forte) 0%, var(--deep-green) 100%);
  padding: 64px 0 56px;
  color: var(--branco);
}
.page-header .eyebrow { color: #a9e0a0; }
.page-header h1 { color: var(--branco); font-size: 2.3rem; margin-bottom: 10px; }
.page-header p { color: #dff3da; max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.82rem; color: #cdeecb; margin-bottom: 16px; font-weight: 600; }

/* ===== Stat / badges ===== */
.stat-row { display: flex; align-items: center; gap: 12px; margin: 22px 0; }
.stat-row .icon { width: 46px; height: 46px; border-radius: 12px; background: var(--verde-claro); color: var(--verde); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-row b { font-size: 1.3rem; display: block; }
.stat-row span { color: var(--texto-sub); font-size: 0.85rem; font-weight: 600; }

.badges-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--verde-claro); color: var(--verde-forte);
  border: 1px solid var(--borda); padding: 8px 16px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.badge-chip svg { flex-shrink: 0; }
.badge-chip:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -14px rgba(7,63,58,0.35); }

/* ===== Decoração de fundo (blobs + pontos) ===== */
.section-decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.decor-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.decor-dots { position: absolute; pointer-events: none; }
.decor-blob-tl { width: 320px; height: 320px; top: -110px; left: -130px; background: radial-gradient(circle, var(--verde-claro) 0%, rgba(234,248,232,0) 72%); }
.decor-blob-br { width: 460px; height: 460px; bottom: -180px; right: -170px; background: radial-gradient(circle, var(--verde-claro) 0%, rgba(234,248,232,0) 72%); }
.decor-dots { width: 130px; height: 130px; background-image: radial-gradient(var(--borda) 1.6px, transparent 1.6px); background-size: 18px 18px; opacity: 0.9; }
.decor-dots-tl { top: 30px; left: 18px; }
.decor-dots-br { bottom: 46px; right: 34px; }
section.section-relative { position: relative; overflow: hidden; }
section.section-relative > .container { position: relative; z-index: 1; }

/* ===== Ícone quadrado — cards de serviço (verde sólido, ícone branco) ===== */
.icon-tile {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 100%);
  color: var(--branco);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px -12px rgba(63,186,73,0.45);
  transition: transform 0.3s ease;
}
.card:hover .icon-tile { transform: rotate(-6deg) scale(1.08); }

.card-leaf { position: absolute; bottom: 14px; right: 14px; color: var(--verde-claro); pointer-events: none; }

/* ===== Ícone circular suave (contato, hero float, why choose us) ===== */
.icon-circle {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--verde-claro);
  color: var(--verde);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}

.icon-badge {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--verde-claro);
  color: var(--verde);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.why-card:hover .icon-badge { transform: rotate(-6deg) scale(1.08); }
.mini-line { width: 26px; height: 3px; background: var(--verde); border-radius: 2px; margin: 12px auto; }
.why-card { padding: 34px 26px; text-align: center; }

.google-rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 30px; flex-wrap: wrap; }
.google-rating b { font-size: 1.15rem; color: var(--texto); }
.google-rating .stars { color: #f59e0b; letter-spacing: 2px; font-size: 0.95rem; }
.google-rating .rating-text { color: var(--texto-sub); font-size: 0.92rem; font-weight: 600; }

/* ===== Esteira de depoimentos (Google reviews) ===== */
.review-marquee-wrap {
  overflow: hidden;
  max-width: 100%;
  margin-top: 44px;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.review-marquee { display: flex; flex-wrap: nowrap; gap: 22px; width: max-content; animation: reviewMarquee 74s linear infinite; padding: 4px 0; }
.review-marquee:hover { animation-play-state: paused; }
.review-marquee .review-card { flex: 0 0 320px; }
@keyframes reviewMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-8 * (320px + 22px))); }
}
@media (max-width: 520px) {
  .review-marquee { animation-duration: 120s; }
  @keyframes reviewMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-8 * (260px + 22px))); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .review-marquee { animation: none; }
}
.review-card { background: var(--branco); border: 1px solid var(--borda); border-radius: 22px; box-shadow: var(--sombra); padding: 30px; text-align: left; }
.review-card .review-stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.review-card p { color: var(--texto-sub); font-size: 0.92rem; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--verde-claro); color: var(--verde); display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.review-author b { display: block; font-size: 0.92rem; color: var(--texto); }
.review-author span { font-size: 0.78rem; color: var(--texto-sub); }
@media (max-width: 520px) {
  .review-marquee .review-card { flex-basis: 260px; }
}

.seals-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 26px; }
.seals-row img { height: 68px; width: auto; transition: transform 0.2s ease; }
.seals-row img:hover { transform: translateY(-3px); }
.seals-row.center { justify-content: center; }

.video-embed {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 48.4%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sombra);
}
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ===== Cards genéricas ===== */
.card {
  display: block;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 22px;
  box-shadow: var(--sombra);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); }
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--grad-a) 0%, var(--grad-b) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover::before { transform: scaleX(1); }

/* ===== Grid utilitário ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ===== Testimonial avatar ===== */
.testimonial-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avatar-illustrated { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.avatar-illustrated svg, .avatar-illustrated img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== Bloco de info de contato (Contact + CTA final da Home) ===== */
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--borda); }
.contact-info-card:last-child { border-bottom: none; }

/* ===== Formulário de orçamento (reusado em Contact + CTAs finais) ===== */
.form-card { background: var(--branco); border: 1px solid var(--borda); border-radius: 22px; box-shadow: var(--sombra); padding: 38px; text-align: left; }
.form-card.on-dark { max-width: 620px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--texto); }
.field label .req { color: #dc2626; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--borda); border-radius: 10px; padding: 12px 14px;
  font-family: inherit; font-size: 0.92rem; color: var(--texto); background: var(--off);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--verde); background: var(--branco); }
.map-frame { border-radius: 20px; overflow: hidden; box-shadow: var(--sombra); border: 1px solid var(--borda); }
@media (max-width: 860px) { .form-row { grid-template-columns: 1fr; } }

/* ===== Modal de orçamento (popup) ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,52,47,0.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-dialog {
  position: relative;
  background: var(--branco);
  border-radius: 22px;
  box-shadow: var(--sombra);
  padding: 38px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  text-align: left;
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--borda);
  display: flex; align-items: center; justify-content: center;
  color: var(--texto);
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal-close:hover { background: var(--verde-claro); }
body.modal-open { overflow: hidden; }
@media (max-width: 640px) {
  .modal-dialog { padding: 20px 16px; max-height: 94vh; }
  .modal-dialog #quoteModalTitle { font-size: 1.15rem; margin-bottom: 12px !important; }
  .modal-dialog .eyebrow { margin-bottom: 4px; }
  .modal-close { top: 10px; right: 10px; width: 30px; height: 30px; }
  .modal-dialog .form-row { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
  .modal-dialog .field { gap: 3px; }
  .modal-dialog .field:has(textarea) { margin-bottom: 4px !important; }
  .modal-dialog .field label { font-size: 0.78rem; }
  .modal-dialog .field input, .modal-dialog .field select, .modal-dialog .field textarea { padding: 9px 10px; font-size: 0.86rem; }
  .modal-dialog .field textarea { height: 56px; }
  .modal-dialog button[type="submit"] { padding: 13px !important; }
}

/* ===== Aviso de sucesso (após enviar formulário) ===== */
.success-toast {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6,52,47,0.35);
}
.success-toast.open { display: flex; }
.success-toast-box {
  background: var(--branco);
  border-radius: 22px;
  box-shadow: var(--sombra);
  padding: 40px 36px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  animation: toastPop 0.25s ease;
}
@keyframes toastPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--verde-claro);
  color: var(--verde);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.success-toast-box h3 { font-size: 1.25rem; margin-bottom: 8px; }
.success-toast-box p { color: var(--texto-sub); font-size: 0.94rem; }
@media (prefers-reduced-motion: reduce) {
  .success-toast-box { animation: none; }
}

/* ===== Barra fixa inferior (mobile) ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--branco);
  border-top: 1px solid var(--borda);
  box-shadow: 0 -10px 30px -20px rgba(7,63,58,0.35);
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-weight: 700; font-size: 0.86rem;
  border-radius: 12px;
  white-space: nowrap;
}
.mobile-cta-call { flex: 0 0 auto; padding: 12px 18px; background: var(--verde-claro); color: var(--verde-forte); border: 1.5px solid var(--verde); }
.mobile-cta-call svg { flex-shrink: 0; }
.mobile-cta-quote {
  flex: 1;
  padding: 12px 8px;
  background: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 100%);
  color: var(--branco);
  box-shadow: 0 10px 22px -14px rgba(63,186,73,0.55);
}
@media (max-width: 1080px) {
  .mobile-cta-bar { display: flex; }
  .mobile-cta-bar.hide-for-menu { display: none; }
  body { padding-bottom: 76px; }
}
footer { background: var(--verde-forte); color: #bfe0c4; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 0.9fr; gap: 36px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 40px; background: var(--branco); padding: 9px 14px; border-radius: 10px; }
.footer-brand b { color: var(--branco); font-size: 1.1rem; }
footer h4 { color: var(--branco); font-size: 0.92rem; margin-bottom: 16px; }
footer p, footer li { font-size: 0.88rem; margin-bottom: 8px; }
footer a:hover { color: var(--branco); }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; }
.footer-socials a:hover { background: var(--verde); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; text-align: center; font-size: 0.8rem; color: #6fa07a; }
.footer-item { display: flex; gap: 8px; align-items: flex-start; }
.footer-item svg { flex-shrink: 0; margin-top: 2px; color: var(--verde); }

@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  h2 { font-size: 1.6rem; }
  .page-header h1 { font-size: 1.8rem; }
  section { padding: 60px 0; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
