/* =====================================================================
   PREMIUM HOME 2026 — Boutique Tech Premium
   Camada editorial sobre premium-v2.css. NÃO substitui o que existe;
   adiciona seções de conversão e refina hierarquia visual.
   ===================================================================== */

/* ---------- TOKENS COMPLEMENTARES ---------- */
body.home-page {
  --ink-deep: #1e1b3a;          /* deep violet ink — autoridade premium */
  --ink-paper: #faf9f7;
  --bg-mist: #FBFAFE;            /* ultra-soft para hero/CTA */
  --bg-stone: #F2EFFA;           /* alternância de seção */
  --gold: #C8A861;               /* acento premium (uso muito raro) */
  --gold-soft: #E8DDB8;
  --line-soft: rgba(30,27,58,.06);
  --line-mid: rgba(30,27,58,.10);
  --shadow-editorial: 0 30px 60px -30px rgba(30,27,58,.22), 0 12px 24px -12px rgba(30,27,58,.10);
  --grain-url: radial-gradient(rgba(30,27,58,.05) 1px, transparent 1px);
  --dot-pattern: radial-gradient(rgba(124,58,237,.18) 1px, transparent 1px);
}

/* ---------- 0. STICKY PROMO BAR (topo absoluto) ---------- */
.mw-promo-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1500; /* acima do site-header (1200) */
  background: linear-gradient(95deg, #1e1b3a 0%, #4f46e5 60%, #7c3aed 100%);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  overflow: hidden;
  height: 40px;
  display: flex; align-items: center;
}
/* Empurra o header e o conteúdo da home pra baixo da barra */
body.home-page { padding-top: 40px; }
body.home-page .site-header { top: 40px !important; }
@media (max-width: 600px) {
  .mw-promo-strip { font-size: 12px; height: 36px; }
  body.home-page { padding-top: 36px; }
  body.home-page .site-header { top: 36px !important; }
}
.mw-promo-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--dot-pattern);
  background-size: 22px 22px;
  opacity: .25;
  pointer-events: none;
}
.mw-promo-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 11px 24px;
  white-space: nowrap;
  animation: mw-marquee 32s linear infinite;
  width: max-content;
}
.mw-promo-strip:hover .mw-promo-track { animation-play-state: paused; }
.mw-promo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mw-promo-item i {
  font-size: 14px;
  color: #fff;
  opacity: .85;
}
.mw-promo-item strong {
  font-weight: 700;
  letter-spacing: .04em;
}
.mw-promo-item .mw-promo-sep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  margin-left: 38px;
}
@keyframes mw-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .mw-promo-track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; width: auto; }
}

/* ---------- 1. HERO OVERLAY: PAINEL EDITORIAL ---------- */
body.home-page .swiper.hero {
  position: relative;
}
body.home-page .swiper.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line-mid) 50%, transparent 100%);
  z-index: 5;
}
.mw-hero-overlay {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 12px 22px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  box-shadow: 0 14px 36px -12px rgba(30,27,58,.22);
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-deep);
  pointer-events: auto;
}
.mw-hero-overlay-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.mw-hero-overlay-item i {
  font-size: 14px; color: var(--brand);
}
.mw-hero-overlay-stars {
  display: inline-flex; gap: 1px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}
.mw-hero-overlay-divider {
  width: 1px; height: 16px;
  background: var(--line-mid);
}
@media (max-width: 720px) {
  .mw-hero-overlay { display: none; }
}

/* ---------- 2. STATS STRIP — Números que vendem ---------- */
.mw-stats {
  position: relative;
  background: var(--bg-mist);
  padding: 56px 0 60px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.mw-stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--dot-pattern);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: .35;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}
