/* =========================================================
   ZANQUETTA CONSULTORIA — Folha de estilo (redesign 2026)
   Cores da marca (ver 01_Identidade_Visual/Paleta_e_Fontes/GUIA_DE_MARCA.md)
   Para usar a fonte oficial TT Chocolates: ver README.md
   ========================================================= */

:root {
  --verde-floresta: #06281E;
  --verde-escuro:   #0A3B2D;
  --verde-medio:    #2E7D5B;
  --verde-claro:    #4E9E78;
  --verde-neon:     #7BC89E;
  --creme:          #F7F6F1;
  --salvia:         #DCE5DE;
  --salvia-2:       #EAF0EB;
  --quase-preto:    #16211C;
  --cinza:          #55655D;
  --branco:         #ffffff;

  --maxw: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 48px -24px rgba(6, 40, 30, .35);
  --shadow-sm: 0 10px 28px -16px rgba(6, 40, 30, .4);
  --shadow-lg: 0 40px 80px -32px rgba(6, 40, 30, .5);
  --t: .3s cubic-bezier(.4, 0, .2, 1);

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  color: var(--quase-preto);
  background: var(--creme);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; color: var(--verde-escuro); }
::selection { background: var(--verde-medio); color: #fff; }

.container { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }

/* ---------- Barra de progresso de leitura ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 100%; height: 3px; pointer-events: none;
  transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--verde-medio), var(--verde-neon));
}

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; overflow: hidden;
  transition: transform var(--t), background var(--t), box-shadow var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
/* brilho que atravessa o botão no hover */
.btn::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .55s ease;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.03rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--verde-escuro); color: var(--creme); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--verde-medio); box-shadow: 0 16px 36px -14px rgba(46,125,91,.6); }
.btn--ghost { background: transparent; color: var(--verde-escuro); border-color: var(--verde-escuro); }
.btn--ghost:hover { background: var(--verde-escuro); color: var(--creme); }
.btn--whatsapp { background: var(--verde-medio); color: #fff; box-shadow: var(--shadow-sm); }
.btn--whatsapp:hover { background: var(--verde-claro); box-shadow: 0 16px 36px -14px rgba(46,125,91,.65); }
.btn--light { background: var(--creme); color: var(--verde-escuro); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: #fff; }
.btn--glass {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.35); backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }
.btn .ico { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Marca ---------- */
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__logo { height: 46px; width: auto; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 246, 241, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.scrolled {
  background: rgba(247, 246, 241, .95);
  border-color: var(--salvia);
  box-shadow: 0 8px 24px -20px rgba(6,40,30,.6);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; }
.nav { display: flex; gap: 1.7rem; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  color: var(--verde-escuro); position: relative; padding: 5px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--verde-medio), var(--verde-neon));
  border-radius: 2px; transform: scaleX(0); transform-origin: right; transition: transform var(--t);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__cta { padding: .62rem 1.25rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--verde-escuro); border-radius: 2px; transition: var(--t); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO — imersivo, verde-floresta
   ========================================================= */
.hero {
  --mx: 0px; --my: 0px; --parY: 0px;
  position: relative; overflow: hidden;
  color: var(--creme);
  background:
    radial-gradient(90% 120% at 85% -10%, rgba(78,158,120,.4) 0%, transparent 55%),
    radial-gradient(70% 90% at 0% 110%, rgba(46,125,91,.35) 0%, transparent 60%),
    linear-gradient(160deg, var(--verde-escuro) 0%, var(--verde-floresta) 70%);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4.5rem, 9vw, 7.5rem);
}
/* malha sutil de pontos */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: radial-gradient(90% 100% at 70% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(90% 100% at 70% 20%, #000 0%, transparent 75%);
}
/* aura de cor viva */
.hero::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  top: -35%; right: -18%; width: 68vw; height: 68vw; max-width: 860px; max-height: 860px;
  background:
    radial-gradient(circle at 35% 35%, rgba(123,200,158,.32), transparent 58%),
    radial-gradient(circle at 68% 68%, rgba(46,125,91,.4), transparent 60%);
  filter: blur(20px);
  animation: blobFloat 18s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  50%  { transform: translate(-5%, 7%) scale(1.1) rotate(4deg); }
  100% { transform: translate(4%, -5%) scale(1.05) rotate(-3deg); }
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__content > * { animation: heroIn .9s cubic-bezier(.16,.84,.44,1) both; }
.hero__eyebrow  { animation-delay: .05s; }
.hero__title    { animation-delay: .15s; }
.hero__subtitle { animation-delay: .28s; }
.hero__actions  { animation-delay: .4s; }
.hero__chips    { animation-delay: .52s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: none; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .76rem; letter-spacing: .16em;
  color: var(--verde-neon);
  background: rgba(123,200,158,.12); border: 1px solid rgba(123,200,158,.3);
  padding: .45rem 1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero__eyebrow .pin { width: 15px; height: 15px; flex-shrink: 0; }
.hero__title {
  font-size: clamp(2.4rem, 5.6vw, 4.1rem); font-weight: 800;
  letter-spacing: -.02em; color: #fff;
}
.hero__title .hl {
  position: relative; color: var(--verde-neon); white-space: nowrap;
}
.hero__title .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: .14em;
  background: linear-gradient(90deg, var(--verde-medio), var(--verde-neon));
  border-radius: 4px; opacity: .55; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  animation: hlIn .7s .9s cubic-bezier(.16,.84,.44,1) forwards;
}
@keyframes hlIn { to { transform: scaleX(1); } }
.hero__subtitle {
  font-size: clamp(1.05rem, 2.1vw, 1.22rem); color: rgba(247,246,241,.82);
  margin: 1.4rem 0 2.1rem; max-width: 560px;
}
.hero__subtitle strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .6rem .9rem; margin-top: 2.4rem; }
.hero__chips li {
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  color: rgba(247,246,241,.9);
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: .42rem .9rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.hero__chips li::before { content: '✓'; color: var(--verde-neon); font-weight: 800; margin-right: .5rem; }

/* --- Cartão flutuante do hero: mini-diagnóstico --- */
.hero__visual {
  position: relative; z-index: 1; display: grid; place-items: center;
  translate: var(--mx) calc(var(--my) + var(--parY));
  transition: translate .4s ease-out;
  animation: heroIn 1s .35s cubic-bezier(.16,.84,.44,1) both;
}
.diag-card {
  position: relative; width: min(100%, 380px);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 1.8rem 1.7rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  animation: cardFloat 7s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50%      { transform: translateY(-16px) rotate(.6deg); }
}
.diag-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.3rem; padding-right: 3.6rem; }
.diag-card__head strong { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1rem; }
.diag-card__tag {
  font-family: var(--font-head); font-weight: 700; font-size: .66rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--verde-neon);
  border: 1px solid rgba(123,200,158,.45);
  padding: .3rem .7rem; border-radius: 999px; white-space: nowrap;
}
.diag-card__list { display: grid; gap: .85rem; }
.diag-card__list li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .92rem; color: rgba(247,246,241,.92);
  opacity: 0; animation: checkIn .5s ease forwards;
}
.diag-card__list li:nth-child(1) { animation-delay: 1s; }
.diag-card__list li:nth-child(2) { animation-delay: 1.35s; }
.diag-card__list li:nth-child(3) { animation-delay: 1.7s; }
.diag-card__list li:nth-child(4) { animation-delay: 2.05s; }
@keyframes checkIn { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: none; } }
.diag-card__check {
  display: grid; place-items: center; flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(123,200,158,.16); border: 1px solid rgba(123,200,158,.4);
  color: var(--verde-neon); font-weight: 800; font-size: .8rem;
}
.diag-card__foot {
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12);
}
.diag-card__foot span { font-size: .84rem; line-height: 1.55; color: rgba(247,246,241,.78); }
/* selo orbital */
/* Vídeo de fundo do hero — injetado pelo main.js apenas se assets/hero.mp4 existir */
.hero__media { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(6,40,30,.96) 0%, rgba(6,40,30,.85) 45%, rgba(6,40,30,.6) 100%);
}
.hero--video::before, .hero--video::after { content: none; }

