/* ============================================================
   DIRIJA FÁCIL, v2.0 (reconstrução do handoff Claude Design)
   Tokens e valores extraídos 1:1 do handoff. Estrutura reescrita
   em HTML semântico + CSS externo (sem estilo inline).
   ============================================================ */

:root {
  --ink: #121316;
  --white: #ffffff;
  --accent: #F5B71A;
  --accent-text: #B98705;
  --muted: #6B7078;
  --body-text: #5C6068;
  --quote-text: #31343A;
  --surface: #F7F6F4;
  --font-heading: 'Sora', Helvetica, sans-serif;
  --font-body: 'Manrope', -apple-system, Helvetica, sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; transition: color .3s ease, opacity .3s ease; }
a:hover { color: var(--accent-text); }
button { font-family: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); letter-spacing: -.03em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: var(--ink); }

.container { width: min(1180px, 92vw); margin: 0 auto; }

@keyframes dfFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}
@keyframes dfPulse {
  0% { box-shadow: 0 0 0 0 rgba(245,183,26,.55); }
  70% { box-shadow: 0 0 0 22px rgba(245,183,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,183,26,0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(14px);
  transition: opacity .95s var(--ease), transform .95s var(--ease), filter 1.1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
}

/* ---------- Progress bar ---------- */
.progress-track {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 120;
  background: rgba(18,19,22,.06);
}
.progress-bar {
  height: 100%; width: 0%; background: var(--accent); transition: width .12s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 10px 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .5s ease, border-color .5s ease, box-shadow .5s ease, padding .4s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.72);
  border-bottom-color: rgba(18,19,22,.08);
  box-shadow: 0 14px 40px rgba(18,19,22,.09);
  padding: 6px 0;
}
.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
}

.menu-open-btn {
  justify-self: start; display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 999px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background .5s ease, border-color .5s ease;
}
.site-header.is-scrolled .menu-open-btn { background: rgba(18,19,22,.04); border-color: rgba(18,19,22,.12); }
.burger { display: flex; flex-direction: column; gap: 4px; width: 19px; }
.burger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: background .5s ease; }
.burger span:nth-child(2) { width: 70%; }
.site-header.is-scrolled .burger span { background: var(--ink); }
.menu-open-label {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--white); transition: color .5s ease;
}
.site-header.is-scrolled .menu-open-label { color: var(--ink); }

.logo-badge {
  justify-self: center; display: block; padding: 7px; border-radius: 20px;
  background: var(--ink); box-shadow: 0 14px 34px rgba(18,19,22,.28);
}
.logo-badge img { width: 52px; height: 52px; }

.header-wa-btn {
  justify-self: end; display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border-radius: 999px; background: var(--accent); color: var(--ink);
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  box-shadow: 0 12px 30px rgba(245,183,26,.34);
}
.header-wa-btn:hover { color: var(--ink); }
.dot-ink { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); flex: none; }

