/* ═══════════════════════════════════
   DESIGN SYSTEM
═══════════════════════════════════ */

:root {
  /* Palette */
  --dark:        #091a0b;
  --dark-2:      #0f2413;
  --dark-3:      #1a3820;
  --green:       #1a7a30;
  --green-mid:   #239a3e;
  --accent:      #2ecc5a;
  --accent-light:#4ddf75;
  --white:       #ffffff;
  --off-white:   #f6f9f6;
  --border:      #e2ece3;
  --gold:        #d48a1a;

  /* Text */
  --tx-dark:     #0d1f10;
  --tx-body:     #3a5040;
  --tx-muted:    #7a9e84;
  --tx-light:    #ddeee0;
  --tx-faint:    rgba(221,238,224,0.55);

  /* Fonts */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container: 1180px;
  --header-h:  68px;
  --radius-s:  8px;
  --radius:    12px;
  --radius-l:  20px;
  --radius-xl: 28px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--tx-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg   { display: block; max-width: 100%; }
a          { color: inherit; text-decoration: none; }
address    { font-style: normal; }
ul, ol     { list-style: none; }
button     { cursor: pointer; background: none; border: none; font: inherit; }
input, textarea, select { font: inherit; }


/* ── Container ─────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}


/* ── Scroll Reveal (desativado) ─────────── */
[data-reveal], [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background 0.18s var(--ease), border-color 0.18s var(--ease),
              color 0.18s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.08s; }

.btn--wa {
  background: #25d366; color: #fff; border-color: #25d366;
}
.btn--wa:hover {
  background: #1db954; border-color: #1db954;
  box-shadow: 0 8px 28px rgba(37,211,102,.38);
}

.btn--cta {
  background: var(--accent); color: var(--dark); border-color: var(--accent);
  font-weight: 700;
}
.btn--cta:hover {
  background: var(--accent-light); border-color: var(--accent-light);
  box-shadow: 0 8px 24px rgba(46,204,90,.3);
}

.btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover {
  border-color: #fff; background: rgba(255,255,255,.08);
}

.btn--green {
  background: var(--green); color: #fff; border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-mid); border-color: var(--green-mid);
  box-shadow: 0 8px 24px rgba(26,122,48,.3);
}

.btn--dark {
  background: var(--dark); color: var(--accent); border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark-2);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.btn--outline-dark {
  background: transparent; color: var(--dark); border-color: rgba(9,26,11,.35);
}
.btn--outline-dark:hover {
  background: var(--dark); color: #fff; border-color: var(--dark);
}

.btn--accent {
  background: var(--accent); color: var(--dark); border-color: var(--accent);
  font-weight: 700;
}
.btn--accent:hover {
  background: var(--accent-light);
  box-shadow: 0 6px 20px rgba(46,204,90,.3);
}

.btn--large  { padding: 0.9375rem 2rem; font-size: 1rem; }
.btn--full   { width: 100%; justify-content: center; }


/* ═══════════════════════════════════
   BRAND
═══════════════════════════════════ */

.brand {
  display: flex; align-items: center; gap: 0.625rem; color: #fff;
}
.brand__icon  { width: 36px; height: 36px; flex-shrink: 0; color: var(--accent); }
.brand__name  {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 800; line-height: 1.2; color: #fff;
}
.brand__tagline {
  display: block;
  font-size: 0.625rem; color: rgba(255,255,255,.45);
  letter-spacing: 0.08em; text-transform: uppercase;
}


/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--header-h);
  background: rgba(9,26,11,0);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(9,26,11,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(46,204,90,.1), 0 6px 28px rgba(0,0,0,.3);
}

.site-header__inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%; gap: 1.25rem;
}

.main-nav { display: flex; align-items: center; }
.main-nav a {
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,.6);
  border-radius: 100px;
  transition: color 0.18s, background 0.18s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--accent); background: rgba(46,204,90,.1); }

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-tel {
  font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,.5);
  transition: color 0.18s;
}
.btn-tel:hover { color: var(--accent); }


/* ── Hamburger ───────────────────── */

.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.2);
  transition: border-color 0.18s, background 0.18s;
}
.hamburger:hover { border-color: rgba(46,204,90,.4); background: rgba(46,204,90,.08); }

.hamburger__line {
  display: block; height: 1.5px; background: #fff;
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
  transform-origin: center;
}
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ── Mobile Nav ─────────────────── */

.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  pointer-events: none;
}
.mobile-nav.is-open { transform: none; pointer-events: auto; }

.mobile-nav__inner {
  display: flex; flex-direction: column; gap: 2rem;
  max-width: 380px; margin: auto; width: 100%;
}
.mobile-nav__links { display: flex; flex-direction: column; }
.mobile-nav__link {
  display: block;
  font-family: var(--font-head); font-size: 1.875rem; font-weight: 800;
  color: rgba(255,255,255,.35);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(46,204,90,.07);
  transition: color 0.18s;
}
.mobile-nav__link:hover { color: var(--accent); }

