/* ============================================================
   Walber Pydd Advogado — Direito de Trânsito
   Design system: verde floresta (identidade da logo) + marfim
   editorial + serifa clássica (Playfair Display) + sans humanista
   (Work Sans). Um único universo visual, luz e sofisticado.
   ============================================================ */

:root {
  /* Cor extraída da própria logo do cliente (#002918) */
  --forest-900: #0a2419;
  --forest-800: #0f3325;
  --forest-700: #1a4433;
  --forest-600: #2a5b45;
  --forest-500: #3f7259;

  --ivory: #f8f5ee;
  --ivory-deep: #efe8d8;
  --paper: #fcfaf5;
  --white: #ffffff;

  --bronze: #a9803f;
  --bronze-light: #cba667;
  --bronze-dark: #7d5e2c;

  --ink: #16211a;
  --ink-soft: #4a554c;
  --ink-faint: #7c887e;

  --line: rgba(10, 36, 25, 0.14);
  --line-soft: rgba(10, 36, 25, 0.08);

  --shadow-sm: 0 1px 2px rgba(10, 36, 25, 0.06), 0 1px 1px rgba(10, 36, 25, 0.04);
  --shadow-md: 0 12px 32px -12px rgba(10, 36, 25, 0.22);
  --shadow-lg: 0 24px 60px -20px rgba(10, 36, 25, 0.28);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --container: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body { margin: 0; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--bronze-light); color: var(--forest-900); }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--forest-900);
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-dark);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--bronze);
  flex: none;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 6vw, 64px);
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-top: 14px; }
.section-head p { margin-top: 18px; font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

section { position: relative; padding-block: clamp(64px, 10vw, 120px); }
.section-alt { background: var(--ivory-deep); }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--forest-900);
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--forest-700); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-bronze { background: var(--bronze); color: var(--forest-900); }
.btn-bronze:hover { background: var(--bronze-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--forest-900);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--forest-900); background: rgba(10, 36, 25, 0.04); }
.btn-ghost { color: var(--forest-900); font-weight: 600; border-bottom: 1px solid var(--bronze); padding: 4px 0; border-radius: 0; }
.btn-ghost:hover { color: var(--bronze-dark); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 22px;
  transition: padding 0.35s var(--ease), background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled {
  padding-block: 13px;
  background: rgba(248, 245, 238, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line-soft);
}

.brand { display: flex; align-items: center; flex: none; }
.brand-logo {
  height: 52px;
  width: auto;
  transition: height 0.35s var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 42px; }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 34px); }
.nav-desktop a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
  transition: color 0.25s var(--ease);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--bronze);
  transition: right 0.3s var(--ease);
}
.nav-desktop a:hover { color: var(--forest-900); }
.nav-desktop a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.menu-toggle span { width: 16px; height: 1.5px; background: var(--forest-900); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 100px var(--gutter) 40px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.nav-mobile.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--line); }
.nav-mobile a {
  display: block;
  padding: 18px 2px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--forest-900);
}
.nav-mobile .header-cta { display: inline-flex; margin-top: 32px; }
.nav-mobile .header-cta.btn-primary { color: var(--ivory); }

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block-start: clamp(104px, 11vw, 136px);
  padding-block-end: clamp(70px, 10vw, 110px);
  overflow: hidden;
}
.hero .container {
  display: grid;
  gap: clamp(40px, 6vw, 60px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.01em;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--forest-700);
  font-weight: 500;
  line-height: 1.55;
  max-width: 54ch;
}
.hero-support {
  margin-top: 14px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 52ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-trust {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.hero-trust span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--forest-800);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bronze);
  flex: none;
}

.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,36,25,0.34) 100%);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--bronze);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero-caption {
  position: absolute;
  left: 22px; bottom: 20px;
  color: var(--ivory);
  z-index: 2;
}
.hero-caption strong { display: block; font-family: var(--font-display); font-size: 18px; }
.hero-caption span { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(248,245,238,0.78); }

@media (min-width: 900px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; }
}

