/* ═══════════════════════════════════════════════════════════════
   MOURA GENERAL SERVICES — Richmond, VA
   Design: "Established Field Crew" — sóbrio e premium. Paper + deep
   green, Anton display contido + Raleway, lime como acento pontual.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --paper: #f6f4ee;
  --paper-2: #eeeade;
  --ink: #182312;
  --green-900: #27400d;
  --green-700: #4a7317;
  --green-500: #62a72b;
  --lime: #a8ec66;
  --navy: #0a3665;
  --brown: #67451d;
  --tan: #a97c48;
  --sand: #e4d9c3;
  --white: #ffffff;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;

  --line: 1px solid rgba(24, 35, 18, 0.12);
  --shadow: 0 12px 32px rgba(24, 35, 18, 0.1);
  --shadow-sm: 0 4px 14px rgba(24, 35, 18, 0.08);
  --radius: 14px;
  --container: 1180px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.0425rem;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); }
ul { list-style: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 4.8vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); letter-spacing: 0.04em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

:focus-visible { outline: 3px solid var(--green-500); outline-offset: 3px; }

/* highlight: sublinhado reto e discreto */
.hl {
  position: relative;
  display: inline-block;
  z-index: 1;
  white-space: nowrap;
}
.hl::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.16em;
  background: var(--green-500);
  z-index: -1;
}
.on-dark .hl::after, .hero .hl::after, .page-hero .hl::after,
.area-band .hl::after, .estimate-band .hl::after, .final-cta .hl::after { background: var(--lime); opacity: 0.85; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--green-500);
}

.section-pad { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 54px; }
/* :not(.eyebrow): sem isso a regra vence p.eyebrow por especificidade e o rótulo sai gigante */
.section-head p:not(.eyebrow) { margin-top: 16px; font-size: 1.08rem; color: rgba(24, 35, 18, 0.78); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: var(--shadow-sm);
  line-height: 1.2;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-900); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: #b8f47e; }
.btn-ghost { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.55); box-shadow: none; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.btn-navy { background: var(--navy); color: #fff; }
.btn svg { flex: none; }

/* ── Offer bar ─────────────────────────────────────────────── */
.offer-bar {
  background: var(--green-900);
  color: rgba(246, 244, 238, 0.92);
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 16px;
  letter-spacing: 0.03em;
}
.offer-bar a { color: var(--lime); font-weight: 700; white-space: nowrap; }
@media (max-width: 620px) {
  .offer-bar { font-size: 0.78rem; padding: 7px 14px; letter-spacing: 0.02em; }
  .offer-bar .offer-extra { display: none; } /* mensagem curta no mobile */
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: var(--line);
}
/* fundo + blur num ::before: backdrop-filter no próprio header o tornaria
   containing block do drawer mobile (position: fixed), cortando o menu */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(246, 244, 238, 0.96);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo img { height: 68px; width: auto; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a, .nav-drop-toggle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: inherit; /* button não herda line-height do body como os links */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  position: relative;
}
.main-nav a::after, .nav-drop-toggle::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.main-nav a:hover::after, .nav-drop-toggle:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-drop-toggle svg { transition: transform 0.2s ease; }
.nav-dropdown.open .nav-drop-toggle svg { transform: rotate(180deg); }
/* extras do drawer mobile — invisíveis no desktop */
.drawer-head, .drawer-foot, .nav-scrim { display: none; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 250px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 950;
}
.nav-dropdown.open .nav-drop-menu { display: flex; }
/* ponte invisível sobre o vão de 10px entre o toggle e o menu — sem ela o
   mouseleave dispara ao descer para o submenu e o dropdown fecha */
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav-drop-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
}
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { background: rgba(98, 167, 43, 0.12); color: var(--green-900); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  white-space: nowrap;
}
.header-phone svg { color: var(--green-700); }
.header-phone:hover { color: var(--green-700); }
.header-cta { padding: 12px 22px; font-size: 0.85rem; box-shadow: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: var(--line);
  border-radius: 8px;
  padding: 11px 10px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 72px 0 116px;
  isolation: isolate;
  background: var(--green-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(95deg, rgba(16, 26, 8, 0.86) 10%, rgba(16, 26, 8, 0.6) 55%, rgba(16, 26, 8, 0.3) 100%);
}
.hero > .container { width: 100%; }
.hero-content { max-width: 760px; color: rgba(246, 244, 238, 0.94); }
.hero .eyebrow { color: var(--lime); }
.hero .eyebrow::before { background: var(--lime); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.1vw, 3.5rem); margin-bottom: 18px; }
.hero p.lead { font-size: clamp(1.05rem, 1.5vw, 1.18rem); font-weight: 500; max-width: 560px; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 38px; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(246, 244, 238, 0.92);
  border-top: 1px solid rgba(246, 244, 238, 0.25);
  padding-top: 22px;
  white-space: nowrap;
  width: max-content;
}
.trust-bar li { display: inline-flex; align-items: center; gap: 8px; }
.trust-bar svg { color: var(--lime); flex: none; }

