/* ============================================================
   VITALI AGENCY — styles.css
   Manrope body · Libre Baskerville titles · Phosphor icons
   Light (default) + Dark themes · brand #F24E1E / #7B7BFD
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --primary: #F24E1E;
  --primary-strong: #d63f12;
  --primary-soft: #fdeae3;
  --accent: #7B7BFD;
  --accent-soft: #eceaff;

  --bg: #fdfbf7;
  --bg-soft: #ffffff;
  --bg-tint: #fbeee8;
  --surface: #ffffff;
  --text: #1b1816;
  --text-soft: #5d564f;
  --muted: #8d857b;
  --border: rgba(27, 24, 22, 0.09);
  --border-strong: rgba(27, 24, 22, 0.16);
  --shadow: 0 18px 50px -28px rgba(40, 26, 18, 0.30);
  --shadow-sm: 0 8px 24px -18px rgba(40, 26, 18, 0.35);

  --danger: #c8452a;
  --success: #1f9d55;

  --ill-stroke: #2a2420;
  --ill-soft: #f6d9cd;
  --ill-card: #ffffff;
  --ill-card-line: rgba(27, 24, 22, 0.10);

  --dark-band: #17120f;
  --dark-band-text: #f3ede4;
  --dark-band-muted: #a89f93;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 0.45s var(--ease);

  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
}

[data-theme="dark"] {
  --primary: #ff5e30;
  --primary-strong: #ff7148;
  --primary-soft: rgba(242, 78, 30, 0.14);
  --accent: #9a9aff;
  --accent-soft: rgba(123, 123, 253, 0.16);

  --bg: #14110f;
  --bg-soft: #1d1814;
  --bg-tint: #20160f;
  --surface: #1d1814;
  --text: #f4efe8;
  --text-soft: #b8aea2;
  --muted: #8a8175;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 10px 30px -20px rgba(0, 0, 0, 0.75);

  --danger: #ff7d63;
  --success: #43c67e;

  --ill-stroke: #e8e0d6;
  --ill-soft: rgba(242, 78, 30, 0.22);
  --ill-card: #251e19;
  --ill-card-line: rgba(255, 255, 255, 0.12);

  --dark-band: #0f0c0a;
  --dark-band-text: #f3ede4;
  --dark-band-muted: #a89f93;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background var(--t), color var(--t);
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.section { padding: clamp(60px, 8.5vw, 112px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow--light { color: #fff; background: rgba(255,255,255,0.14); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 1rem + 2.4vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-sub { margin-top: 18px; color: var(--text-soft); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 24px;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn i { font-size: 1.2em; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 12px 26px -14px rgba(242, 78, 30, 0.85); }
.btn--primary:hover { background: var(--primary-strong); transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(242, 78, 30, 0.9); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 16px; font-size: 0.88rem; }
.btn--lg { padding: 17px 34px; font-size: 1.06rem; }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__lockup { display: flex; align-items: center; gap: 0; }
.loader__mark { width: clamp(72px, 14vw, 96px); height: auto; }
.loader__mark .tri { fill: var(--primary); opacity: 0; transform-origin: 53px 64px; transform: translateY(14px) scale(0.92); }
.loader__mark .tri--1 { animation: triIn 0.55s var(--ease) 0.15s forwards; }
.loader__mark .tri--2 { animation: triIn 0.55s var(--ease) 0.40s forwards; }
.loader__mark .tri--3 { animation: triIn 0.55s var(--ease) 0.65s forwards; }
.loader__mark .tri--1 { --o: 1; }
.loader__mark .tri--2 { --o: 0.62; }
.loader__mark .tri--3 { --o: 0.28; }
@keyframes triIn { to { opacity: var(--o); transform: translateY(0) scale(1); } }

.loader__word {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  max-width: 0;
  margin-left: 0;
  animation: wordReveal 0.9s var(--ease) 0.95s forwards;
}
@keyframes wordReveal { to { max-width: 360px; margin-left: 22px; } }

.loader__name { display: flex; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 5.6vw, 2.8rem); letter-spacing: 0.1em; line-height: 1.05; color: var(--text); }
.loader__name span { display: inline-block; opacity: 0; transform: translateY(0.5em); animation: letterIn 0.6s var(--ease) forwards; }
.loader__name span:nth-child(1) { animation-delay: 1.55s; }
.loader__name span:nth-child(2) { animation-delay: 1.75s; }
.loader__name span:nth-child(3) { animation-delay: 1.95s; }
.loader__name span:nth-child(4) { animation-delay: 2.15s; }
.loader__name span:nth-child(5) { animation-delay: 2.35s; }
.loader__name span:nth-child(6) { animation-delay: 2.55s; }
@keyframes letterIn { to { opacity: 1; transform: translateY(0); } }

.loader__sub { font-family: var(--font); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.42em; color: var(--muted); margin-top: 8px; padding-left: 3px; opacity: 0; transform: translateY(7px); animation: subIn 0.7s var(--ease) 3.25s forwards; }
@keyframes subIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark polygon { fill: var(--primary); }
.brand__text { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em; font-size: 1.16rem; color: var(--text); }
.brand__text em { font-style: normal; font-family: var(--font); font-weight: 500; font-size: 0.6em; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 500; font-size: 0.96rem; color: var(--text-soft); position: relative; padding: 6px 0; transition: color 0.25s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: width 0.3s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.icon-btn:hover { border-color: var(--primary); color: var(--primary); }
.magnetic { will-change: transform; }
.icon-btn i { font-size: 1.25rem; }

/* Theme toggle — sun rotates on hover, moon at night */
.theme-toggle { overflow: hidden; }
.theme-toggle i { transition: transform 0.55s var(--ease), opacity 0.3s var(--ease); }
.theme-toggle__moon { display: none; }
.theme-toggle:hover .theme-toggle__sun { transform: rotate(52deg) scale(1.08); }
.theme-toggle:hover .theme-toggle__moon { transform: rotate(-22deg) scale(1.08); }
[data-theme="dark"] .theme-toggle__sun { display: none; }
[data-theme="dark"] .theme-toggle__moon { display: block; }