.mobile-nav__tel { font-size: 0.9375rem; color: var(--tx-muted); text-align: center; }
.mobile-nav__tel a { color: var(--accent); font-weight: 600; }


/* ═══════════════════════════════════
   HERO — 2-column layout
═══════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Background radial glow */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 50%, rgba(26,122,48,.22) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 95% 15%, rgba(46,204,90,.1) 0%, transparent 55%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: 4.5rem;
}

/* ── Hero content col ── */
.hero__content { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--accent);
  background: rgba(46,204,90,.1);
  border: 1px solid rgba(46,204,90,.28);
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
}
.hero__title-accent { color: var(--accent); }

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.375rem;
}

.hero__desc {
  font-size: 1rem;
  color: var(--tx-faint);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 2rem; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.375rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(46,204,90,.12);
}
.hero__trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--tx-faint);
}
.hero__trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Hero visual col ── */
.hero__visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}

.hero__visual-inner {
  position: relative; width: 100%; max-width: 540px;
}

.hero__visual .img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(145deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(46,204,90,.12);
  overflow: hidden;
  position: relative;
}

.hero__visual .img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 28px,
      rgba(46,204,90,.025) 28px, rgba(46,204,90,.025) 56px
    );
}

.hero__visual .img-placeholder::after {
  content: attr(data-label);
  position: absolute; bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem; color: rgba(46,204,90,.25);
  text-align: center; white-space: nowrap;
  background: rgba(0,0,0,.5);
  padding: 0.3rem 0.75rem; border-radius: 100px;
}

.hero__visual .img-placeholder picture {
  display: block; width: 100%; height: 100%;
}
.hero__visual .img-placeholder img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

/* Floating stat cards */
.hero__stat-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  min-width: 130px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  animation: cardFloat 4s ease-in-out infinite;
}
.hero__stat-card--top {
  top: 1.5rem; left: -1.5rem;
  animation-delay: 0s;
}
.hero__stat-card--bottom {
  bottom: 2rem; right: -1rem;
  animation-delay: 2s;
}
.hero__stat-card-num {
  font-family: var(--font-head); font-size: 1.375rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.hero__stat-card-label {
  font-size: 0.6875rem; color: rgba(255,255,255,.5); font-weight: 500;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero__scroll-hint {
  position: absolute; bottom: 1.75rem; right: 2rem;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  color: rgba(255,255,255,.2);
  font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}


/* ═══════════════════════════════════
   STATS
═══════════════════════════════════ */

.stats-section { background: var(--dark); padding: 0; }

.stats-section__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(46,204,90,.1);
}

.stat {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(46,204,90,.07);
  position: relative; overflow: hidden;
  transition: background 0.2s var(--ease);
}
.stat::after {
  content: '';
  position: absolute; bottom: 0; left: 1.5rem; right: 1.5rem;
  height: 2px; background: var(--accent);
  border-radius: 1px 1px 0 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.28s var(--ease);
}
.stat:hover { background: rgba(46,204,90,.04); }
.stat:hover::after { transform: scaleX(1); }
.stat:last-child { border-right: none; }

.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--accent);
  line-height: 1; margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}
.stat__num small { font-size: 0.45em; letter-spacing: 0; color: var(--tx-muted); }

.stat__label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--tx-muted);
  text-transform: uppercase; letter-spacing: 0.07em;
}


/* ═══════════════════════════════════
   WAVE DIVIDERS
═══════════════════════════════════ */

.wave-sep { display: block; line-height: 0; overflow: hidden; }
.wave-sep--to-cream { background: var(--dark); }
.wave-sep--to-dark  { background: var(--off-white); }

.wave-sep--to-cream svg path { fill: var(--off-white) !important; }
.wave-sep--to-dark  svg path { fill: var(--dark) !important; }

.wave-sep svg { width: 100%; height: 60px; display: block; }


/* ═══════════════════════════════════
   SECTION BASE
═══════════════════════════════════ */

.section     { padding: 5rem 0; background: var(--dark); color: var(--tx-light); }
.section--cream { background: var(--off-white); color: var(--tx-dark); }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.75rem;
}
.section-label::before {
  content: ''; display: block; width: 18px; height: 2px;
  background: currentColor; border-radius: 1px;
}
.section-label--accent         { color: var(--accent); }
.section-label--accent::before { background: var(--accent); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 800; line-height: 1.1;
  color: var(--tx-dark);
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-title--light { color: #fff; }

.section-intro {
  font-size: 1rem; line-height: 1.72;
  color: rgba(58,80,64,.7);
  max-width: 560px; margin-bottom: 2.75rem;
}
.section .section-intro { color: var(--tx-body); }


/* ═══════════════════════════════════
   MATERIALS
═══════════════════════════════════ */

.materials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.materials-col { display: flex; flex-direction: column; gap: 0.75rem; }

.material-row {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}
.material-row:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,122,48,.1);
}