/* ---------- Problema (chips) ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.problem-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--forest-800);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.problem-chip:hover { border-color: var(--bronze); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.problem-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bronze); flex: none; }
.problem-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.problem-foot p { font-size: 15.5px; color: var(--ink-soft); max-width: 46ch; line-height: 1.6; }

@media (min-width: 640px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .problem-grid { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Serviços ---------- */
.service-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--paper);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background-color .35s var(--ease);
}
.service-card:hover { background: var(--white); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest-900);
  color: var(--bronze-light);
  flex: none;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 20px; color: var(--forest-900); }
.service-card p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }

@media (min-width: 700px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) {
  .service-grid { grid-template-columns: repeat(6, 1fr); }
  .service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 2; }
  .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
}

/* ---------- Diferenciais ---------- */
.diff-section { background: var(--forest-900); color: var(--ivory); }
.diff-section .eyebrow { color: var(--bronze-light); }
.diff-section .eyebrow::before { background: var(--bronze-light); }
.diff-section .section-head h2 { color: var(--ivory); }
.diff-section .section-head p { color: rgba(248,245,238,0.72); }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(248,245,238,0.14);
  border: 1px solid rgba(248,245,238,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.diff-item { background: var(--forest-900); padding: clamp(26px, 3vw, 36px); min-width: 0; }
.diff-item .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  color: var(--bronze-light);
  line-height: 1;
  display: block;
}
.diff-item .num small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  color: rgba(248,245,238,0.5);
}
.diff-item h3 { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--ivory); margin-top: 14px; }
.diff-item p { margin-top: 10px; font-size: 14.5px; line-height: 1.7; color: rgba(248,245,238,0.66); }

@media (min-width: 700px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .diff-grid { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Sobre ---------- */
.about .container {
  display: grid;
  gap: clamp(36px, 6vw, 64px);
  align-items: center;
}
.about-media { position: relative; }
.about-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-frame img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.about-copy .eyebrow { margin-bottom: 18px; }
.about-copy h2 { font-size: clamp(26px, 3.2vw, 36px); }
.about-kicker { display: block; margin-top: 10px; font-size: 15px; color: var(--bronze-dark); font-weight: 600; }
.about-copy p { margin-top: 20px; font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.about-copy p + p { margin-top: 16px; }
.about-signoff { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.about-signoff strong { font-family: var(--font-display); font-size: 19px; color: var(--forest-900); display: block; }
.about-signoff span { font-size: 13px; color: var(--ink-faint); letter-spacing: 0.04em; text-transform: uppercase; }

@media (min-width: 900px) { .about .container { grid-template-columns: 0.85fr 1.15fr; } .about.reverse .container { grid-template-columns: 1.15fr 0.85fr; } .about.reverse .about-media { order: 2; } }

/* ---------- Como funciona: linha do tempo animada ---------- */
.timeline {
  display: grid;
  gap: clamp(40px, 6vw, 32px);
  margin-bottom: 48px;
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 0; bottom: 0; left: 26px;
  width: 2px;
  background: var(--line);
  overflow: hidden;
}
.timeline-line-fill {
  position: absolute;
  inset: 0;
  background: var(--bronze);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.3s var(--ease) 0.15s;
}
html.js-ready .timeline.is-visible .timeline-line-fill { transform: scaleY(1); }
html:not(.js-ready) .timeline-line-fill { transform: scaleY(1); }

.step { position: relative; padding-left: 76px; min-height: 54px; }
.step-node {
  position: absolute;
  top: 0; left: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--forest-900);
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
html.js-ready .timeline.is-visible .step:nth-child(2) .step-node { transition-delay: 0.55s; }
html.js-ready .timeline.is-visible .step:nth-child(3) .step-node { transition-delay: 0.95s; }
html.js-ready .timeline.is-visible .step:nth-child(4) .step-node { transition-delay: 1.35s; }
html.js-ready .timeline.is-visible .step-node,
html:not(.js-ready) .step-node {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--forest-900);
  transform: scale(1.06);
}
.step h3 { font-size: 19px; color: var(--forest-900); padding-top: 13px; }
.step p { margin-top: 8px; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.step-cta { text-align: center; }

@media (min-width: 780px) {
  .timeline { grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 48px); padding-top: 66px; }
  .timeline-line { top: 27px; left: 8%; right: 8%; bottom: auto; height: 2px; width: auto; }
  .timeline-line-fill { transform: scaleX(0); transform-origin: left; }
  html.js-ready .timeline.is-visible .timeline-line-fill { transform: scaleX(1); }
  html:not(.js-ready) .timeline-line-fill { transform: scaleX(1); }
  .step { padding-left: 0; text-align: center; }
  .step-node { position: static; margin: 0 auto; }
}

/* ---------- Atendimento geográfico ---------- */
.geo .container { display: grid; gap: clamp(32px, 5vw, 56px); }
.geo-copy p { font-size: 16px; line-height: 1.8; color: var(--ink-soft); margin-top: 18px; max-width: 62ch; }
.geo-media { position: relative; }
.geo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.geo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.geo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(10,36,25,0.42) 0%, transparent 45%);
}
.geo-media::before {
  content: "";
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--bronze);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.geo-media-caption {
  position: absolute;
  left: 22px; bottom: 20px;
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 600;
}
.geo-media-caption svg { width: 16px; height: 16px; color: var(--bronze-light); flex: none; }
.geo-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.geo-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--forest-800);
}
.geo-badge svg { width: 16px; height: 16px; color: var(--bronze); flex: none; }