/* transição suave da seção escura para o papel */
.grass-edge {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}
.grass-edge svg { width: 100%; height: 100%; display: block; }

/* ── Ticker de serviços (sem fundo — corre direto no papel) ── */
.marquee {
  overflow: hidden;
  padding: 26px 0 0;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 150s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  color: rgba(24, 35, 18, 0.45);
  white-space: nowrap;
  padding-right: 14px;
}
.marquee-track span i { font-style: normal; color: var(--green-500); padding-left: 14px; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ── Value cards ───────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .icon-chip {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(98, 167, 43, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green-700);
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.94rem; color: rgba(24, 35, 18, 0.75); }

/* ── Service cards ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card .card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .card-photo img { transform: scale(1.05); }
.service-num {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(246, 244, 238, 0.94);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--green-700);
  padding: 4px 11px;
  box-shadow: var(--shadow-sm);
}
.service-card .card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card .card-body p { font-size: 0.95rem; color: rgba(24, 35, 18, 0.75); flex: 1; }
.card-link {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--green-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link:hover { color: var(--green-900); }
.card-link::after { content: '→'; font-size: 1.05rem; transition: transform 0.15s; }
.card-link:hover::after { transform: translateX(5px); }

/* card convite (última célula da grade de serviços) */
.service-card.card-invite { background: var(--green-900); border-color: var(--green-900); }
.service-card.card-invite h3 { color: #fff; }
.service-card.card-invite p { color: rgba(246, 244, 238, 0.8); }
.card-invite .invite-body {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  min-height: 100%;
  position: relative;
  z-index: 1;
}
.card-invite .invite-body p { flex: 0 0 auto; max-width: 30ch; }
.card-invite .invite-chip {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(168, 236, 102, 0.12);
  border: 1px solid rgba(168, 236, 102, 0.35);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.card-invite .invite-leaf {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 200px;
  height: 200px;
  color: rgba(246, 244, 238, 0.07);
  transform: rotate(-14deg);
  pointer-events: none;
}

/* ── Split (About snippet, service pages) ──────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.photo-arch { position: relative; }
.photo-arch img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.photo-arch::after {
  content: '';
  position: absolute;
  left: 0; right: auto;
  bottom: -14px;
  width: 38%;
  height: 4px;
  background: var(--green-500);
  border-radius: 2px;
}
.photo-arch.tan::after { background: var(--tan); }
.photo-arch.navy::after { background: var(--navy); }
.split-copy h2 { margin-bottom: 20px; }
.split-copy p { color: rgba(24, 35, 18, 0.8); }
.split-copy p + p { margin-top: 14px; }
.split-copy .btn { margin-top: 30px; }

/* ── Why choose us ─────────────────────────────────────────── */
.why-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.why-item .check {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(98, 167, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-top: 2px;
}
.why-item strong { display: block; font-size: 1.02rem; }
.why-item p { font-size: 0.92rem; color: rgba(24, 35, 18, 0.72); }

/* ── Stats band ────────────────────────────────────────────── */
.stats-band {
  background: var(--green-900);
  padding: 70px 0;
  color: rgba(246, 244, 238, 0.85);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat { border-left: 1px solid rgba(246, 244, 238, 0.15); }
.stat:first-child { border-left: none; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--lime);
  line-height: 1;
  margin-bottom: 10px;
}
.stat span { font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars { color: var(--green-500); letter-spacing: 3px; font-size: 1rem; }
.testimonial blockquote { font-size: 0.98rem; color: rgba(24, 35, 18, 0.82); }
.testimonial cite { font-style: normal; font-weight: 700; font-size: 0.88rem; color: var(--green-700); }

/* ── Service area: navy band ───────────────────────────────── */
.area-band {
  background: linear-gradient(120deg, var(--green-900) 0%, #35550f 70%, #3e6413 100%);
  color: rgba(246, 244, 238, 0.92);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.area-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cpath d='M0 45h90M45 0v90' stroke='%23ffffff' stroke-opacity='0.045'/%3E%3C/svg%3E");
}
.area-band .eyebrow { color: var(--lime); }
.area-band .eyebrow::before { background: var(--lime); }
.area-band h2 { color: #fff; }
.area-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.city-chips li {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 17px;
  font-weight: 600;
  font-size: 0.87rem;
}
.city-chips li.chip-hq {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  font-weight: 700;
}
.radius-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  padding: 40px 36px;
  text-align: center;
}
.radius-card .big {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.6vw, 4rem);
  line-height: 1;
  color: var(--green-700);
}
.radius-card p { font-weight: 600; margin-top: 10px; color: rgba(24, 35, 18, 0.8); }
.radius-card .btn { margin-top: 24px; }
.radius-card.map-card { padding: 0; overflow: hidden; }
.map-embed { aspect-ratio: 4 / 3; background: var(--paper-2); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gallery-grid .g-item {
  display: block;
  border: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gallery-grid .g-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

/* lightbox da galeria */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(16, 26, 8, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lb-btn {
  position: fixed;
  z-index: 1210;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(246, 244, 238, 0.1);
  border: 1px solid rgba(246, 244, 238, 0.32);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lb-btn:hover { background: rgba(246, 244, 238, 0.24); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(246, 244, 238, 0.85);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
@media (max-width: 620px) {
  .lb-btn { width: 42px; height: 42px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

/* ── Estimate form ─────────────────────────────────────────── */
.estimate-band {
  background: var(--green-900);
  padding: 100px 0;
  color: rgba(246, 244, 238, 0.9);
  position: relative;
  overflow: hidden;
}
.estimate-band::before {
  content: '';
  position: absolute;
  right: -160px; top: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 167, 43, 0.25), transparent 70%);
}
.estimate-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.estimate-copy h2 { color: #fff; margin-bottom: 18px; }
.estimate-copy .eyebrow { color: var(--lime); }
.estimate-copy .eyebrow::before { background: var(--lime); }
.estimate-copy a { color: var(--lime); font-weight: 700; }
.estimate-perks { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.estimate-perks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.estimate-perks svg { color: var(--lime); flex: none; margin-top: 4px; }

.estimate-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  padding: 42px 38px;
}
.estimate-form h3 { margin-bottom: 22px; font-size: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 700; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(24, 35, 18, 0.8); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 15px;
  border: 1px solid rgba(24, 35, 18, 0.22);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(98, 167, 43, 0.22);
}
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.83rem;
  color: rgba(24, 35, 18, 0.8);
  margin: 6px 0 20px;
}
.form-consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--green-700); flex: none; }
.estimate-form .btn { width: 100%; }
.form-note { font-size: 0.78rem; margin-top: 14px; text-align: center; color: rgba(24, 35, 18, 0.6); }

/* ── Final CTA ─────────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: 120px 0;
  isolation: isolate;
  text-align: center;
  background: var(--green-900);
  overflow: hidden;
}
.final-cta .cta-bg { position: absolute; inset: 0; z-index: -2; }
.final-cta .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 26, 8, 0.74);
}
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 16px; }
.final-cta p { color: rgba(246, 244, 238, 0.9); font-size: 1.1rem; font-weight: 500; max-width: 520px; margin: 0 auto 36px; }
.final-cta .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(120deg, var(--green-900) 0%, #35550f 70%, #3e6413 100%);
  color: rgba(246, 244, 238, 0.92);
  padding: 84px 0 110px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -120px; top: -160px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 236, 102, 0.16), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 16px; max-width: 880px; }
.page-hero p { max-width: 620px; font-size: 1.08rem; font-weight: 500; }
.page-hero .eyebrow { color: var(--lime); }
.page-hero .eyebrow::before { background: var(--lime); }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 26px;
  color: rgba(246, 244, 238, 0.7);
}
.breadcrumbs a { color: var(--lime); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span::before { content: '/'; margin-right: 8px; color: rgba(246, 244, 238, 0.35); }

/* ── Service page ──────────────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.included-grid li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: var(--line);
  border-radius: 12px;
  padding: 17px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}
.included-grid svg { color: var(--green-700); flex: none; margin-top: 3px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-500);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: rgba(24, 35, 18, 0.72); }

.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 20px 24px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green-700);
  transition: transform 0.2s;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; font-size: 0.96rem; color: rgba(24, 35, 18, 0.78); }

/* benefit cards on service pages */
.benefit-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  background: var(--white);
  border: var(--line);
  border-top: 3px solid var(--green-500);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 8px; }
.benefit p { font-size: 0.92rem; color: rgba(24, 35, 18, 0.75); }

/* ── About page extras ─────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-block {
  border: var(--line);
  border-top: 3px solid var(--green-700);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.value-block:nth-child(2) { border-top-color: var(--tan); }
.value-block:nth-child(3) { border-top-color: var(--navy); }
.value-block h3 { margin-bottom: 10px; }
.value-block p { color: rgba(24, 35, 18, 0.75); font-size: 0.96rem; }

.payment-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.payment-chips li {
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  padding: 7px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

/* ── Legal pages ───────────────────────────────────────────── */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 80px 24px; }
.legal-wrap h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 10px; }
.legal-wrap .updated { font-weight: 700; color: var(--green-700); margin-bottom: 40px; font-size: 0.88rem; }
.legal-wrap h2 { font-size: 1.35rem; margin: 42px 0 14px; }
.legal-wrap p { color: rgba(24, 35, 18, 0.82); }
.legal-wrap p + p { margin-top: 14px; }
.legal-wrap ul { list-style: disc; padding-left: 24px; margin: 14px 0; color: rgba(24, 35, 18, 0.82); }
.legal-wrap a { font-weight: 700; }

/* ── 404 ───────────────────────────────────────────────────── */
.notfound {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.notfound .container { max-width: 640px; }
.notfound .display { font-size: clamp(4.6rem, 12vw, 8rem); color: var(--green-700); }
.notfound p { margin: 18px 0 30px; font-weight: 500; color: rgba(24, 35, 18, 0.78); }

/* ── Footer ────────────────────────────────────────────────── */
.soil-strip {
  height: 6px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700) 45%, var(--brown));
}
.site-footer {
  background: #14200b;
  color: rgba(246, 244, 238, 0.82);
  padding: 80px 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
  gap: 50px;
}
.footer-brand img { height: 108px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.93rem; max-width: 300px; }
.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-700);
  display: inline-block;
}
.footer-links li + li { margin-top: 10px; }
.footer-links a {
  color: rgba(246, 244, 238, 0.82);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
}
.footer-links a:hover { color: var(--lime); }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.93rem;
  font-weight: 500;
}
.footer-contact li + li { margin-top: 14px; }
.footer-contact svg { color: var(--lime); flex: none; margin-top: 4px; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--lime); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(246, 244, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 244, 238, 0.85);
  transition: 0.18s;
}
.footer-social a:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 244, 238, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.83rem;
  color: rgba(246, 244, 238, 0.6);
}