.mw-stats-inner {
  position: relative;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 56px; align-items: center;
}
.mw-stats-headline {
  position: relative;
}
.mw-stats-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.mw-stats-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--brand);
}
.mw-stats-title {
  font-family: var(--font-display);
  font-weight: 500; font-size: clamp(28px, 3vw, 38px);
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--ink-deep);
  margin: 0 0 12px;
}
.mw-stats-title em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mw-stats-sub {
  font-family: var(--font-ui);
  color: var(--ink-soft); font-size: 14.5px; line-height: 1.55;
  margin: 0; max-width: 38ch;
}
.mw-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.mw-stat {
  position: relative; padding: 20px 22px 22px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(30,27,58,.03);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mw-stat::before {
  content: ""; position: absolute;
  top: 0; left: 22px; width: 32px; height: 2px;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  border-radius: 0 0 4px 4px;
}
.mw-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-editorial);
  border-color: rgba(79,70,229,.18);
}
.mw-stat-number {
  font-family: var(--font-display);
  font-weight: 500; font-size: 38px;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--ink-deep);
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 4px;
  margin: 6px 0 8px;
}
.mw-stat-number .mw-stat-suffix {
  font-family: var(--font-ui);
  font-size: 18px; font-weight: 600; color: var(--brand);
  letter-spacing: 0;
}
.mw-stat-label {
  font-family: var(--font-ui);
  font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-soft);
}
.mw-stat-foot {
  margin-top: 10px; font-size: 12.5px;
  color: var(--ink-mute); line-height: 1.4;
}
.mw-stat-foot i {
  color: var(--brand); margin-right: 4px; font-size: 11px;
}
@media (max-width: 1020px) {
  .mw-stats-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .mw-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .mw-stat-number { font-size: 30px; }
}

/* ---------- 3. BRAND AUTHORITY STRIP ---------- */
.mw-brands {
  padding: 52px 0;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.mw-brands-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
}
.mw-brands-label {
  font-family: var(--font-ui);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-mute);
  border-right: 1px solid var(--line-mid);
  padding-right: 36px;
  white-space: nowrap;
}
.mw-brands-label strong { display: block; color: var(--ink-deep); font-size: 13px; letter-spacing: -0.005em; text-transform: none; font-weight: 600; margin-top: 4px; }
.mw-brands-list {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.mw-brand-pill {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-mute);
  letter-spacing: -0.015em;
  transition: color .25s, transform .25s;
  user-select: none;
}
.mw-brand-pill:hover { color: var(--brand); transform: translateY(-2px); }
@media (max-width: 860px) {
  .mw-brands-inner { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .mw-brands-label { border-right: 0; padding-right: 0; padding-bottom: 12px; border-bottom: 1px solid var(--line-mid); }
  .mw-brands-list { justify-content: center; gap: 22px; }
  .mw-brand-pill { font-size: 18px; }
}

/* ---------- 4. WHY US — comparação ---------- */
.mw-why {
  padding: 88px 0 72px;
  background: var(--bg-base);
  position: relative;
}
.mw-why-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.mw-why-head {
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: end; margin-bottom: 44px;
  padding-bottom: 28px; border-bottom: 1px solid var(--line-soft);
}
.mw-why-head h2 {
  font-family: var(--font-display);
  font-weight: 500; font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--ink-deep); margin: 12px 0 0;
  max-width: 22ch;
}
.mw-why-head h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mw-why-head p {
  font-family: var(--font-ui);
  color: var(--ink-soft); font-size: 14.5px; line-height: 1.55;
  margin: 0; max-width: 32ch;
  text-align: right;
}
.mw-why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
}
.mw-why-col {
  padding: 36px 36px 32px;
}
.mw-why-col + .mw-why-col {
  border-left: 1px dashed var(--line-mid);
}
.mw-why-col-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.mw-why-col-head h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em; margin: 0;
}
.mw-why-col-tag {
  font-family: var(--font-ui);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px;
}
.mw-why-col-here .mw-why-col-tag {
  background: var(--brand-soft); color: var(--brand);
}
.mw-why-col-here h3 {
  color: var(--ink-deep);
}
.mw-why-col-them .mw-why-col-tag {
  background: rgba(15,23,42,.06); color: var(--ink-mute);
}
.mw-why-col-them h3 { color: var(--ink-mute); }
.mw-why-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.mw-why-col li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-ui);
  font-size: 14.5px; line-height: 1.45;
  color: var(--ink-soft);
}
.mw-why-col-here li {
  color: var(--ink-deep);
  font-weight: 500;
}
.mw-why-col li i {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}
.mw-why-col-here li i {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
}
.mw-why-col-them li i {
  color: var(--ink-mute);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(15,23,42,.05);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
}
@media (max-width: 860px) {
  .mw-why-head { grid-template-columns: 1fr; gap: 18px; }
  .mw-why-head p { text-align: left; }
  .mw-why-grid { grid-template-columns: 1fr; }
  .mw-why-col + .mw-why-col { border-left: 0; border-top: 1px dashed var(--line-mid); }
  .mw-why-col { padding: 28px 24px; }
}