.nav__cta { padding: 11px 20px; }
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(120px, 16vh, 168px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 1rem + 3.4vw, 3.1rem); line-height: 1.16; letter-spacing: -0.01em; margin-top: 6px; }
.hero__sub { margin-top: 24px; font-size: 1.1rem; color: var(--text-soft); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.trustbar {
  display: flex; flex-wrap: wrap; gap: 10px 12px;
  margin-top: 40px; padding-top: 30px;
  border-top: 1px solid var(--border);
}
.trustbar li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-soft);
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 100px;
}
.trustbar li i { font-size: 1.05rem; color: var(--primary); }

/* Illustrations */
.ill { width: 100%; height: auto; overflow: visible; }
.ill-blob { fill: var(--primary-soft); }
.ill-accent-soft { fill: var(--accent-soft); }
.ill-card, .ill-floatcard { fill: var(--ill-card); stroke: var(--ill-card-line); stroke-width: 1.5; }
.ill-bar { fill: var(--primary); }
.ill-bar2 { fill: none; }
.ill-dot { fill: rgba(255,255,255,0.85); }
.ill-dot2, .ill-dot3 { fill: rgba(255,255,255,0.55); }
.ill-soft { fill: var(--ill-soft); }
.ill-primary { fill: var(--primary); }
.ill-primary-fill { fill: var(--primary); }
.ill-accent-fill { fill: var(--accent); }
.ill-line { fill: none; stroke: var(--accent); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.ill-line-dot { fill: var(--accent); stroke: var(--ill-card); stroke-width: 3; }
.ill-check { fill: none; stroke: #fff; stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }
.ill-line-soft { fill: var(--ill-soft); }
.ill-line-soft2 { fill: var(--border-strong); }
.ill-pulse { fill: none; stroke: var(--primary); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: 0.65; }
.ill-float { animation: floaty 5s ease-in-out infinite; transform-origin: center; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Cards (generic) ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; line-height: 1.3; letter-spacing: -0.01em; }
.card__text { color: var(--text-soft); font-size: 0.98rem; margin-top: 10px; }

.tinted { background: var(--bg-tint); }
.cards-grid { display: grid; gap: 22px; }

/* ---------- Pain ---------- */
.pain__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.pain__lead { margin-top: 18px; color: var(--text-soft); font-size: 1.08rem; }
.pain__cue { margin-top: 20px; font-weight: 600; color: var(--text); }
.pain__list { display: flex; flex-direction: column; gap: 12px; }
.pain-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pain-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.pain-item__icon i { font-size: 1.5rem; color: var(--danger); }
.pain-item p { color: var(--text-soft); font-size: 0.98rem; }

/* ---------- How / steps ---------- */
.how__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.how-step { position: relative; padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.how-step:hover { transform: translateY(-6px) scale(1.04); box-shadow: var(--shadow); border-color: var(--border-strong); z-index: 3; }
.how-step__num { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: #fff; background: var(--primary); width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; transition: transform 0.4s var(--ease); }
.how-step:hover .how-step__num { transform: rotate(-8deg) scale(1.06); }
.how-step__icon { display: block; margin: 18px 0 12px; }
.how-step__icon i { font-size: 1.9rem; color: var(--primary); display: inline-block; transition: transform 0.4s var(--ease); }
.how-step:hover .how-step__icon i { transform: translateY(-2px) scale(1.1); }
.how-step .card__title { font-size: 1.06rem; }
.how-step .card__text { font-size: 0.92rem; }

/* ---------- Services ---------- */
.services__grid { grid-template-columns: repeat(3, 1fr); }
.service-card { display: flex; flex-direction: column; padding: 30px 28px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.service-card:hover { transform: translateY(-6px) scale(1.04); box-shadow: var(--shadow); border-color: var(--border-strong); z-index: 3; }
.service-card__icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 15px; background: var(--primary-soft); margin-bottom: 18px; transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.service-card__icon i { font-size: 1.7rem; color: var(--primary); transition: transform 0.4s var(--ease); }
.service-card:hover .service-card__icon { transform: translateY(-3px) rotate(-6deg); }
.service-card:hover .service-card__icon i { transform: rotate(6deg) scale(1.06); }

/* ---------- Why / differentials ---------- */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why__grid--three { grid-template-columns: repeat(3, 1fr); }
.why-item { padding: 32px 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.why-item:hover { transform: translateY(-5px) scale(1.04); box-shadow: var(--shadow); border-color: var(--border-strong); z-index: 3; }
.why-item__icon { display: block; margin-bottom: 16px; }
.why-item__icon i { font-size: 2.1rem; color: var(--primary); }

/* ---------- Calculator ---------- */
.calc__card {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px);
  align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 52px);
}
.calc__intro .section-title { font-size: clamp(1.5rem, 1rem + 1.7vw, 2.05rem); }
.calc__intro .section-sub { font-size: 1rem; }
.calc__panel { display: flex; flex-direction: column; gap: 18px; }
.calc__field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.calc__input { display: flex; align-items: center; gap: 8px; padding: 0 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-strong); background: var(--bg); transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.calc__input:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.calc__prefix { font-weight: 700; color: var(--muted); }
.calc__input input { flex: 1; width: 100%; padding: 14px 0; border: none; background: transparent; font-weight: 600; font-size: 1.05rem; }
.calc__input input:focus { outline: none; }
.calc__field small { display: block; margin-top: 6px; font-size: 0.8rem; color: var(--muted); }
.calc__result {
  margin-top: 4px; padding: 22px 24px; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--primary-soft), var(--accent-soft));
  border: 1px solid var(--border);
  text-align: center;
}
.calc__result-label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); }
.calc__result-value { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 1rem + 3vw, 2.7rem); color: var(--primary); letter-spacing: -0.02em; margin: 8px 0 4px; }
.calc__result-pac { display: block; font-weight: 600; color: var(--text); }
.calc__disclaimer { font-size: 0.76rem; color: var(--muted); line-height: 1.5; text-align: center; }