.material-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: linear-gradient(135deg, #e8f5eb 0%, #d4edd9 100%);
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.material-icon svg { width: 20px; height: 20px; }

.material-row h3 {
  font-size: 0.9375rem; font-weight: 700; color: var(--tx-dark);
  margin-bottom: 0.2rem;
}
.material-row h3 a { transition: color 0.18s; }
.material-row h3 a:hover { color: var(--green); }

.material-row p { font-size: 0.8125rem; color: var(--tx-body); line-height: 1.55; }

.not-accepted {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; font-weight: 500; color: #b94040;
  padding: 1rem 1.375rem;
  background: #fff5f5; border: 2px solid #f5c0c0; border-radius: var(--radius);
  margin-top: 2rem;
}
.not-accepted svg { flex-shrink: 0; color: #c94444; width: 20px; height: 20px; }


/* ═══════════════════════════════════
   TIMELINE
═══════════════════════════════════ */

.timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}

.timeline__connector {
  position: absolute;
  top: 35px;
  left: calc(16.67% + 8px); right: calc(16.67% + 8px);
  height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(46,204,90,.2));
  z-index: 0;
}

.timeline__step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 1.25rem;
}

.timeline__dot {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(46,204,90,.1), 0 8px 24px rgba(26,122,48,.4);
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
}
.timeline__step:hover .timeline__dot {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(46,204,90,.12), 0 12px 32px rgba(26,122,48,.45);
}

.timeline__num {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  color: #fff;
}

.timeline__body h3 {
  font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem;
}
.timeline__body p { font-size: 0.9375rem; color: #9dbfac; line-height: 1.65; }


/* ═══════════════════════════════════
   CITY PILLS
═══════════════════════════════════ */

.city-pills { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 1.75rem; }

.city-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9375rem; font-weight: 600;
  color: var(--tx-dark);
  background: #fff; border: 2px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: all 0.2s var(--ease);
}
.city-pill:hover {
  background: var(--green); color: #fff; border-color: var(--green);
  transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,122,48,.22);
}
.city-pill--featured {
  background: var(--green); color: #fff; border-color: var(--green);
  box-shadow: 0 4px 14px rgba(26,122,48,.28);
}
.city-pill--featured:hover {
  background: #145c24; border-color: #145c24;
  box-shadow: 0 8px 22px rgba(26,122,48,.35);
}
.city-pill__badge {
  font-size: 0.5625rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; background: rgba(255,255,255,.2);
  padding: 0.15rem 0.45rem; border-radius: 100px;
}

.city-note { font-size: 0.9375rem; color: var(--tx-body); }
.city-note a { color: var(--green); font-weight: 600; margin-left: 0.25rem; transition: color 0.18s; }
.city-note a:hover { color: #145c24; }


/* ═══════════════════════════════════
   DIFERENCIAIS
═══════════════════════════════════ */

.diff-layout {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 4rem; align-items: start;
}
.diff-layout__lead { position: sticky; top: calc(var(--header-h) + 2rem); }

.diff-lead-text { font-size: 1.125rem; color: #9dbfac; line-height: 1.7; margin: 1rem 0 1.5rem; }

.img-placeholder--inline {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-l); border: 1px solid rgba(46,204,90,.1);
  position: relative; overflow: hidden;
}
.img-placeholder--inline::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 26px,
    rgba(46,204,90,.025) 26px, rgba(46,204,90,.025) 52px
  );
}
.img-placeholder--inline::after {
  content: attr(data-label);
  position: absolute; bottom: 0.875rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.5625rem; color: rgba(46,204,90,.25);
  white-space: nowrap; pointer-events: none; width: 90%; text-align: center;
}

.diff-list { display: flex; flex-direction: column; }
.diff-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(46,204,90,.07);
  transition: padding-left 0.2s var(--ease);
}
.diff-item:last-child { border-bottom: none; }
.diff-item:hover { padding-left: 0.375rem; }

.diff-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.diff-item strong { display: block; font-size: 0.9375rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.diff-item p { font-size: 0.875rem; color: #9dbfac; line-height: 1.6; }


/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */

/* Segments grid — Quem Atendemos */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.segment-card {
  background: #fff;
  border: 1.5px solid #deeade;
  border-radius: var(--radius-l);
  padding: 1.5rem 1.375rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.segment-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,122,48,.1);
}
.segment-icon { font-size: 2rem; margin-bottom: 0.875rem; display: block; }
.segment-card h3 { font-size: 1rem; font-weight: 700; color: var(--tx-dark); margin-bottom: 0.375rem; }
.segment-card p  { font-size: 0.875rem; color: var(--tx-body); line-height: 1.6; }

@media (max-width: 900px) { .segments-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .segments-grid { grid-template-columns: 1fr; } }

/* Home map block */
.home-map { margin-top: 2.5rem; }
.home-map iframe { display: block; width: 100%; height: 380px; border-radius: 12px; border: 0; }
.home-map__info {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 2rem;
  margin-top: 1rem; padding: 1rem 1.25rem;
  background: #fff; border: 1.5px solid #deeade; border-radius: var(--radius);
}
.home-map__item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--tx-body);
}
.home-map__item svg { flex-shrink: 0; color: var(--green); }
.home-map__link {
  margin-left: auto; font-size: 0.875rem; font-weight: 600;
  color: var(--green); transition: color 0.18s;
}
.home-map__link:hover { color: #145c24; }
@media (max-width: 768px) {
  .home-map iframe { height: 260px; }
  .home-map__link { margin-left: 0; }
}

.faq-map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.faq-map iframe { width: 100%; min-height: 380px; border-radius: 12px; border: 0; }
.map-address {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--tx-body);
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .faq-map-layout { grid-template-columns: 1fr; }
  .faq-map iframe { min-height: 260px; }
}