/* ---------- Menu overlay ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 110;
  opacity: 0; visibility: hidden; pointer-events: none;
  background: rgba(14,15,17,.62);
  backdrop-filter: blur(34px) saturate(150%); -webkit-backdrop-filter: blur(34px) saturate(150%);
  transition: opacity .55s var(--ease), visibility .55s;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.menu-glow {
  position: absolute; top: -18%; left: -10%; width: 70vw; height: 70vw; max-width: 760px; max-height: 760px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245,183,26,.20), rgba(245,183,26,0) 68%);
}
.menu-inner {
  position: relative; height: 100%; width: min(1180px,92vw); margin: 0 auto;
  display: flex; flex-direction: column; padding: 18px 0 34px;
}
.menu-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 76px; }
.menu-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.menu-close-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.menu-nav { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: clamp(4px,1.4vw,10px); }
.menu-link {
  display: flex; align-items: baseline; gap: 14px; padding: 6px 0; color: var(--white);
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(26px,7.5vw,58px); letter-spacing: -.04em;
}
.menu-link span { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--accent); }
.menu-item, .menu-link {
  opacity: 0; transform: translateY(26px); filter: blur(10px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s ease;
}
.menu-overlay.is-open .menu-item, .menu-overlay.is-open .menu-link { opacity: 1; transform: none; filter: blur(0px); }
.menu-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.menu-wa-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px; border-radius: 999px;
  background: var(--accent); color: var(--ink); font-weight: 700; font-size: 15px;
}
.menu-wa-btn:hover { color: var(--ink); }
.menu-phone { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.6; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; background: var(--ink);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.8s ease, transform 9s linear;
}
.hero-slide.is-active { opacity: 1; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,17,.74) 0%, rgba(14,15,17,.42) 34%, rgba(14,15,17,.72) 74%, rgba(14,15,17,.94) 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(120% 70% at 50% 100%, rgba(245,183,26,.16), rgba(245,183,26,0) 60%);
}
.hero-inner { position: relative; padding: 120px 0 clamp(28px,6vw,54px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.eyebrow-dark { color: var(--muted); background: none; border: none; padding: 0; backdrop-filter: none; -webkit-backdrop-filter: none; }
.eyebrow-line { width: 26px; height: 2px; background: var(--accent); }

.hero h1 {
  margin: 22px 0 0; color: var(--white); font-weight: 700; font-size: clamp(38px,10.5vw,84px);
  line-height: .98; max-width: 15ch; text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); }
.hero-lead {
  margin: 20px 0 0; max-width: 52ch; color: rgba(255,255,255,.8);
  font-size: clamp(16px,4.3vw,20px); line-height: 1.65; text-wrap: pretty;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 19px 30px; border-radius: 999px; font-weight: 700; font-size: 16px;
  transition: transform .4s var(--ease), box-shadow .4s ease, background .3s ease, color .3s ease;
}
.btn-primary {
  background: var(--accent); color: var(--ink); box-shadow: 0 20px 44px rgba(245,183,26,.32);
}
.btn-primary:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 26px 54px rgba(245,183,26,.44); }
.btn-ghost {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); color: var(--white); font-weight: 600; padding: 19px 28px;
}
.btn-ghost:hover { background: rgba(255,255,255,.2); color: var(--white); }
.btn-sm { padding: 13px 20px; font-size: 14px; }

.hero-dots { display: flex; align-items: center; gap: 8px; margin-top: 38px; }
.hero-dot { width: 14px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.35); transition: background .5s ease, width .5s ease; }
.hero-dot.is-active { width: 30px; background: var(--accent); }
.hero-dots-label { margin-left: 12px; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }

.hero-scroll-cue {
  position: absolute; right: max(4vw,18px); bottom: 26px; animation: dfFloat 3.4s ease-in-out infinite;
}
.hero-scroll-cue span {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.6));
}

/* ---------- Glass surface (shared) ---------- */
.glass {
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
}

/* ---------- Stats bar (floating, overlaps hero) ---------- */
.stats-bar-wrap { position: relative; background: var(--white); }
.stats-bar {
  transform: translateY(-42px);
  display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 1px;
  background: rgba(18,19,22,.08); border: 1px solid rgba(18,19,22,.08);
  border-radius: 26px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(18,19,22,.14);
}
.stats-bar-item { background: rgba(255,255,255,.86); padding: 24px 22px; }
.stats-bar-item .value { font-family: var(--font-heading); font-size: clamp(24px,6vw,32px); font-weight: 700; letter-spacing: -.04em; display: flex; align-items: center; gap: 8px; }
.stats-bar-item .value img { width: 20px; height: 20px; }
.stats-bar-item .label { margin-top: 4px; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .04em; }

/* ---------- Section shell ---------- */
.section { padding: clamp(72px,12vw,130px) 0; }
.section-tight { padding: clamp(46px,8vw,96px) 0 clamp(72px,12vw,130px); }
.section-dark { background: var(--ink); }
.section-surface { background: var(--surface); }
.section h2 {
  margin: 18px 0 0; font-size: clamp(28px,7.4vw,52px); line-height: 1.06; max-width: 24ch; text-wrap: balance;
}
.section-dark h2, .section-dark .eyebrow-dark { color: var(--white); }
.section-dark .eyebrow-dark { color: rgba(255,255,255,.55); }
.section-lead { margin: 16px 0 0; max-width: 56ch; color: var(--body-text); font-size: clamp(15px,4vw,17px); line-height: 1.7; }
.section-dark .section-lead { color: rgba(255,255,255,.62); }