/* ---------- Faixa em movimento (marquee) ---------- */
.marquee {
  background: var(--verde-floresta); color: rgba(247,246,241,.75);
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden; padding: .95rem 0; position: relative;
}
.marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 3rem;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
}
.marquee__track span::after { content: '·'; color: var(--verde-neon); font-size: 1.4rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Trust bar / provas ---------- */
.trust { background: var(--salvia-2); border-bottom: 1px solid var(--salvia); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 2.4rem 0; text-align: center; }
.trust__item { display: flex; flex-direction: column; gap: .25rem; }
.trust__item strong { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--verde-escuro); }
.trust__item span { font-size: .84rem; color: var(--cinza); }
.trust__item + .trust__item { border-left: 1px solid var(--salvia); }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 6.75rem) 0; position: relative; }
.section--alt { background: var(--salvia-2); }
.section__head { max-width: 720px; margin-bottom: 3.2rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--verde-medio);
  margin-bottom: .9rem;
}
.section__eyebrow::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--verde-medio), var(--verde-neon)); }
.section__eyebrow--light { color: var(--verde-neon); }
.section__title { font-size: clamp(1.8rem, 3.8vw, 2.7rem); font-weight: 800; letter-spacing: -.015em; }
.section__title--light { color: #fff; }
.section__lead { color: var(--cinza); font-size: 1.1rem; margin-top: 1rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Audience cards ---------- */
.audience {
  position: relative; background: var(--branco);
  border: 1px solid var(--salvia); border-radius: var(--radius);
  padding: 2rem 1.6rem 1.9rem; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.audience::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--verde-medio), var(--verde-neon));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.audience:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--verde-claro); }