.faq-list { max-width: 740px; }

.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}
.faq-col { min-width: 0; }

.faq-item { border-bottom: 1.5px solid #deeade; }
.faq-item:first-child { border-top: 1.5px solid #deeade; }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem; font-weight: 600; color: var(--tx-dark);
  cursor: pointer; list-style: none; gap: 1rem;
  transition: color 0.18s;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '';
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: #e6f4e9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a7a30' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform 0.28s var(--ease), background-color 0.18s;
}
.faq-item[open] .faq-question { color: var(--green); }
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}

.faq-answer { padding-bottom: 1.25rem; }
.faq-answer p { font-size: 0.9375rem; color: var(--tx-body); line-height: 1.72; }
.faq-answer a { color: var(--green); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }


/* ═══════════════════════════════════
   CTA BAND
═══════════════════════════════════ */

.cta-band {
  background: linear-gradient(120deg, #c07c10 0%, #e09520 50%, #b86f0d 100%);
  padding: 3.5rem 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='%23000' fill-opacity='.04'/%3E%3C/svg%3E");
}

.cta-band__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.cta-band__text {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800; color: var(--dark);
  letter-spacing: -0.018em; line-height: 1.2; max-width: 480px;
}

.cta-band__actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.875rem; flex-shrink: 0;
}


/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 4rem; margin-top: 2.75rem;
}

.contact-info h3 { font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 1.375rem; }

.contact-list { display: flex; flex-direction: column; gap: 1.125rem; margin-bottom: 1.75rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.875rem; }
.contact-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }

.contact-list strong {
  display: block; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--tx-muted); margin-bottom: 0.2rem;
}
.contact-list a,
.contact-list span,
.contact-list address { font-size: 0.9375rem; color: var(--tx-light); line-height: 1.6; }
.contact-list a:hover { color: var(--accent); }

.map-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 700; color: var(--accent);
  transition: gap 0.18s var(--ease);
}
.map-link:hover { gap: 0.625rem; }

/* Form */
.contact-form {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(46,204,90,.1);
  border-radius: var(--radius-l);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.125rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label {
  font-size: 0.6875rem; font-weight: 700; color: var(--tx-muted);
  text-transform: uppercase; letter-spacing: 0.09em;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(46,204,90,.14);
  border-radius: var(--radius-s);
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem; color: var(--tx-light);
  outline: none; width: 100%;
  transition: border-color 0.18s, background 0.18s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,158,132,.4); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(46,204,90,.05);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-privacy { font-size: 0.75rem; color: var(--tx-muted); text-align: center; line-height: 1.5; }


/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */

.site-footer { background: #040d05; color: var(--tx-muted); padding-top: 5rem; }

.site-footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(46,204,90,.07);
}

.site-footer__brand .brand { margin-bottom: 1rem; }

.site-footer__desc {
  font-size: 0.875rem; line-height: 1.7;
  color: #9dbfac; margin-bottom: 1.375rem;
}

.site-footer__social { display: flex; gap: 0.5rem; }
.site-footer__social a {
  font-size: 0.8125rem; font-weight: 600; color: var(--tx-muted);
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(46,204,90,.14); border-radius: 100px;
  transition: all 0.18s;
}
.site-footer__social a:hover {
  background: rgba(46,204,90,.08); border-color: var(--accent); color: var(--accent);
}

.site-footer__col h4,
.site-footer__nap h4 {
  font-size: 0.625rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,.8); margin-bottom: 1.125rem;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__col a {
  font-size: 0.875rem; color: #9dbfac; transition: color 0.18s;
}
.site-footer__col a:hover { color: var(--accent); }

.site-footer__nap address {
  font-size: 0.875rem; line-height: 1.72; margin-bottom: 0.75rem;
  color: #9dbfac;
}
.site-footer__nap a {
  display: block; font-size: 0.875rem; color: #9dbfac;
  margin-bottom: 0.25rem; transition: color 0.18s;
}
.site-footer__nap a:hover { color: var(--accent); }
.site-footer__hours { font-size: 0.8125rem; color: #7aab8e; margin-top: 0.5rem; }

.site-footer__bottom { background: rgba(0,0,0,.4); padding: 1.25rem 0; }
.site-footer__bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.site-footer__bottom p { font-size: 0.75rem; color: #6a9c7a; }


/* ═══════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════ */

.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 50; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.2);
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--ease);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.5), 0 4px 12px rgba(0,0,0,.25);
}
.wa-float::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0; }
}