/* ---------- 5. 3-STEP PROCESS ---------- */
.mw-steps {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-mist) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.mw-steps-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.mw-steps-head {
  text-align: center; margin-bottom: 48px;
}
.mw-steps-head .mw-stats-eyebrow { justify-content: center; }
.mw-steps-head .mw-stats-eyebrow::before { display: none; }
.mw-steps-head h2 {
  font-family: var(--font-display);
  font-weight: 500; font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em; line-height: 1.08;
  color: var(--ink-deep);
  margin: 8px 0 8px;
}
.mw-steps-head p {
  color: var(--ink-soft); font-size: 15px; line-height: 1.5;
  margin: 0 auto; max-width: 52ch;
}
.mw-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; position: relative;
}
.mw-steps-grid::before {
  content: "";
  position: absolute;
  top: 42px; left: 16%; right: 16%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-mid) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.mw-step {
  position: relative; z-index: 1;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 28px 26px 26px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mw-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-editorial);
  border-color: rgba(79,70,229,.20);
}
.mw-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--line-mid);
  color: var(--ink-deep);
  font-family: var(--font-display);
  font-weight: 500; font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  position: relative;
}
.mw-step-num::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,.20);
  pointer-events: none;
}
.mw-step h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-deep);
  margin: 0 0 8px;
}
.mw-step p {
  font-family: var(--font-ui);
  color: var(--ink-soft); font-size: 14px; line-height: 1.5;
  margin: 0;
}
.mw-step-icon {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 12px; color: var(--brand); font-weight: 600;
  letter-spacing: .04em;
}
@media (max-width: 760px) {
  .mw-steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .mw-steps-grid::before { display: none; }
}

/* ---------- 6. FAQ — Objection handling ---------- */
.mw-faq {
  padding: 88px 0;
  background: var(--bg-base);
}
.mw-faq-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px;
  align-items: start;
}
.mw-faq-side {
  position: sticky; top: 24px;
}
.mw-faq-side h2 {
  font-family: var(--font-display);
  font-weight: 500; font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em; line-height: 1.08;
  color: var(--ink-deep); margin: 12px 0 16px;
}
.mw-faq-side h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mw-faq-side p {
  color: var(--ink-soft); font-size: 14.5px; line-height: 1.55;
  margin: 0 0 20px; max-width: 32ch;
}
.mw-faq-side .mw-faq-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  color: var(--ink-deep);
  font-family: var(--font-ui); font-weight: 600;
  font-size: 13.5px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-mid);
  text-decoration: none;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.mw-faq-side .mw-faq-cta i {
  color: #25D366; font-size: 16px;
}
.mw-faq-side .mw-faq-cta:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 20px -8px rgba(79,70,229,.30);
  transform: translateY(-1px);
}
.mw-faq-list { display: flex; flex-direction: column; gap: 12px; }
.mw-faq-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.mw-faq-item[open] {
  border-color: rgba(79,70,229,.25);
  box-shadow: 0 14px 32px -16px rgba(79,70,229,.22);
}
.mw-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-ui);
  font-weight: 600; font-size: 15px;
  color: var(--ink-deep);
  letter-spacing: -0.005em;
}
.mw-faq-item summary::-webkit-details-marker { display: none; }
.mw-faq-item summary::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: 12px;
  color: var(--brand);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.mw-faq-item[open] summary::after {
  content: "\f068";
  background: var(--brand);
  color: #fff;
}
.mw-faq-body {
  padding: 0 22px 22px;
  font-family: var(--font-ui);
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink-soft);
}
.mw-faq-body strong { color: var(--ink-deep); font-weight: 600; }
@media (max-width: 860px) {
  .mw-faq-inner { grid-template-columns: 1fr; gap: 28px; }
  .mw-faq-side { position: static; }
}