/* ---------- Medo section ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 14px; margin-top: 38px; }
.quote-card { padding: 26px 24px; border-radius: 22px; background: var(--surface); border: 1px solid rgba(18,19,22,.06); }
.quote-mark { font-family: var(--font-heading); font-size: 26px; color: var(--accent); line-height: 1; }
.quote-card p:last-child { margin-top: 8px; font-size: 17px; font-weight: 600; line-height: 1.5; }

.split { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: clamp(24px,4vw,56px); align-items: center; margin-top: clamp(40px,7vw,80px); }
.split h3 { font-size: clamp(22px,5.4vw,34px); line-height: 1.15; }
.split p { margin-top: 18px; color: var(--body-text); font-size: clamp(15px,4vw,17px); line-height: 1.75; text-wrap: pretty; }
.split p + p { margin-top: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag { padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 1px solid rgba(18,19,22,.14); }
.tag-solid { background: var(--ink); color: var(--white); border: none; }

.split-media { position: relative; }
.split-media img { width: 100%; height: clamp(300px,54vw,470px); object-fit: cover; border-radius: 28px; }
.split-caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 18px 20px; border-radius: 20px;
  background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 44px rgba(18,19,22,.16);
}
.split-caption p:first-child { font-size: 14px; font-weight: 700; }
.split-caption p:last-child { margin-top: 5px; color: var(--body-text); font-size: 13px; line-height: 1.5; }

/* ---------- Método section ---------- */
#metodo { position: relative; overflow: hidden; }
.metodo-glow {
  position: absolute; top: -20%; right: -15%; width: 60vw; height: 60vw; max-width: 640px; max-height: 640px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245,183,26,.16), rgba(245,183,26,0) 66%);
}
.metodo-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 14px; margin-top: 44px; }
.metodo-card {
  padding: 28px 24px 26px; border-radius: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
}
.metodo-card .num { font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: .14em; color: var(--accent); }
.metodo-card h3 { margin-top: 14px; color: var(--white); font-size: 20px; line-height: 1.25; }
.metodo-card p { margin-top: 10px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.65; }

/* ---------- Treinamento section ---------- */
.article-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 18px; margin-top: 42px; }
.article-card {
  border-radius: 26px; overflow: hidden; background: var(--white); border: 1px solid rgba(18,19,22,.08);
  box-shadow: 0 18px 50px rgba(18,19,22,.07);
}
.article-media { position: relative; height: 210px; }
.article-media img { width: 100%; height: 100%; object-fit: cover; }
.article-media-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,19,22,0) 40%, rgba(18,19,22,.55)); }
.article-chip {
  position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.article-chip img { width: 20px; height: 20px; }
.article-chip span { font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.article-body { padding: 24px 24px 26px; }
.article-body h3 { font-size: 21px; line-height: 1.2; }
.article-body p { margin-top: 10px; color: var(--body-text); font-size: 15px; line-height: 1.65; }
.article-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 14px; font-weight: 700; }
.article-link span { color: var(--accent-text); }

/* ---------- Segurança section ---------- */
.security-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: clamp(24px,4vw,56px); align-items: start; }
.security-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 12px; }
.security-card {
  padding: 22px 20px; border-radius: 20px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 14px 36px rgba(18,19,22,.06);
}
.security-card .bar { display: block; width: 22px; height: 4px; border-radius: 3px; background: var(--accent); }
.security-card h3 { margin-top: 14px; font-size: 16px; }
.security-card p { margin-top: 8px; color: var(--body-text); font-size: 14px; line-height: 1.6; }

/* ---------- Sobre section ---------- */
.about-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-collage img { width: 100%; height: clamp(150px,26vw,230px); object-fit: cover; border-radius: 20px; }
.about-collage img:nth-child(2), .about-collage img:nth-child(4) { margin-top: clamp(14px,3vw,32px); }
.about-checklist { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 10px; margin-top: 26px; }
.about-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; font-weight: 600; line-height: 1.4; }
.about-checklist svg { flex: none; margin-top: 2px; }