/* ═══════════════════════════════════
   SEÇÃO INSTITUCIONAL
═══════════════════════════════════ */
.inst-section .section-title { max-width: 680px; }
.inst-section .inst-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--tx-body);
  max-width: 800px;
}

/* ═══════════════════════════════════
   POR QUE ESCOLHER — 4 cards
═══════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.why-icon {
  width: 48px; height: 48px;
  background: rgba(46,125,50,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--tx-dark); line-height: 1.3; }
.why-card p  { font-size: 0.9rem; color: var(--tx-body); line-height: 1.65; margin: 0; }
.why-cta { margin-top: 2.5rem; display: flex; justify-content: center; }

/* ═══════════════════════════════════
   BANNER OPERACIONAL
═══════════════════════════════════ */
.op-banner {
  background: var(--dark);
  padding: 3rem 0;
}
.op-banner__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.op-col {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(46,204,90,.12);
}
.op-col:last-child { border-right: none; }
.op-col__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.op-col__label svg { flex-shrink: 0; }
.op-col h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.op-col p  { font-size: 0.9rem; color: var(--tx-faint); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════
   RESPONSIVE — ≤ 1024px
═══════════════════════════════════ */

@media (max-width: 1024px) {
  .main-nav, .btn-tel { display: none; }
  .site-header__actions .btn--cta { display: none; }
  .hamburger { display: flex; }

  /* Hero → single column */
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 3.5rem;
    gap: 2.5rem;
  }
  .hero__visual { order: -1; }
  .hero__visual-inner { max-width: 100%; }
  .hero__visual .img-placeholder { height: 340px; }
  .hero__stat-card--top  { top: 1rem; left: 1rem; }
  .hero__stat-card--bottom { bottom: 1rem; right: 1rem; }

  .stats-section__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid rgba(46,204,90,.07); }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid rgba(46,204,90,.07); }

  .materials-grid { grid-template-columns: 1fr; }

  .diff-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .diff-layout__lead { position: static; }

  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__text { max-width: 100%; }
  .cta-band__actions { justify-content: center; }

  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .site-footer__brand { grid-column: 1 / -1; }
}


/* ═══════════════════════════════════
   RESPONSIVE — ≤ 768px
═══════════════════════════════════ */

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .op-banner__inner { grid-template-columns: 1fr; }
  .op-col { border-right: none; border-bottom: 1px solid rgba(46,204,90,.12); }
  .op-col:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero__visual .img-placeholder { height: 260px; }
  .hero__stat-card { display: none; }

  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__scroll-hint { display: none; }

  /* Timeline → vertical */
  .timeline { grid-template-columns: 1fr; gap: 0; padding-left: 3rem; margin-top: 2rem; }
  .timeline__connector {
    top: 35px; left: 34px; right: auto; bottom: 35px;
    width: 2px; height: auto;
    background: linear-gradient(to bottom, var(--accent), rgba(46,204,90,.15));
  }
  .timeline__step {
    flex-direction: row; text-align: left; align-items: flex-start;
    padding: 1rem 0; border-bottom: 1px solid rgba(46,204,90,.06);
  }
  .timeline__step:last-child { border-bottom: none; }
  .timeline__dot { width: 58px; height: 58px; flex-shrink: 0; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }

  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__bottom .container { flex-direction: column; text-align: center; }
}


/* ═══════════════════════════════════
   RESPONSIVE — ≤ 480px
═══════════════════════════════════ */

@media (max-width: 480px) {
  .stats-section__grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.5rem 1rem; }
  .city-pill { font-size: 0.875rem; padding: 0.5rem 1rem; }
  .city-pills { gap: 0.5rem; }
  .contact-form { padding: 1.125rem; }
  .hero__trust { gap: 0.625rem 1.125rem; }
}


/* ═══════════════════════════════════
   INNER PAGES
═══════════════════════════════════ */

/* Page Hero (inner pages — sem coluna visual) */
.page-hero {
  background: var(--dark);
  padding: calc(var(--header-h) + 4rem) 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(26,122,48,.18) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 5% 90%,  rgba(46,204,90,.08) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative; z-index: 1;
  max-width: 780px;
}
.page-hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(46,204,90,.1); border: 1px solid rgba(46,204,90,.25);
  padding: 0.35rem 0.875rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-hero__title span { color: var(--accent); }
.page-hero__desc {
  font-size: 1.0625rem; color: var(--tx-faint);
  line-height: 1.72; max-width: 580px; margin-bottom: 2rem;
}
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 0.875rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.375rem;
  font-size: 0.8125rem; color: var(--tx-muted); margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--tx-muted); transition: color 0.18s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(122,158,132,.4); }