.audience:hover::before { transform: scaleX(1); }
.audience__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: var(--salvia-2); color: var(--verde-medio); margin-bottom: 1.2rem;
  transition: background var(--t), color var(--t), transform var(--t);
}
.audience__icon svg { width: 28px; height: 28px; }
.audience:hover .audience__icon { background: var(--verde-escuro); color: var(--verde-neon); transform: scale(1.08) rotate(-4deg); }
.audience h3 { font-size: 1.12rem; margin-bottom: .55rem; }
.audience p { color: var(--cinza); font-size: .95rem; }

/* ---------- Service cards ---------- */
.service {
  position: relative; background: var(--branco);
  border: 1px solid var(--salvia); border-radius: var(--radius);
  padding: 2.2rem 2rem; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--verde-medio), var(--verde-neon));
  transform: scaleY(0); transform-origin: top; transition: transform .4s ease;
}
/* numeral fantasma decorativo */
.service::after {
  content: attr(data-num); position: absolute; right: .6rem; top: -.8rem;
  font-family: var(--font-head); font-weight: 800; font-size: 6.5rem; line-height: 1;
  color: var(--salvia-2); z-index: 0; transition: color var(--t);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--verde-claro); }
.service:hover::before { transform: scaleY(1); }
.service:hover::after { color: var(--salvia); }
.service > * { position: relative; z-index: 1; }
.service__num {
  display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: .8rem;
  letter-spacing: .1em; color: var(--verde-medio);
  background: var(--salvia-2); padding: .3rem .75rem; border-radius: 999px;
}
.service h3 { font-size: 1.32rem; margin: .8rem 0 .6rem; }
.service p { color: var(--cinza); }
.service strong { color: var(--verde-escuro); }
.service__link {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  color: var(--verde-medio); transition: color var(--t), gap var(--t);
}
.service__link:hover { color: var(--verde-escuro); gap: .6rem; }