/* ---------- Stats block 2 (image bg) ---------- */
.stats-panel-wrap {
  position: relative; padding: clamp(64px,10vw,110px) 0; background-size: cover; background-position: center;
}
.stats-panel-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,15,17,.86), rgba(14,15,17,.72)); }
.stats-panel {
  position: relative; display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: clamp(20px,4vw,40px);
  padding: clamp(28px,5vw,48px); border-radius: 28px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(26px) saturate(150%); -webkit-backdrop-filter: blur(26px) saturate(150%);
}
.stats-panel .value { font-family: var(--font-heading); color: var(--white); font-size: clamp(32px,8vw,52px); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.stats-panel .label { margin-top: 8px; color: rgba(255,255,255,.6); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Depoimentos ---------- */
.testi-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.google-badge { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 18px; background: var(--surface); border: 1px solid rgba(18,19,22,.07); }
.google-badge img { width: 26px; height: 26px; }
.google-badge .stars { color: var(--accent-text); font-size: 15px; letter-spacing: .14em; }
.google-badge .caption { margin-top: 2px; color: var(--muted); font-size: 12px; font-weight: 600; }

.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 16px; margin-top: 40px; }
.testi-card {
  margin: 0; display: flex; flex-direction: column; padding: 26px 24px; border-radius: 24px;
  background: var(--white); border: 1px solid rgba(18,19,22,.08); box-shadow: 0 16px 44px rgba(18,19,22,.06);
}
.testi-card .stars { color: var(--accent-text); font-size: 14px; letter-spacing: .16em; }
.testi-card blockquote { margin: 14px 0 0; font-size: 15px; line-height: 1.7; color: var(--quote-text); }
.testi-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(18,19,22,.08); }
.avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 700; flex: none; }
.testi-card figcaption .name { display: block; font-size: 14px; font-weight: 700; }
.testi-card figcaption .meta { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.testi-card .screenshot { width: 100%; margin-top: 18px; border-radius: 12px; border: 1px solid rgba(18,19,22,.08); }

.testi-card-dark {
  background: var(--ink); justify-content: space-between; gap: 18px;
}
.testi-card-dark .stars { color: var(--accent); }
.testi-card-dark blockquote:first-of-type { margin: 14px 0 0; color: var(--white); font-size: 17px; line-height: 1.55; font-weight: 600; }
.testi-card-dark .attr { margin-top: 12px; color: rgba(255,255,255,.55); font-size: 13px; }
.testi-card-dark blockquote:last-of-type { margin: 22px 0 0; color: rgba(255,255,255,.86); font-size: 15px; line-height: 1.7; }
.testi-card-dark .btn-primary { margin-top: auto; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-wrap { width: min(880px,92vw); margin: 0 auto; }
.faq-head { text-align: center; }
.faq-head .eyebrow-dark { justify-content: center; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 38px; }
.faq-item {
  border-radius: 20px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.85);
  overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 22px;
  text-align: left; font-family: var(--font-heading); font-size: 16px; font-weight: 600; letter-spacing: -.02em; line-height: 1.35;
}
.faq-icon {
  flex: none; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: var(--ink); font-size: 16px; font-weight: 700;
  transition: transform .45s var(--ease);
}
.faq-item.is-open .faq-icon { transform: rotate(135deg); }
.faq-panel { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .55s var(--ease), opacity .45s ease; }
.faq-panel p { padding: 0 22px 24px; color: var(--body-text); font-size: 15px; line-height: 1.7; }

/* ---------- Contato ---------- */
.contato-wrap {
  position: relative; padding: clamp(76px,12vw,140px) 0; background-size: cover; background-position: center 30%;
}
.contato-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,15,17,.72), rgba(14,15,17,.9)); }
.contato-card {
  position: relative; max-width: 720px; padding: clamp(30px,6vw,54px); border-radius: 30px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(28px) saturate(150%); -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.contato-card h2 { color: var(--white); }
.contato-lead { margin-top: 16px; color: rgba(255,255,255,.72); font-size: clamp(15px,4vw,18px); line-height: 1.7; text-wrap: pretty; }
.contato-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.contato-info { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 16px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.contato-info .label { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contato-info .value { margin-top: 8px; color: rgba(255,255,255,.86); font-size: 14px; line-height: 1.6; }
.contato-info a { color: rgba(255,255,255,.86); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--ink); padding: clamp(50px,8vw,80px) 0 26px; overflow: hidden; }
.footer-glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 120vw; height: 70vw;
  background: radial-gradient(50% 50% at 50% 50%, rgba(245,183,26,.10), rgba(245,183,26,0) 70%);
}
.footer-card {
  position: relative; padding: clamp(28px,5vw,44px); border-radius: 28px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%);
}
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.footer-brand img { width: 84px; height: 84px; }
.footer-brand p { max-width: 34ch; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.65; }
.footer-cols {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 26px;
  margin-top: 36px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12);
}
.footer-cols h3 { color: var(--white); font-family: var(--font-heading); font-size: 14px; font-weight: 600; }
.footer-cols ul { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.footer-cols a, .footer-cols li { color: rgba(255,255,255,.62); font-size: 14px; }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  position: relative; width: min(1180px,92vw); margin: 26px auto 0; display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: space-between; color: rgba(255,255,255,.38); font-size: 12px;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: max(4vw,16px); bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 22px; border-radius: 999px;
  background: var(--accent); color: var(--ink); font-weight: 700; font-size: 14px;
  box-shadow: 0 16px 40px rgba(18,19,22,.28);
  animation: dfPulse 3.2s ease-out infinite;
}
.wa-float:hover { color: var(--ink); }
.wa-float .dot-ink { width: 8px; height: 8px; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 640px) {
  .header-wa-btn .label-full { display: none; }
}