/* Trust Bar */
.trust-bar {
  background: rgba(46,204,90,.06);
  border-top: 1px solid rgba(46,204,90,.12);
  border-bottom: 1px solid rgba(46,204,90,.08);
  padding: 1.25rem 0;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2.5rem;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.875rem; font-weight: 600; color: var(--tx-dark);
}
.trust-bar__item svg { color: var(--accent); flex-shrink: 0; }
.trust-bar__item strong { color: var(--accent); font-size: 1.0625rem; font-weight: 800; }

/* City map block */
.city-map-block { padding: 2.5rem 0 0; background: var(--off-white); }
.city-map-block iframe { display: block; width: 100%; height: 360px; border-radius: 12px; border: 0; }
@media (max-width: 768px) { .city-map-block iframe { height: 240px; } }

/* Pain Section */
.pain-section { padding: 4rem 0; background: var(--off-white); }
.pain-section .container { max-width: 860px; }
.pain-intro {
  font-size: 1.125rem; font-weight: 600; color: var(--tx-dark);
  line-height: 1.65; margin-bottom: 1.5rem;
}
.pain-list {
  display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem;
}
.pain-list li {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9375rem; color: var(--tx-body);
}
.pain-list li::before {
  content: '✓';
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; margin-top: 1px;
}

/* Testimonials */
.testimonials { padding: 5rem 0; background: var(--dark); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.75rem;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(46,204,90,.1);
  border-radius: var(--radius-l);
  padding: 1.625rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.testimonial-card:hover {
  border-color: rgba(46,204,90,.25);
  transform: translateY(-3px);
}
.stars {
  display: flex; gap: 3px;
  color: #f5c542; font-size: 0.875rem;
}
.testimonial-text {
  font-size: 0.9375rem; color: #b8d4c2; line-height: 1.7;
  font-style: italic; flex: 1;
}
.testimonial-author {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(46,204,90,.08);
}
.testimonial-author strong { font-size: 0.9375rem; font-weight: 700; color: var(--tx-light); }
.testimonial-author span { font-size: 0.8125rem; color: #7aab8e; }

/* Neighborhoods */
.areas-section { padding: 4.5rem 0; background: var(--off-white); }
.nbhd-grid {
  display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.75rem;
}
.nbhd-pill {
  padding: 0.5rem 1.125rem;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 100px; font-size: 0.875rem; font-weight: 500; color: var(--tx-dark);
  transition: all 0.18s var(--ease);
}
.nbhd-pill:hover {
  background: var(--green); color: #fff; border-color: var(--green);
  transform: translateY(-1px);
}

/* Other Cities links */
.cities-section { padding: 4rem 0; background: var(--dark); }
.cities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.city-link-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.375rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(46,204,90,.1);
  border-radius: var(--radius); color: var(--tx-light);
  font-size: 0.9375rem; font-weight: 600;
  transition: all 0.2s var(--ease);
}
.city-link-card:hover {
  background: rgba(46,204,90,.08);
  border-color: rgba(46,204,90,.3);
  color: var(--accent); transform: translateX(4px);
}
.city-link-card svg { flex-shrink: 0; color: var(--accent); }

/* How-to steps (simplified for inner pages) */
.steps-simple {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.step-card {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(46,204,90,.1);
  border-radius: var(--radius-l);
  padding: 1.625rem;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green) 100%);
  font-family: var(--font-head); font-size: 1.125rem; font-weight: 800; color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(26,122,48,.4);
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; }
.step-card p  { font-size: 0.875rem; color: var(--tx-muted); line-height: 1.6; }

/* Simple contact form section for inner pages */
.form-section { padding: 5rem 0; background: var(--dark); }
.form-section .section-title { color: #fff; }
.form-section__layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem; margin-top: 2.5rem; align-items: start;
}
.form-section__info { color: var(--tx-faint); }
.form-section__info h3 {
  font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.625rem;
}
.form-section__info p {
  font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.5rem;
}
.quick-contact { display: flex; flex-direction: column; gap: 0.875rem; }
.quick-contact a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(46,204,90,.12);
  border-radius: var(--radius); color: var(--tx-light); font-weight: 600;
  font-size: 0.9375rem; transition: all 0.18s var(--ease);
}
.quick-contact a:hover {
  background: rgba(46,204,90,.08); border-color: rgba(46,204,90,.3); color: var(--accent);
}
.quick-contact a svg { color: var(--accent); flex-shrink: 0; }

/* Rating widget */
.rating-widget {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(46,204,90,.12); border-radius: var(--radius);
  margin-top: 1.25rem;
}
.rating-widget .stars { font-size: 1rem; }
.rating-widget span { font-size: 0.875rem; color: var(--tx-muted); }
.rating-widget strong { color: var(--accent); font-weight: 800; }

/* Responsive inner pages */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid       { grid-template-columns: 1fr 1fr; }
  .steps-simple      { grid-template-columns: 1fr 1fr; }
  .form-section__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .trust-bar__inner  { gap: 1.5rem; justify-content: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cities-grid       { grid-template-columns: 1fr; }
  .steps-simple      { grid-template-columns: 1fr; }
  .faq-cols          { grid-template-columns: 1fr; }
  .page-hero__cta    { flex-direction: column; }
  .page-hero__cta .btn { justify-content: center; }
}