/* ---------- Compare (antes vs depois) ---------- */
.compare__table { max-width: 880px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface); }
.compare__head, .compare__row { display: grid; grid-template-columns: 1fr 1fr; }
.compare__head { font-family: var(--font-display); font-weight: 700; }
.compare__head-before, .compare__head-after { padding: 18px 24px; font-size: 1rem; }
.compare__head-before { color: var(--muted); background: color-mix(in srgb, var(--muted) 8%, transparent); }
.compare__head-after { color: #fff; background: var(--primary); }
.compare__row { border-top: 1px solid var(--border); }
.compare__before, .compare__after { display: flex; align-items: center; gap: 12px; padding: 18px 24px; font-size: 0.98rem; }
.compare__before { color: var(--muted); }
.compare__before i { font-size: 1.3rem; color: var(--danger); flex-shrink: 0; }
.compare__after { color: var(--text); font-weight: 500; background: color-mix(in srgb, var(--primary) 5%, transparent); border-left: 1px solid var(--border); }
.compare__after i { font-size: 1.3rem; color: var(--success); flex-shrink: 0; }

/* ---------- Objections ---------- */
.objections__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.objection { display: flex; flex-direction: column; padding: 30px 28px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.objection:hover { transform: translateY(-5px) scale(1.03); box-shadow: var(--shadow); border-color: var(--border-strong); z-index: 3; }
.objection__mark i { font-size: 1.9rem; color: var(--accent); }
.objection__q { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; line-height: 1.35; margin: 14px 0 10px; color: var(--text); }
.objection__a { color: var(--text-soft); font-size: 0.96rem; }
.objection--cta { background: linear-gradient(165deg, var(--primary-soft), var(--surface) 60%); }
.objection--cta .objection__mark i { color: var(--primary); }
.objection--cta .btn { margin-top: 20px; align-self: flex-start; }

/* ---------- Guarantee ---------- */
.guarantee__card {
  max-width: 820px; margin: 0 auto; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(34px, 5vw, 56px);
}
.guarantee__icon { display: inline-grid; place-items: center; width: 68px; height: 68px; border-radius: 20px; background: var(--primary-soft); margin-bottom: 20px; }
.guarantee__icon i { font-size: 2.2rem; color: var(--primary); }
.guarantee__points { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; text-align: left; }
.guarantee__point { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; border-radius: var(--radius-sm); background: var(--bg); border: 1px solid var(--border); }
.guarantee__point i { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.guarantee__point p { color: var(--text-soft); font-size: 0.98rem; }
.guarantee__point strong { color: var(--text); font-weight: 700; }

/* ---------- Results (modular / empty state) ---------- */
.results__empty {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: var(--surface); border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px);
}
.results__empty-icon { display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: var(--accent-soft); margin-bottom: 20px; }
.results__empty-icon i { font-size: 2.4rem; color: var(--accent); }
.results__empty-text { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 24px; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: 26px; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-weight: 600; font-size: 1.02rem; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { font-size: 1.25rem; color: var(--primary); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item[open] summary i, .faq-item.is-open summary i { transform: rotate(45deg); }
/* Altura animada via JS (abre e fecha com suavidade) */
.faq-item__body { height: 0; overflow: hidden; transition: height 0.36s var(--ease); }
.faq-item__body p { padding: 2px 22px 22px; color: var(--text-soft); font-size: 0.98rem; }

.faq__side { padding: 34px 30px; background: linear-gradient(165deg, var(--accent-soft), var(--surface) 65%); position: sticky; top: 100px; }
.faq__side-icon i { font-size: 2.6rem; color: var(--accent); }
.faq__side-title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-top: 14px; }
.faq__side-text { color: var(--text-soft); margin: 10px 0 24px; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--dark-band); color: var(--dark-band-text); padding: clamp(64px, 9vw, 116px) 0; text-align: center; }
.final-cta__inner { max-width: 720px; margin: 0 auto; }
.final-cta__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 1rem + 3vw, 2.9rem); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 22px; }
.final-cta__text { color: var(--dark-band-muted); font-size: 1.08rem; max-width: 600px; margin: 0 auto 14px; }
.final-cta .btn { margin-top: 20px; }
.final-cta__micro { margin-top: 18px; font-size: 0.86rem; color: var(--dark-band-muted); }