/* ── Inside Bar ────────────────────────────────────────────── */
.inside-bar { background: #000; padding: 14px 0; }
.inside-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.inside-bar img { display: block; height: 24px; width: auto; }
.inside-bar-links { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; }
.inside-bar-links a { color: rgba(255, 255, 255, 0.4); text-decoration: none; transition: color 0.2s; }
.inside-bar-links a:hover { color: rgba(255, 255, 255, 0.85); }
.inside-bar-sep { color: rgba(255, 255, 255, 0.2); }

/* ── Reveal animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: var(--paper);
    border-left: var(--line);
    padding: 20px 26px 30px;
    transform: translateX(105%);
    transition: transform 0.25s ease;
    z-index: 940;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .main-nav.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(24, 35, 18, 0.25); }

  /* cabeçalho do drawer: logo + fechar */
  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: var(--line);
    margin-bottom: 8px;
  }
  .drawer-head img { height: 54px; width: auto; }
  .drawer-close {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: var(--line);
    background: var(--white);
    color: var(--green-900);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* itens: display font, divisórias, entrada escalonada */
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li {
    border-bottom: var(--line);
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  .main-nav.open > ul > li { opacity: 1; transform: none; }
  .main-nav.open > ul > li:nth-child(1) { transition-delay: 0.06s; }
  .main-nav.open > ul > li:nth-child(2) { transition-delay: 0.1s; }
  .main-nav.open > ul > li:nth-child(3) { transition-delay: 0.14s; }
  .main-nav.open > ul > li:nth-child(4) { transition-delay: 0.18s; }
  .main-nav.open > ul > li:nth-child(5) { transition-delay: 0.22s; }
  .main-nav > ul > li > a, .nav-drop-toggle {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.08rem;
    letter-spacing: 0.08em;
    width: 100%;
    padding: 15px 0;
  }
  .main-nav > ul > li > a::after, .nav-drop-toggle::after { display: none; }
  .nav-drop-toggle { justify-content: space-between; }
  .nav-drop-toggle svg { color: var(--green-700); }
  .nav-drop-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--green-500);
    border-radius: 0;
    padding: 2px 0 14px 16px;
    min-width: 0;
    background: transparent;
  }
  .nav-drop-menu a { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; padding: 9px 12px; }

  /* rodapé do drawer: CTA + telefone + horário */
  .drawer-foot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 26px;
  }
  /* re-afirma o estilo de .btn-primary: a regra genérica `.main-nav a`
     (background: none, padding 8px 0) vence .btn por especificidade */
  .drawer-foot .drawer-cta {
    width: 100%;
    background: var(--green-700);
    color: #fff;
    padding: 15px 30px;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }
  .drawer-foot .drawer-cta:hover { background: var(--green-900); }
  .drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px;
    border: var(--line);
    border-radius: 999px;
    background: var(--white);
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
  }
  .drawer-phone svg { color: var(--green-700); }
  .drawer-note { text-align: center; font-size: 0.8rem; color: rgba(24, 35, 18, 0.6); }

  /* scrim atrás do drawer */
  .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 935;
    background: rgba(16, 26, 8, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .nav-scrim.on { opacity: 1; pointer-events: auto; }

  .nav-toggle { display: flex; }
  .header-phone span { display: none; }
  .header-cta { display: none; }
  .split, .area-inner, .estimate-inner { grid-template-columns: 1fr; gap: 46px; }
  .testimonial-grid, .benefit-row, .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-pad { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat:nth-child(3) { border-left: none; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }

  /* títulos centralizados e balanceados; botões em largura total */
  h1, h2, h3 { text-align: center; text-wrap: balance; }
  .eyebrow { display: flex; justify-content: center; }
  .section-head { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-content, .page-hero .container, .final-cta .container { text-align: center; }
  .btn { width: 100%; }
  .site-footer h3 { text-align: left; } /* colunas do rodapé seguem à esquerda */
  .site-footer .eyebrow { display: inline-flex; }

  .value-grid, .services-grid, .included-grid, .steps-grid, .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 64px 0 110px; }
  .trust-bar { white-space: normal; width: auto; }
  .logo img { height: 56px; }
  .estimate-form { padding: 30px 22px; }
  .final-cta { padding: 96px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .inside-bar-inner { flex-direction: column; text-align: center; gap: 10px; }
}