.geo-map {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: clamp(24px, 3vw, 34px);
}
.geo-map-title { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; }
.geo-regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
@media (min-width: 780px) { .geo-regions { grid-template-columns: repeat(4, 1fr); } }
.geo-regions li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 15px; color: var(--forest-800); font-weight: 500;
  padding-block: 8px;
  border-bottom: 1px dashed var(--line);
}
.geo-regions li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--bronze); flex: none; transform: translateY(-2px); }
.geo-regions .region-group { grid-column: 1 / -1; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-dark); border: none; padding-top: 18px; }
.geo-regions .region-group:first-child { padding-top: 4px; }

@media (min-width: 780px) { .geo .container { grid-template-columns: 1fr 1fr; align-items: center; } .geo-map { grid-column: 1 / -1; } }

/* ---------- Conteúdo ---------- */
.content-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.content-tags span {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 600;
  color: var(--forest-700);
}
.content-soon {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background: var(--forest-900);
  border-radius: var(--radius-lg);
  color: var(--ivory);
}
.content-soon h3 { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 500; color: var(--ivory); max-width: 34ch; }
.content-soon p { margin-top: 10px; font-size: 15px; color: rgba(248,245,238,0.7); max-width: 50ch; line-height: 1.6; }
@media (min-width: 780px) { .content-soon { grid-template-columns: 1fr auto; } }

/* ---------- Avaliações ---------- */
.reviews-card {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.google-mark { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.google-mark svg { width: 26px; height: 26px; }
.google-mark span { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.reviews-card p { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }
.reviews-card .btn { margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 19px);
  color: var(--forest-900);
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--forest-900);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.faq-item summary .plus::before { width: 11px; height: 1.4px; }
.faq-item summary .plus::after { width: 1.4px; height: 11px; }
.faq-item[open] summary .plus { border-color: var(--bronze); transform: rotate(180deg); }
.faq-item[open] summary .plus::after { opacity: 0; }
.faq-item .faq-body {
  padding: 0 4px 26px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 66ch;
}

/* ---------- CTA final ---------- */
.cta-final { background: var(--forest-900); color: var(--ivory); overflow: hidden; position: relative; }
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 85% 15%, rgba(169,128,63,0.16), transparent 70%);
  pointer-events: none;
}
.cta-final .container { position: relative; display: grid; gap: clamp(40px, 6vw, 72px); }
.cta-copy h2 { color: var(--ivory); font-size: clamp(28px, 3.6vw, 42px); }
.cta-copy p { margin-top: 18px; font-size: 17px; line-height: 1.7; color: rgba(248,245,238,0.72); max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 32px; }
.cta-phone { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 600; color: var(--ivory); }
.cta-phone svg { width: 20px; height: 20px; color: var(--bronze-light); }