/* ---------- Feature (Design Higiênico) ---------- */
.feature {
  background:
    radial-gradient(80% 110% at 100% 0%, rgba(78,158,120,.35) 0%, transparent 55%),
    linear-gradient(150deg, var(--verde-escuro), var(--verde-floresta));
  position: relative; overflow: hidden;
}
.feature::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: radial-gradient(70% 90% at 85% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 90% at 85% 30%, #000 0%, transparent 80%);
}
.feature::after {
  content: '✓'; position: absolute; right: -2rem; bottom: -5rem;
  font-size: 24rem; color: rgba(255,255,255,.035);
  font-family: var(--font-head); font-weight: 800; pointer-events: none;
}
.feature__inner { display: grid; grid-template-columns: 1.35fr .95fr; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
.feature__lead { color: rgba(220,229,222,.9); font-size: 1.08rem; margin-top: 1.1rem; }
.feature__lead strong { color: #fff; }
.feature__text .btn { margin-top: 2rem; }
.feature__badge { display: grid; place-items: center; position: relative; }
/* anel orbital girando ao redor do selo */
.feature__badge::before {
  content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  border: 1.5px dashed rgba(123,200,158,.35);
  animation: ringSpin 24s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.badge-card {
  position: relative; background: var(--creme); color: var(--verde-escuro);
  width: 240px; height: 240px; border-radius: 32px;
  display: grid; place-content: center; justify-items: center; gap: .6rem;
  text-align: center; padding: 1.7rem;
  box-shadow: 0 36px 70px -28px rgba(0,0,0,.6);
  animation: badgeFloat 6.5s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-1deg) translateY(-16px); }
}
.badge-card__ico { width: 68px; height: 68px; color: var(--verde-medio); }
.badge-card strong { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--verde-escuro); }
.badge-card small { text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; color: var(--cinza); }

/* ---------- Sobre / Quem assina ---------- */
.about__inner { display: grid; grid-template-columns: 360px 1fr; gap: clamp(2.2rem, 5vw, 5rem); align-items: center; }
.about__media { position: relative; }
/* moldura deslocada atrás da foto */
.about__media::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  transform: translate(-16px, 16px);
  border-radius: var(--radius);
  border: 2px solid var(--verde-claro); opacity: .5;
}
.about__photo {
  position: relative; z-index: 1; aspect-ratio: 4 / 5;
  border-radius: var(--radius); overflow: hidden;
  background: radial-gradient(120% 120% at 20% 10%, var(--verde-claro) 0%, var(--verde-medio) 45%, var(--verde-floresta) 100%);
  box-shadow: var(--shadow); display: grid; place-items: center;
}
.about__monogram { font-family: var(--font-head); font-weight: 800; font-size: 5.5rem; color: rgba(247,246,241,.92); }
.about__photo.has-photo .about__monogram { display: none; }
.about__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__role { font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .04em; color: var(--verde-medio); margin-top: .6rem; }
.about__bio { color: var(--cinza); margin-top: 1rem; }
.about__creds { margin: 1.6rem 0 2rem; display: grid; gap: .6rem; }
.about__creds li { display: flex; align-items: baseline; font-size: .96rem; color: var(--verde-escuro); font-weight: 500; }
.about__creds li::before { content: '✓'; color: var(--verde-medio); font-weight: 800; margin-right: .6rem; }

/* ---------- Metodologia: linha do tempo ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
/* linha que conecta as etapas */
.steps::before {
  content: ''; position: absolute; top: 44px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, var(--verde-medio), var(--verde-neon));
  opacity: .35; z-index: 0;
}
.step {
  position: relative; z-index: 1; background: var(--branco);
  border: 1px solid var(--salvia); border-radius: var(--radius);
  padding: 2rem 1.6rem; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--verde-claro); }