/* ---------- 7. FINAL CTA — Editorial closer ---------- */
.mw-final-cta {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(124,58,237,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(79,70,229,.20) 0%, transparent 55%),
    linear-gradient(135deg, #1e1b3a 0%, #2d1a4a 60%, #1e1b3a 100%);
  color: #fff;
}
.mw-final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--dot-pattern);
  background-size: 24px 24px;
  opacity: .35;
  pointer-events: none;
}
.mw-final-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(30,27,58,.45) 100%);
  pointer-events: none;
}
.mw-final-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  text-align: center;
}
.mw-final-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-ui);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
}
.mw-final-eyebrow::before, .mw-final-eyebrow::after {
  content: ""; width: 36px; height: 1px;
  background: rgba(255,255,255,.3);
}
body.home-page .mw-final-cta .mw-final-inner h2 {
  font-family: var(--font-display);
  font-weight: 500; font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em; line-height: 1.05;
  color: #fff !important;
  margin: 0 0 16px;
  max-width: 18ch;
  margin-inline: auto;
}
body.home-page .mw-final-cta .mw-final-inner h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #c4b5fd 0%, #fff 50%, #c4b5fd 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}
body.home-page .mw-final-cta .mw-final-inner p {
  font-family: var(--font-ui);
  color: rgba(255,255,255,.82) !important;
  font-size: 16px; line-height: 1.6;
  margin: 0 auto 32px; max-width: 56ch;
}
.mw-final-actions {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.mw-final-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink-deep) !important;
  font-family: var(--font-ui); font-weight: 700;
  font-size: 14.5px; letter-spacing: .01em;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 14px 40px -12px rgba(0,0,0,.55);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.mw-final-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px -16px rgba(0,0,0,.65);
  background: var(--gold-soft);
}
.mw-final-btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff !important;
  font-family: var(--font-ui); font-weight: 600;
  font-size: 14px;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.mw-final-btn-secondary:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.6);
}
.mw-final-trust {
  margin-top: 40px;
  display: inline-flex; align-items: center; gap: 28px;
  font-family: var(--font-ui);
  font-size: 12.5px; color: rgba(255,255,255,.55);
  flex-wrap: wrap; justify-content: center;
}
.mw-final-trust span {
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: .04em;
}
.mw-final-trust span i { color: rgba(255,255,255,.7); }
@media (max-width: 600px) {
  .mw-final-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .mw-final-btn-primary, .mw-final-btn-secondary { justify-content: center; }
}

/* ---------- 8. WHATSAPP — refino do botão flutuante existente ----------
   Aplicado só na home: o botão (.whatsapp-btn) já existe em todo o site,
   apenas elevamos o brilho premium e adicionamos o pulse. */
body.home-page .whatsapp-btn {
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #1fae5f 0%, #0ec768 60%, #25D366 100%) !important;
  box-shadow:
    0 18px 38px -12px rgba(14, 199, 104, .55),
    0 6px 14px -4px rgba(30, 27, 58, .25),
    inset 0 1px 0 rgba(255,255,255,.25) !important;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
body.home-page .whatsapp-btn::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .45);
  animation: mw-wa-pulse 2.4s infinite;
  pointer-events: none;
}
body.home-page .whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 22px 50px -12px rgba(14, 199, 104, .65),
    0 8px 16px -4px rgba(30, 27, 58, .30),
    inset 0 1px 0 rgba(255,255,255,.35) !important;
}
@keyframes mw-wa-pulse {
  0%   { transform: scale(1);   opacity: .85; }
  70%  { transform: scale(1.55); opacity: 0;   }
  100% { transform: scale(1.55); opacity: 0;   }
}
@media (prefers-reduced-motion: reduce) {
  body.home-page .whatsapp-btn::before { animation: none; }
}