.cta-form {
  background: var(--ivory);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 38px);
  box-shadow: var(--shadow-lg);
}
.cta-form h3 { font-family: var(--font-display); font-size: 22px; color: var(--forest-900); font-weight: 600; }
.cta-form .form-sub { margin-top: 6px; font-size: 14px; color: var(--ink-faint); }
.field { margin-top: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(26, 68, 51, 0.14);
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin-top: 16px; font-size: 12.5px; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.form-note svg { width: 14px; height: 14px; flex: none; color: var(--bronze-dark); }
.cta-form .btn { margin-top: 20px; }
.form-status { margin-top: 14px; font-size: 13.5px; font-weight: 600; display: none; }
.form-status.is-visible { display: block; }
.form-status.success { color: var(--forest-700); }
.form-status.error { color: #9a4a2c; }

@media (min-width: 980px) { .cta-final .container { grid-template-columns: 1fr 0.92fr; align-items: start; } }
@media (max-width: 460px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ivory-deep); border-top: 1px solid var(--line); }
.footer-top { padding-block: clamp(48px, 6vw, 72px); display: grid; gap: 40px; }
.footer-brand img { height: 84px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; color: var(--ink-soft); max-width: 32ch; line-height: 1.6; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-dark); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col address { font-size: 14.5px; color: var(--ink-soft); font-style: normal; line-height: 1.6; }
.footer-col a:hover { color: var(--forest-900); }
.footer-bottom {
  padding-block: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-faint);
}
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--forest-900); }
.footer-disclaimer { font-size: 12.5px; color: var(--ink-faint); line-height: 1.7; max-width: 90ch; padding-block: 20px; border-top: 1px dashed var(--line); }

@media (min-width: 780px) { .footer-top { grid-template-columns: 1.3fr repeat(3, 0.9fr); } }

/* ---------- Floating mobile CTA ---------- */
.floating-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  transform: translateY(120%);
  transition: transform .4s var(--ease);
}
.floating-cta.is-visible { transform: translateY(0); }
.floating-cta a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px;
  background: var(--forest-900);
  color: var(--ivory);
  border-radius: 999px;
  font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.floating-cta svg { width: 20px; height: 20px; color: var(--bronze-light); }
@media (min-width: 900px) { .floating-cta { display: none; } }

.floating-whatsapp {
  display: none;
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 60px; height: 60px;
  align-items: center; justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 1px 6px 24px rgba(7,94,84,0.24);
  transition: transform .2s ease;
  animation: floating-whatsapp-in .5s cubic-bezier(0.18,0.89,0.32,1.28) both;
}
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp svg { width: 36px; height: 36px; color: #fff; }
@keyframes floating-whatsapp-in {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
@media (min-width: 900px) { .floating-whatsapp { display: flex; } }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
html.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
html.js-ready .reveal-stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.js-ready .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
html.js-ready .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
html.js-ready .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
html.js-ready .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
html.js-ready .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
html.js-ready .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.26s; }
html.js-ready .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.32s; }
html.js-ready .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.38s; }
html.js-ready .reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.44s; }
html.js-ready .reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.5s; }
html.js-ready .reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  html.js-ready .reveal, html.js-ready .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Legal pages ---------- */
.legal-page { padding-block-start: clamp(140px, 18vw, 180px); padding-block-end: 80px; }
.legal-page .container { max-width: 780px; }
.legal-page h1 { font-size: clamp(28px, 4vw, 38px); }
.legal-page .updated { margin-top: 10px; font-size: 13px; color: var(--ink-faint); }
.legal-page h2 { font-size: 20px; margin-top: 40px; margin-bottom: 12px; }
.legal-page p, .legal-page li { font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); }
.legal-page ul { margin-top: 12px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-page p + p { margin-top: 14px; }
.legal-page li { padding-left: 18px; position: relative; }
.legal-page li::before { content: ""; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); }
.legal-page a { color: var(--forest-800); text-decoration: underline; text-underline-offset: 3px; }
.legal-back { margin-top: 48px; }