.step__num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
  color: var(--creme); font-family: var(--font-head); font-weight: 800; margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px -8px rgba(10,59,45,.6);
}
.step h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.step p { color: var(--cinza); font-size: .94rem; }
.step strong { color: var(--verde-medio); }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(70% 120% at 15% 0%, rgba(123,200,158,.3) 0%, transparent 55%),
    linear-gradient(140deg, var(--verde-medio), var(--verde-escuro) 85%);
  color: #fff; padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.1) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(80% 100% at 50% 0%, #000 0%, transparent 85%);
  -webkit-mask-image: radial-gradient(80% 100% at 50% 0%, #000 0%, transparent 85%);
}
.cta__inner { position: relative; text-align: center; max-width: 700px; margin-inline: auto; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 4.2vw, 2.7rem); font-weight: 800; letter-spacing: -.015em; }
.cta h2 span { color: var(--verde-neon); text-decoration: underline; text-decoration-color: rgba(123,200,158,.5); text-underline-offset: 8px; }
.cta p { color: rgba(255,255,255,.88); font-size: 1.12rem; margin: 1.1rem 0 2.2rem; }
.cta .btn--whatsapp { background: #fff; color: var(--verde-escuro); }
.cta .btn--whatsapp:hover { background: var(--creme); }

/* ---------- Páginas internas de serviço ---------- */
.page-hero {
  position: relative; overflow: hidden; color: var(--creme);
  background:
    radial-gradient(90% 130% at 90% -20%, rgba(78,158,120,.38) 0%, transparent 55%),
    linear-gradient(155deg, var(--verde-escuro), var(--verde-floresta));
  padding: clamp(3.2rem, 7vw, 5.2rem) 0;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: radial-gradient(80% 100% at 80% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 100% at 80% 0%, #000 0%, transparent 75%);
}
.page-hero > .container { position: relative; z-index: 1; }
.breadcrumb { font-size: .82rem; color: rgba(220,229,222,.8); margin-bottom: 1.2rem; font-family: var(--font-head); }
.breadcrumb a { color: var(--verde-neon); font-weight: 700; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 800; color: #fff; max-width: 820px; letter-spacing: -.02em; }
.page-hero .page-lead { max-width: 700px; color: rgba(247,246,241,.85); font-size: clamp(1.02rem, 2vw, 1.16rem); margin: 1.2rem 0 1.9rem; }
/* dentro do hero escuro, o botão primário vira claro para manter contraste */
.page-hero .btn--primary { background: var(--creme); color: var(--verde-escuro); }
.page-hero .btn--primary:hover { background: #fff; }
.post-meta {
  font-family: var(--font-head); font-weight: 700; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--verde-medio); margin-bottom: .9rem;
}
.page-hero .post-meta { color: var(--verde-neon); }
.prose { max-width: 780px; }
.container.prose { margin-left: max(calc((100% - var(--maxw)) / 2), 22px); margin-right: auto; }
.prose h2 {
  font-size: clamp(1.4rem, 2.7vw, 1.75rem); color: var(--verde-escuro);
  margin: 2.5rem 0 .9rem; padding-left: .9rem; position: relative;
}
.prose h2::before {
  content: ''; position: absolute; left: 0; top: .18em; bottom: .18em; width: 4px;
  border-radius: 4px; background: linear-gradient(180deg, var(--verde-medio), var(--verde-neon));
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.4rem; display: grid; gap: .5rem; }
.prose ul { list-style: disc outside; }
.prose ol { list-style: decimal outside; }
.prose li::marker { color: var(--verde-medio); font-weight: 700; }
.prose a { color: var(--verde-medio); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--verde-escuro); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; display: grid; gap: .85rem; }
.faq details {
  background: var(--branco); border: 1px solid var(--salvia);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq details[open] { border-color: var(--verde-claro); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; font-family: var(--font-head); font-weight: 700; color: var(--verde-escuro);
  transition: color var(--t);
}
.faq summary:hover { color: var(--verde-medio); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-weight: 800; font-size: 1.4rem; color: var(--verde-medio);
  flex-shrink: 0; transition: transform var(--t);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.25rem; color: var(--cinza); }

/* ---------- Contato ---------- */
.contact__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3.2rem; align-items: center; }
.contact__list { margin-top: 1.7rem; display: grid; gap: 1rem; }
.contact__list li { display: flex; align-items: center; gap: .85rem; font-size: 1.05rem; }
.contact__list span {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: var(--salvia); color: var(--verde-escuro); flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.contact__list li:hover span { background: var(--verde-escuro); color: var(--verde-neon); }
.contact__list span svg { width: 19px; height: 19px; }
.contact__list a:hover { color: var(--verde-medio); }
.contact__card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(100% 130% at 100% 0%, rgba(78,158,120,.35) 0%, transparent 60%),
    linear-gradient(155deg, var(--verde-escuro), var(--verde-floresta));
  color: var(--creme); border-radius: var(--radius); padding: 2.5rem 2.1rem;
  box-shadow: var(--shadow-lg);
}
.contact__card h3 { color: #fff; font-size: 1.45rem; }
.contact__card > p { color: var(--salvia); margin: .45rem 0 1.7rem; }
.contact__note { font-size: .82rem; color: var(--salvia); margin-top: 1.1rem; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--verde-floresta); color: var(--salvia); padding-top: 3.2rem; border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.5rem; padding-bottom: 2.5rem; }
.footer__brand { display: flex; align-items: center; gap: .7rem; }
.footer__logo { height: 44px; width: auto; }
.footer__tag { flex: 1; min-width: 200px; color: var(--salvia); }
.footer__seals { display: flex; gap: 1rem; }
.footer__seals span {
  font-family: var(--font-head); font-size: .76rem; font-weight: 600;
  border: 1px solid rgba(123,200,158,.3); color: var(--verde-neon);
  padding: .42rem .85rem; border-radius: 999px;
}
.footer__links { display: flex; flex-wrap: wrap; gap: .5rem 1.7rem; padding-bottom: 2.2rem; font-size: .85rem; }
.footer__links a { color: var(--salvia); transition: color var(--t); }
.footer__links a:hover { color: var(--verde-neon); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 1.25rem 0; }
.footer__bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .82rem; color: rgba(220,229,222,.7); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-medio));
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(6,40,30,.7);
  transition: transform var(--t);
  animation: waPulse 2.6s ease-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.12) rotate(6deg); animation-play-state: paused; }