/* ═══════════════════════════════════
   IMAGE PLACEHOLDERS (butantã validation)
═══════════════════════════════════ */

.img-placeholder {
  background: #eef4f0;
  border: 2px dashed #adc9b8;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 2.5rem 2rem;
  text-align: center;
  min-height: 280px;
  color: #7aab8e;
}
.img-placeholder svg { opacity: 0.45; }
.img-placeholder-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #5a8c6a;
}
.img-placeholder-hint {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #9dbfac;
}
.img-placeholder--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.35);
}
.img-placeholder--dark .img-placeholder-label { color: rgba(255,255,255,0.5); }
.img-placeholder--dark .img-placeholder-hint  { color: rgba(255,255,255,0.28); }
.img-placeholder--tall  { min-height: 400px; }
.img-placeholder--wide  { min-height: 300px; width: 100%; }

/* Pain section: 2-column when image present */
.pain-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

/* Image placeholder strip between sections */
.img-placeholder-strip {
  padding: 0 0 2.5rem;
}
.img-placeholder-strip .container { max-width: var(--container); }

/* FAQ + image side layout */
.faq-image-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* Real images replacing placeholders */
.city-strip-img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
}
.city-faq-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 14px;
}

@media (max-width: 1024px) {
  .pain-layout        { grid-template-columns: 1fr; }
  .faq-image-layout   { grid-template-columns: 1fr; }
  .pain-layout .img-placeholder,
  .faq-image-layout .img-placeholder { min-height: 220px; }
  .city-faq-img       { min-height: 260px; height: auto; }
}
@media (max-width: 768px) {
  .img-placeholder--tall { min-height: 200px; }
  .city-strip-img     { height: 220px; }
  .city-faq-img       { min-height: 200px; }
}


/* ═══════════════════════════════════════════
   PÁGINAS LEGAIS (Termos / Privacidade)
═══════════════════════════════════════════ */

.legal-body {
  max-width: 780px;
  margin: 0 auto;
}
.legal-body h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tx-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx-dark);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-body p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--tx-body);
  margin-bottom: 0.875rem;
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-body ul li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--tx-body);
}
.legal-body a { color: var(--green); text-decoration: underline; }
.legal-body a:hover { color: var(--green-mid); }

.legal-related {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(26,122,48,.06);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
}
.legal-related p { margin: 0; font-size: 0.9375rem; color: var(--tx-body); }

/* Footer — links legais */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: var(--tx-faint);
  font-size: 0.8125rem;
  transition: color 0.18s;
}
.footer-legal-links a:hover { color: var(--accent); }
.footer-legal-links span { color: var(--tx-faint); font-size: 0.8125rem; }


/* ═══════════════════════════════════════════
   CONTATO PAGE — canais de contato
═══════════════════════════════════════════ */

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.contact-ch-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--tx-dark);
}
.contact-ch-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(46,204,90,.1);
}
.contact-ch-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  grid-column: 1 / -1;
}
.contact-ch-card--featured:hover {
  border-color: var(--accent);
}
.contact-ch-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(46,204,90,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-ch-card--featured .contact-ch-icon {
  background: rgba(46,204,90,.15);
}
.contact-ch-body { flex: 1; }
.contact-ch-body h2 {
  font-family: var(--font-head);
  font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem;
}
.contact-ch-body p {
  font-size: 0.875rem; line-height: 1.5;
  color: var(--tx-body); margin-bottom: 0.375rem;
}
.contact-ch-card--featured .contact-ch-body p { color: var(--tx-light); }
.contact-ch-value {
  font-size: 0.9375rem; font-weight: 700; color: var(--accent);
}
.contact-ch-arrow { flex-shrink: 0; color: var(--tx-muted); transition: transform 0.2s; }
.contact-ch-card:hover .contact-ch-arrow { transform: translateX(4px); }
.contact-ch-card--featured .contact-ch-arrow { color: var(--tx-faint); }

@media (max-width: 768px) {
  .contact-channels-grid { grid-template-columns: 1fr; }
  .contact-ch-card--featured { grid-column: 1; }
}


/* ═══════════════════════════════════════════
   QUEM SOMOS PAGE
═══════════════════════════════════════════ */

.page-hero-qs {
  background: var(--dark);
  padding: 5rem 0 4rem;
}

.breadcrumb-qs ol {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; margin-bottom: 1.75rem;
}
.breadcrumb-qs li:not(:last-child)::after {
  content: '/'; margin-left: 0.5rem; color: var(--tx-faint);
}
.breadcrumb-qs a { color: var(--tx-muted); transition: color 0.18s; }
.breadcrumb-qs a:hover { color: var(--accent); }
.breadcrumb-qs [aria-current] { color: var(--tx-faint); }

.qs-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.qs-hero-accent { color: var(--accent); }
.qs-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--tx-light);
  max-width: 660px;
}