/* ---------- Footer ---------- */
.footer { background: var(--dark-band); color: var(--dark-band-text); border-top: 1px solid rgba(255,255,255,0.08); padding: clamp(48px, 6vw, 72px) 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
.footer .brand__text { color: #fff; }
.footer__tagline { color: var(--dark-band-muted); margin-top: 16px; max-width: 280px; font-size: 0.96rem; }
.footer__meta { display: flex; align-items: center; gap: 7px; color: var(--dark-band-muted); margin-top: 12px; font-size: 0.9rem; }
.footer__meta i { color: var(--primary); font-size: 1.05rem; flex-shrink: 0; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-family: var(--font); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark-band-muted); font-weight: 600; margin-bottom: 4px; }
.footer__col a, .footer__col span { color: var(--dark-band-text); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--primary); }
.footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; justify-content: space-between; }
.footer__bottom p { color: var(--dark-band-muted); font-size: 0.88rem; }
.footer__bottom a { color: var(--dark-band-text); font-size: 0.88rem; }
.footer__bottom a:hover { color: var(--primary); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  opacity: 0; transform: translateY(20px) scale(0.8); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.25s var(--ease);
}
.wa-float.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-float:hover { background: #1fb959; transform: translateY(-3px) scale(1.05); }
.wa-float i { font-size: 1.8rem; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 24px; bottom: 24px; z-index: 850;
  max-width: 380px; padding: 22px 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.cookie p { font-size: 0.9rem; color: var(--text-soft); }
.cookie__actions { display: flex; gap: 10px; margin-top: 16px; }

/* ---------- Reveal animations ---------- */
.reveal, .reveal-group > * { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view, .reveal-group.in-view > * { opacity: 1; transform: none; }
.reveal-group.in-view > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.in-view > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.in-view > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group.in-view > *:nth-child(6) { transition-delay: 0.40s; }
/* Hover lift+scale must out-specify the reveal "transform: none" rule above. */
.reveal-group.in-view > .service-card:hover,
.reveal-group.in-view > .how-step:hover,
.reveal-group.in-view > .why-item:hover,
.reveal-group.in-view > .objection:hover {
  transform: translateY(-6px) scale(1.04);
  z-index: 3;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  transition-delay: 0s;
}
.reveal-group.in-view > .pain-item:hover { transform: translateX(4px); transition-delay: 0s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid, .why__grid--three { grid-template-columns: repeat(2, 1fr); }
  .how__track { grid-template-columns: repeat(2, 1fr); }
  .objections__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  html { scroll-padding-top: 76px; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 16px 28px 26px; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform 0.4s var(--ease); z-index: -1;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { width: 100%; padding: 12px 0; font-size: 1.05rem; }
  .nav__burger { display: inline-grid; }
  .nav__cta { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 440px; margin: 0 auto; }
  .pain__grid { grid-template-columns: 1fr; }
  .calc__card { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__side { position: static; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .services__grid, .why__grid, .why__grid--three, .how__track, .objections__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .trustbar { gap: 8px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .compare__head-before, .compare__head-after, .compare__before, .compare__after { padding: 14px 16px; font-size: 0.92rem; }
  .cookie { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .wa-float { right: 16px; bottom: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0s !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; }
  .ill-float { animation: none; }
}