@keyframes waPulse {
  0%   { box-shadow: 0 14px 30px -10px rgba(6,40,30,.7), 0 0 0 0 rgba(78,158,120,.5); }
  70%  { box-shadow: 0 14px 30px -10px rgba(6,40,30,.7), 0 0 0 18px rgba(78,158,120,0); }
  100% { box-shadow: 0 14px 30px -10px rgba(6,40,30,.7), 0 0 0 0 rgba(78,158,120,0); }
}

/* ---------- Reveal animação ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,.84,.44,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 1rem; }
}
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 340px; width: 100%; }
  .feature__badge { order: -1; padding: 2rem 0 1rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 760px) {
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--creme);
    border-bottom: 1px solid var(--salvia); padding: .5rem 22px 1rem;
    transform: translateY(-150%); transition: transform var(--t); box-shadow: var(--shadow-sm);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--salvia); }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .trust__item:nth-child(odd), .trust__item:nth-child(3) { border-left: 0; }
}
@media (max-width: 540px) {
  .brand__logo { height: 38px; }
  .grid--2, .grid--4, .steps { grid-template-columns: 1fr; }
  .trust__item { border-left: 0 !important; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__title .hl { white-space: normal; }
  .diag-card { padding: 1.5rem 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal, .hero__content > *, .hero__visual, .diag-card__list li { opacity: 1; transform: none; }
  .hero__title .hl::after { transform: scaleX(1); }
}