/* Fundador */
.founder-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}
.founder-layout--full {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.founder-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.375rem;
}
.founder-name {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--tx-dark);
  margin-bottom: 1rem;
}
.founder-bio {
  font-size: 1rem; line-height: 1.75;
  color: var(--tx-body); margin-bottom: 0.875rem;
}
.founder-contact {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem;
}

/* MVV */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.mvv-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.875rem;
}
.mvv-card h3 {
  font-family: var(--font-head);
  font-size: 1.125rem; font-weight: 700; color: var(--tx-dark);
}
.mvv-card p { font-size: 0.9375rem; line-height: 1.7; color: var(--tx-body); }
.mvv-icon {
  width: 52px; height: 52px;
  background: rgba(26,122,48,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.mvv-values-list {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.mvv-values-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9375rem; color: var(--tx-body);
}
.mvv-values-list svg { color: var(--green); flex-shrink: 0; }

/* Meio ambiente */
.env-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.env-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.env-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--tx-dark); }
.env-card p  { font-size: 0.875rem; line-height: 1.7; color: var(--tx-body); }
.env-icon {
  width: 52px; height: 52px;
  background: rgba(26,122,48,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}

/* Dados da empresa */
.company-info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 2.5rem; align-items: start;
}
.company-nap .contact-list strong { color: var(--tx-muted); }
.company-nap .contact-list a,
.company-nap .contact-list span,
.company-nap .contact-list address { color: var(--tx-body); }
.company-nap .contact-list a:hover { color: var(--green); }

/* Responsive — quem somos */
@media (max-width: 1024px) {
  .env-grid            { grid-template-columns: repeat(2, 1fr); }
  .mvv-grid            { grid-template-columns: 1fr; }
  .founder-layout      { grid-template-columns: 1fr; }
  .company-info-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .qs-hero-title { font-size: 1.875rem; }
  .env-grid      { grid-template-columns: 1fr; }
  .founder-contact .btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════
   PÁGINA 404
═══════════════════════════════════════════ */

.not-found-section {
  background: var(--dark);
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.not-found-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(46,204,90,.12) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 5%  90%, rgba(26,122,48,.08) 0%, transparent 55%);
  pointer-events: none;
}

.not-found__inner {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.not-found__number {
  font-family: var(--font-head);
  font-size: clamp(6rem, 18vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: .12;
  margin-bottom: -1rem;
  letter-spacing: -0.04em;
}

.not-found__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(46,204,90,.1); border: 1px solid rgba(46,204,90,.25);
  padding: 0.35rem 0.875rem; border-radius: 100px;
  margin-bottom: 1.25rem;
}

.not-found__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.15;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.not-found__title span { color: var(--accent); }

.not-found__desc {
  font-size: 1.0625rem;
  color: var(--tx-faint);
  line-height: 1.72;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.not-found__cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.not-found__links {
  display: flex; flex-wrap: wrap; gap: 0.625rem;
  justify-content: center;
}

@media (max-width: 600px) {
  .not-found__cta { flex-direction: column; align-items: stretch; }
  .not-found__cta .btn { justify-content: center; }
}


/* ═══════════════════════════════════════════
   PÁGINA OBRIGADO
═══════════════════════════════════════════ */

.obrigado-section {
  padding: 5rem 0 6rem;
  background: var(--off-white);
  min-height: calc(100vh - var(--header-h) - 200px);
}

.obrigado-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.obrigado-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--accent) 100%);
  color: #fff;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(46,204,90,.3);
}

.obrigado-inner h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--tx-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.obrigado-lead {
  font-size: 1.125rem;
  color: var(--tx-body);
  line-height: 1.7;
  margin-bottom: 0.625rem;
}

.obrigado-sub {
  font-size: 0.9375rem;
  color: var(--tx-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.obrigado-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.obrigado-next {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-l);
  padding: 2.5rem 2rem;
  text-align: left;
}

.obrigado-next h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tx-dark);
  margin-bottom: 1.75rem;
  text-align: center;
}

.obrigado-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.obrigado-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.obrigado-steps .step-num {
  flex-shrink: 0;
  margin-bottom: 0;
}

.obrigado-steps li strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tx-dark);
  margin-bottom: 0.25rem;
}

.obrigado-steps li p {
  font-size: 0.875rem;
  color: var(--tx-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .obrigado-ctas { flex-direction: column; align-items: stretch; }
  .obrigado-ctas .btn { justify-content: center; }
  .obrigado-next { padding: 1.75rem 1.25rem; }
}


/* ═══════════════════════════════════════════
   LGPD CHECKBOX NOS FORMULÁRIOS
═══════════════════════════════════════════ */

.form-group--lgpd {
  margin-bottom: 1rem;
}

.lgpd-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--tx-muted);
  line-height: 1.5;
  cursor: pointer;
}

.lgpd-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 1px;
  accent-color: var(--green);
  cursor: pointer;
}

.lgpd-label a {
  color: var(--green);
  text-decoration: underline;
}

.lgpd-label a:hover { color: var(--green-mid); }