/* ---------- 9. REFINOS EDITORIAIS sobre seções existentes ---------- */
/* Section titles ganham eyebrow + pequeno quarter-circle ornament */
body.home-page .section .sec-title {
  font-size: clamp(30px, 3.6vw, 44px) !important;
  padding-bottom: 22px !important;
  margin-bottom: 36px !important;
}
body.home-page .section .sec-title::after {
  height: 3px !important;
  width: 56px !important;
  background: linear-gradient(90deg, #7c3aed, #4f46e5) !important;
  border-radius: 2px;
}

/* Trust strip refinado: bordas mais editoriais + leve fundo */
.pv2-trust-strip {
  background: linear-gradient(180deg, #fff 0%, var(--bg-mist) 100%) !important;
  padding: 32px 0 !important;
}
.pv2-trust-item strong {
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: -0.01em !important;
}

/* Cats chips com leve refino: hover suave, primeiro chip destacado */
body.home-page .cats {
  padding: 18px 0 !important;
  background: #fff !important;
  border-top: 1px solid var(--line-soft) !important;
}
body.home-page .cats ul::before {
  content: "Categorias";
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center;
  margin-right: 8px;
  padding: 8px 0;
}

/* Testimonials enriquecidos: estrelas + selo "compra verificada" */
body.home-page .tswiper .swiper-slide {
  padding: 32px 26px 28px !important;
}
body.home-page .tswiper .swiper-slide::after {
  content: "\f00c\00a0\00a0Compra verificada";
  font-family: "Font Awesome 6 Free", var(--font-ui);
  font-weight: 700; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand);
  position: absolute;
  bottom: 18px; left: 26px;
  display: inline-flex; align-items: center; gap: 6px;
}
body.home-page .tswiper .swiper-slide p {
  margin-bottom: 24px !important;
}

/* Bundle: leve refino com badge premium */
body.home-page .bundle {
  position: relative;
}
body.home-page .bundle::before {
  content: "Combo selecionado";
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 8px; border-radius: 4px;
  z-index: 2;
}

/* Coupon-section com hairline ornaments */
body.home-page .coupon-section {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-mist) 100%);
  padding: 48px 0 56px !important;
}
/* Mesma especificidade que premium-home.css (3 classes + 1 tag) — vence por ordem de cascata.
   Restaura o gradiente violeta sobreposto pela regra "background:#fff" do premium-home.css. */
body.home-page .coupon-section .coupon {
  background: var(--brand-grad) !important;
  color: #fff !important;
  border-radius: var(--radius-lg);
  padding: 28px 32px !important;
  box-shadow: 0 26px 60px -22px rgba(79,70,229,.55);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
/* Garante visibilidade do ícone (fundo + borda contra o gradiente violeta) */
body.home-page .coupon-section .coupon-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  border-radius: 16px !important;
  color: #fff !important;
  font-size: 26px !important;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
/* Força textos do cupom em branco contra o fundo violeta — vence regras
   do main6/main-modern/premium-home que assumem fundo claro. */
body.home-page .coupon-section .coupon h3,
body.home-page .coupon-section .coupon-body h3 {
  color: #fff !important;
}
body.home-page .coupon-section .coupon p,
body.home-page .coupon-section .coupon-body p {
  color: rgba(255,255,255,.85) !important;
}
body.home-page .coupon-section .coupon-label {
  color: rgba(255,255,255,.78) !important;
}

/* Premium enterprise: ornament dourado de canto */
body.home-page .premium-enterprise {
  padding: 64px !important;
}
body.home-page .premium-enterprise::after {
  content: "B2B";
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-style: italic; font-weight: 500;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  background: rgba(232,221,184,.18);
  padding: 5px 12px; border-radius: 999px;
}
@media (max-width: 860px) {
  body.home-page .premium-enterprise { padding: 36px 24px !important; }
  body.home-page .premium-enterprise::after { top: 14px; right: 14px; font-size: 11px; }
}

/* Hero caption maior peso editorial */
body.home-page .swiper.hero .caption h2 {
  font-weight: 500 !important;
}

/* Ribbon (react) — visual neutralizado caso renderize antes do JS */
.react-home-ribbon { min-height: 0; }

/* ---------- ANIMAÇÃO: counter (visual quando entra na viewport) ---------- */
.mw-stat.is-visible .mw-stat-number {
  animation: mw-stat-pop .6s cubic-bezier(.2,.9,.2,1.2);
}
@keyframes mw-stat-pop {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .mw-stat.is-visible .mw-stat-number { animation: none; }
}

/* ---------- 10. FOOTER WAVE — ocultar na home ----------
   O .footer-wave é uma SVG curva projetada para transitar do conteúdo claro
   para o footer escuro. Como na home agora o Final CTA já é dark violet, a wave
   cria duas faixas brancas estranhas. Some no body.home-page e remove o gap. */
body.home-page .footer-wave { display: none !important; }
body.home-page .mw-final-cta { margin-bottom: 0 !important; padding-bottom: 88px !important; }
body.home-page .footer { margin-top: 0 !important; }

/* ---------- IMPRESSÃO ---------- */
@media print {
  .mw-promo-strip { display: none !important; }
}
