/* ═══════════════════════════════════════════════════
   Design System 2.0 — O Próximo Passo no Yoga
   Mobile-first, fluid type, modern tokens
   ═══════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --primary: #6b2b43;
  --primary-light: #8a3d5a;
  --primary-dark: #4e1e31;
  --primary-xlight: #f3e8ed;

  --bg-white: #ffffff;
  --bg-beige: #fcfaf5;
  --bg-cream: #f5f0e8;

  --cta-green: #18b85b;
  --cta-green-dark: #0f8f46;

  --terracotta: #C4714A;
  --terracotta-dark: #A85A38;
  --warm-white: #FDFAF4;

  --charcoal: #2C2C2C;
  --charcoal-soft: #4A4A4A;
  --mid-grey: #777;
  --light-grey: #b0b0b0;
  --border-light: #e8e3da;

  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.08), 0 16px 48px rgba(0,0,0,.06);
  --shadow-xl: 0 12px 40px rgba(0,0,0,.1), 0 24px 64px rgba(0,0,0,.08);

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  background: var(--bg-white);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── TOP STRIP ─── */
.top-strip { display: none; }

/* ─── TOP ALERT BAR ─── */
.top-alert-bar {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-alert-bar .top-alert-text {
  display: inline-block;
}

/* ─── HERO ─── */
.hero {
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.9) 36%,
      rgba(255,255,255,0.3) 62%,
      rgba(255,255,255,0.02) 100%
    ),
    url('images/Foto-mobilebackground.webp') no-repeat right -22px top / cover;
  color: var(--charcoal);
  padding: 16px 16px 18px;
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: flex;
  align-items: flex-start;
}
.hero::before { display: none; }
.hero-inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.hero-content {
  order: 1;
  width: min(62%, 250px);
  max-width: 62%;
  text-align: left;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
}
.hero-image {
  order: 2;
  display: block;
  width: calc(100% + 32px);
  margin-left: calc(-1 * var(--space-md));
  margin-top: var(--space-xl);
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
}
.hero-tag { display: none; }

/* Logo inside hero */
.logo-hero {
  margin-bottom: 14px;
  padding-top: 0;
}
.logo-hero img {
  max-height: 98px;
  margin: 0;
}

/* Date line */
.hero-date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: 0;
}
.hero-date span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(107,43,67,.12);
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(78,30,49,.05);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 6.15vw, 25px);
  line-height: 1.13;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero h1 strong {
  color: var(--primary-dark);
  font-weight: 700;
}
.hero-copy-long h1 {
  font-size: clamp(20px, 5.75vw, 23px);
  line-height: 1.12;
}
.hero-copy-long .hero-sub {
  font-size: 14px;
  line-height: 1.48;
}
.hero-sub {
  font-size: 13.5px;
  color: var(--charcoal-soft);
  line-height: 1.42;
  margin-bottom: 24px;
  max-width: 100%;
}
.hero-index .hero-sub {
  margin-bottom: 18px;
}
.hero-cold {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(249,245,239,0.9) 100%
    ),
    url('images/fundomobile.webp') no-repeat center center / cover;
}
.hero-cold .hero-content {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.hero-cold .logo-hero img {
  margin: 0 auto;
}
.hero-cold .hero-date {
  justify-content: center;
}
.hero-cold .btn-cta,
.hero-cold .lot-progress {
  margin-left: auto;
  margin-right: auto;
}
.hero-sub strong {
  font-weight: 600;
  color: var(--charcoal);
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: var(--space-md);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-sub-cta { display: none; }
.hero-image {
  display: none;
}
.meta-items { display: none; }

/* Hero progress bar */
.hero-progress {
  margin-top: var(--space-md);
}
.hero-progress .progress-bar {
  margin: 0 0 4px;
}
.hero-progress .progress-label {
  text-align: left;
  font-size: 11px;
  color: var(--mid-grey);
  font-weight: 500;
}

/* ─── LOT BADGE & PROGRESS ─── */
.lot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}
.price-lot-badge {
  margin: 0 auto 10px;
}
.lot-progress {
  margin: 10px 0 0;
  width: min(calc(100vw - 32px), 335px);
  max-width: none;
}
.lot-progress .progress-bar {
  height: 6px;
  background: var(--bg-cream);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 6px;
}
.lot-progress .progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  border-radius: var(--radius-full);
  transition: width 1.2s ease;
}
.lot-progress .progress-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mid-grey);
  text-align: left;
}
.price-box .btn-cta,
.price-box .lot-progress {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .lot-progress { margin-left: 0; margin-right: 0; }
  .price-box .lot-progress { margin-left: auto; margin-right: auto; }
  .lot-progress .progress-label { text-align: left; }
}

/* ─── CTA BUTTON ─── */
.btn-cta {
  display: block;
  width: min(calc(100vw - 32px), 335px);
  background: linear-gradient(135deg, var(--cta-green), var(--cta-green-dark));
  color: white;
  text-decoration: none;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  transition: all .25s ease;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  filter: brightness(1.05);
}
.btn-cta.secondary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 4px 20px rgba(107,43,67,.3);
}
.btn-cta.secondary:hover {
  box-shadow: 0 8px 28px rgba(107,43,67,.4);
}

/* ─── SOCIAL PROOF STATS ─── */
.social-proof {
  background: var(--primary);
  color: white;
  padding: var(--space-md) var(--space-md);
}
.social-proof-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #f0c8a8;
  line-height: 1;
}
.stat-label {
  font-size: clamp(10px, 2vw, 13px);
  opacity: .75;
  margin-top: 4px;
  line-height: 1.3;
  font-weight: 500;
}

/* ─── SECTIONS ─── */
section {
  padding: var(--space-2xl) var(--space-md);
}
.section-inner {
  max-width: 920px;
  width: min(100%, 920px);
  margin: 0 auto;
}
.section-tag {
  display: block;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--charcoal);
  letter-spacing: -.01em;
  text-align: center;
}
.section-sub {
  font-size: 16px;
  color: var(--mid-grey);
  max-width: 660px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── MIRROR (PAIN POINTS) ─── */
.mirror {
  background: linear-gradient(180deg, var(--bg-beige) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.mirror::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}
.mirror-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mirror-text p {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.9;
  color: var(--charcoal-soft);
  margin-bottom: var(--space-lg);
}
.mirror .section-tag {
  font-size: clamp(20px, 3vw, 28px);
}
.mirror-text .highlight {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: var(--space-md);
  text-align: left;
  margin: var(--space-xl) auto;
  max-width: 500px;
}
.mirror-highlight {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 560px;
  text-align: center;
}
.mirror-highlight p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: white;
  margin: 0;
}

/* ─── FOR WHO ─── */
.for-who { background: var(--bg-beige); }
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.who-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.who-card .wc-icon {
  width: 48px;
  height: 48px;
  min-height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-xlight);
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
  order: -1;
}
.who-card .wc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
}
.who-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-soft);
}
.who-card p strong {
  color: var(--charcoal);
  font-weight: 600;
}
.who-footnote {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--primary);
  margin-top: var(--space-xl);
}

/* ─── SCHEDULE GRID ─── */
.agenda { background: var(--bg-white); }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}
.schedule-card {
  background: var(--bg-beige);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--border-light);
}
.schedule-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.schedule-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.schedule-card h4 {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.schedule-card p {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--mid-grey);
  line-height: 1.8;
  flex: 1;
}

/* ─── BEFORE / AFTER ─── */
.before-after {
  background: var(--primary);
  color: white;
  padding: var(--space-2xl) var(--space-md);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-xl);
}
.ba-col { padding: var(--space-lg); }
.ba-col.before { background: rgba(0,0,0,.25); }
.ba-col.after { background: rgba(255,255,255,.1); }
.ba-col h3 {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: var(--space-md);
  font-weight: 700;
  text-align: center;
}
.ba-item {
  display: flex;
  gap: 10px;
  margin-bottom: var(--space-md);
  font-size: 15px;
  line-height: 1.5;
  align-items: flex-start;
}
.ba-item .bi {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 15px;
  opacity: .7;
}

/* ─── DELIVERABLES ─── */
.deliverables { background: var(--bg-beige); }
.del-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}
.del-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--primary);
  transition: transform .2s, box-shadow .2s;
}
.del-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.del-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.del-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 1.5;
  fill: none;
}
.del-body h4 {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.del-body p {
  font-size: clamp(14px, 1.8vw, 15px);
  color: var(--mid-grey);
  line-height: 1.6;
}

/* ─── TESTIMONIALS SLIDESHOW ─── */
.testimonials { background: var(--bg-white); overflow: hidden; }
.testi-slideshow {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.testi-track-container {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.testi-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.testi-slide {
  flex: 0 0 100%;
  margin-right: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-beige);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.testi-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.testi-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}
.testi-btn {
  display: none;
}
@media (min-width: 768px) {
  .testi-slide { flex: 0 0 calc(50% - 10px); }
  .testi-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border-light);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all .2s;
    z-index: 10;
  }
  .testi-btn:hover {
    background: white;
    box-shadow: var(--shadow-lg);
  }
  .testi-btn.prev { left: -22px; }
  .testi-btn.next { right: -22px; }
  .testi-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--charcoal);
    stroke-width: 2;
    fill: none;
  }
}
@media (min-width: 1024px) {
  .testi-slide { flex: 0 0 calc(33.333% - 14px); }
}

/* ─── DEPOIMENTOS EM CAIXAS ─── */
.testi-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: var(--space-xl) auto 0;
  padding: 0 var(--space-md);
}
.testi-box {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.testi-box::before {
  content: '';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  width: 32px;
  height: 24px;
  background: var(--primary-xlight);
  border-radius: 4px;
  opacity: .5;
}
.testi-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testi-box p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal-soft);
  font-style: italic;
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
}
.testi-box cite {
  font-size: 12px;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-style: normal;
  font-weight: 500;
}
.testi-box cite strong {
  color: var(--charcoal);
  font-weight: 700;
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .testi-boxes { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 0 var(--space-xl); }
  .testi-box { padding: 32px 28px; }
}
@media (min-width: 1024px) {
  .testi-boxes { grid-template-columns: repeat(3, 1fr); }
}

/* ─── BABI BIO ─── */
.babi-section {
  background: var(--primary);
  color: white;
  padding: var(--space-2xl) var(--space-md);
}
.babi-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.babi-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  border: 2px solid rgba(255,255,255,.15);
  max-width: 280px;
  margin: 0 auto;
}
.babi-photo-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.babi-tag {
  font-size: clamp(11px, 1.2vw, 12px);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f0c8a8;
  margin-bottom: var(--space-md);
  text-align: center;
}
.babi-bio h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
  line-height: 1.3;
  text-align: center;
}
.babi-bio p {
  font-size: clamp(15px, 1.8vw, 17px);
  opacity: .92;
  line-height: 1.9;
  margin-bottom: var(--space-md);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.babi-stats {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,.2);
  justify-content: center;
}
.bs-item { text-align: center; flex: 1; min-width: 100px; }
.bs-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #f0c8a8;
  line-height: 1.2;
}
.bs-label {
  font-size: clamp(11px, 1.2vw, 12px);
  opacity: .85;
  line-height: 1.4;
  margin-top: 4px;
}

/* ─── PHOTO TESTIMONIALS SLIDESHOW ─── */
.photo-testimonials { background: var(--bg-white); }
.photo-slideshow {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.photo-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.photo-track {
  display: flex;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  gap: 16px;
}
.photo-slide {
  flex: 0 0 calc(100% - 16px);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
}
.photo-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.photo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.photo-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}
.photo-btn {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border-light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all .2s;
  z-index: 10;
}
.photo-btn.prev { left: 8px; }
.photo-btn.next { right: 8px; }
.photo-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
  stroke-width: 2;
  fill: none;
}
@media (min-width: 768px) {
  .photo-slide { flex: 0 0 calc(50% - 8px); }
  .photo-btn {
    width: 44px;
    height: 44px;
  }
  .photo-btn:hover {
    background: white;
    box-shadow: var(--shadow-lg);
  }
  .photo-btn.prev { left: -22px; }
  .photo-btn.next { right: -22px; }
  .photo-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--charcoal);
    stroke-width: 2;
    fill: none;
  }
}
@media (min-width: 1024px) {
  .photo-slide { flex: 0 0 calc(33.333% - 11px); }
}

/* ─── PHOTO GRID (galeria estatica) ─── */
.photo-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  overflow: hidden;
}
.photo-grid-item {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
.photo-grid-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.photo-grid-item:hover img {
  transform: scale(1.05);
}

/* ─── PRICE BOX ─── */
.price-section {
  background: var(--bg-beige);
  padding: var(--space-2xl) var(--space-md);
}
.price-box {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
}
.price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: var(--space-md);
}
.price-sub-label {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-weight: 600;
}
.price-value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.price-value span {
  font-size: 1.2rem;
  color: var(--mid-grey);
}
.price-list {
  list-style: none;
  text-align: left;
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.price-list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--charcoal-soft);
  align-items: flex-start;
  line-height: 1.5;
}
.price-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  stroke: var(--cta-green);
  stroke-width: 2;
  fill: none;
}
.price-urgency {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-top: var(--space-md);
}
.price-box-logo {
  margin-bottom: var(--space-md);
}
.price-box-logo img {
  max-width: 140px;
  height: auto;
  margin: 0 auto;
}
.payment-methods {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 12px auto;
  padding: 0;
  overflow: hidden;
}
.payment-methods img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: .85;
  filter: invert(1) grayscale(1);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .payment-methods { overflow: hidden; padding: 16px 0; }
  .payment-methods img {
    width: 100%;
    height: auto;
    opacity: 1;
    transform: scale(1.7);
    transform-origin: center;
  }
}
.progress-bar {
  background: var(--bg-cream);
  border-radius: var(--radius-full);
  height: 8px;
  margin: var(--space-sm) 0 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.2s ease;
}
.progress-label {
  font-size: 11px;
  color: var(--mid-grey);
  text-align: right;
  font-weight: 500;
}

/* ─── FAQ ─── */
.faq-section { background: var(--bg-white); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--space-sm);
}
.faq-item {
  background: var(--bg-beige);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: background .2s;
}
.faq-item.open {
  background: var(--primary-xlight);
}
.faq-q {
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  user-select: none;
  transition: background .2s;
  gap: var(--space-md);
}
.faq-q:hover { background: rgba(0,0,0,.02); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .3s ease;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 14px;
}
.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.75;
  padding: 0 var(--space-lg);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 var(--space-lg) var(--space-md);
}
.faq-support {
  text-align: center;
  margin-top: var(--space-xl);
}
.faq-support p {
  font-size: 15px;
  color: var(--mid-grey);
  margin-bottom: var(--space-md);
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  color: white;
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}
.final-cta .event-date {
  font-size: 13px;
  opacity: .7;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  font-weight: 500;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.35;
}
.final-cta p {
  font-size: 15px;
  opacity: .85;
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  line-height: 1.75;
}
.final-cta .value-prop {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  max-width: 420px;
  margin: 0 auto var(--space-lg);
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}
.vp-item { text-align: center; }
.vp-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}
.vp-label {
  font-size: 12px;
  opacity: .75;
  margin-top: 2px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  font-size: 12px;
  line-height: 1.8;
}

/* ─── UTILITY / MIGRATED PAGES ─── */
.utility-page {
  background:
    radial-gradient(circle at top, rgba(243, 232, 237, 0.86), rgba(255,255,255,0.96) 40%, rgba(252,250,245,1) 100%);
  min-height: 100vh;
}
.utility-page,
.utility-page *,
.utility-page *::before,
.utility-page *::after {
  box-sizing: border-box;
}
.utility-page.dark {
  background:
    linear-gradient(180deg, rgba(10, 7, 10, 0.88), rgba(32, 20, 29, 0.92)),
    url('images/fundoimersao2.webp') center/cover no-repeat fixed;
  color: #fff;
}
.utility-page.dark .section-tag,
.utility-page.dark .section-title,
.utility-page.dark .section-sub,
.utility-page.dark p,
.utility-page.dark li,
.utility-page.dark h1,
.utility-page.dark h2,
.utility-page.dark h3 {
  color: inherit;
}
.utility-hero {
  padding: 64px 16px 28px;
}
.utility-hero .section-inner {
  max-width: 980px;
}
.utility-logo {
  width: min(240px, 62vw);
  margin: 0 auto 24px;
}
.utility-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(107,43,67,.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.utility-page.dark .utility-kicker {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #f6e7ef;
}
.utility-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
  max-width: 920px;
  margin: 18px 0 18px;
  overflow-wrap: anywhere;
}
.utility-hero .hero-lead {
  max-width: 760px;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.6;
  color: var(--charcoal-soft);
  overflow-wrap: anywhere;
}
.utility-page.dark .hero-lead {
  color: rgba(255,255,255,.78);
}
.utility-intro-card,
.step-card,
.pending-card,
.survey-card,
.video-card,
.offer-note-card {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(107,43,67,.12);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg);
}
.utility-page.dark .utility-intro-card,
.utility-page.dark .step-card,
.utility-page.dark .pending-card,
.utility-page.dark .survey-card,
.utility-page.dark .video-card,
.utility-page.dark .offer-note-card {
  background: rgba(29, 24, 29, .88);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.utility-intro-card {
  padding: 24px 22px;
  margin-top: 20px;
  max-width: 840px;
}
.utility-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 26px;
}
.step-card,
.pending-card,
.survey-card,
.offer-note-card {
  padding: 24px 20px;
}
.step-card h3,
.pending-card h3,
.survey-card h3,
.offer-note-card h3 {
  font-family: var(--font-display);
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.12;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.step-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #b39855;
  margin-bottom: 14px;
}
.step-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(24,184,91,.12);
  color: #d7ffe6;
  border: 1px solid rgba(24,184,91,.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.utility-page:not(.dark) .step-status {
  color: var(--cta-green-dark);
}
.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 0;
}
.step-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
}
.step-list svg,
.inline-check svg {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
  stroke: var(--cta-green);
  stroke-width: 2;
  fill: none;
}
.step-actions,
.pending-actions,
.survey-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.btn-cta.utility-secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid rgba(107,43,67,.12);
  box-shadow: 0 2px 12px rgba(107,43,67,.06);
  transition: all .25s ease;
}
.btn-cta.utility-secondary:hover {
  background: #faf8f9;
  border-color: rgba(107,43,67,.25);
  box-shadow: 0 4px 16px rgba(107,43,67,.1);
  transform: translateY(-2px);
}
.utility-page.dark .btn-cta.utility-secondary {
  background: rgba(255,255,255,.96);
}
.utility-mini {
  font-size: 13px;
  line-height: 1.55;
  color: var(--mid-grey);
}
.utility-page.dark .utility-mini {
  color: rgba(255,255,255,.7);
}
.pending-highlight {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.pending-highlight .inline-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.survey-shell {
  padding: 52px 16px 64px;
}
.survey-shell .section-inner {
  max-width: 980px;
}
.survey-grid {
  display: grid;
  gap: 22px;
}
.survey-card form {
  display: grid;
  gap: 16px;
}
.survey-row {
  display: grid;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(107,43,67,.16);
  background: #fff;
  color: var(--charcoal);
  padding: 14px 16px;
  font: inherit;
  line-height: 1.45;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.field textarea {
  min-height: 124px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(107,43,67,.4);
  box-shadow: 0 0 0 4px rgba(107,43,67,.08);
}
.field .help {
  font-size: 12px;
  color: var(--mid-grey);
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #d15656;
  box-shadow: 0 0 0 4px rgba(209,86,86,.08);
}
.field-error {
  display: none;
  font-size: 12px;
  color: #b23a3a;
}
.field.error .field-error {
  display: block;
}
.check-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg-beige);
  border: 1px solid rgba(107,43,67,.08);
}
.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.survey-status {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
}
.survey-status.show {
  display: block;
}
.survey-status.error {
  background: #fff0f0;
  border: 1px solid #f1cccc;
  color: #8d2c2c;
}
.survey-status.success {
  background: #eefbf3;
  border: 1px solid #cdecd8;
  color: #116936;
}
.btn-loading {
  opacity: .72;
  pointer-events: none;
}

.video-proof-section {
  padding: 56px 16px 68px;
}
.video-proof-grid {
  display: grid;
  gap: 18px;
}
.video-card {
  overflow: hidden;
  padding: 0;
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}
.video-card-body {
  padding: 16px 16px 18px;
}
.video-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}
.video-card-body p {
  color: var(--mid-grey);
}
.utility-page.dark .video-card-body p {
  color: rgba(255,255,255,.72);
}

.offer-legacy-note {
  padding: 20px 16px 0;
}
.offer-note-card p + p {
  margin-top: 12px;
}

.thanks-page {
  background:
    radial-gradient(circle at top, rgba(245, 234, 238, 0.92), rgba(255,255,255,0.98) 40%, rgba(252,250,245,1) 100%);
}
.thanks-page .section-inner,
.survey-wizard-page .section-inner {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}
.thanks-hero {
  padding: 52px 16px 22px;
  text-align: center;
}
.thanks-page .utility-logo,
.survey-wizard-page .utility-logo {
  width: min(260px, 66vw);
  margin-bottom: 18px;
}
.thanks-page .utility-kicker,
.survey-wizard-page .utility-kicker {
  background: rgba(255,255,255,.92);
}
.thanks-page .hero-lead,
.survey-wizard-page .hero-lead {
  max-width: 720px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}
.thanks-page .utility-hero h1,
.survey-wizard-header h1,
.survey-question-head h2 {
  overflow-wrap: anywhere;
}
.thanks-intro {
  margin-inline: auto;
  text-align: left;
}
.thanks-steps-section {
  padding: 10px 16px 72px;
}
.thanks-progress-note {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.thanks-progress-note p {
  color: var(--mid-grey);
}
.thanks-steps-grid {
  display: grid;
  gap: 18px;
}
.thanks-step-card {
  background: rgba(255,255,255,.94);
  width: 100%;
  max-width: 100%;
}
.thanks-step-primary {
  border-color: rgba(54, 172, 92, .18);
  box-shadow: 0 18px 40px rgba(54, 172, 92, .08), var(--shadow-lg);
}
.thanks-step-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.survey-wizard-page {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.64), rgba(255,255,255,0.94)),
    radial-gradient(circle at top, rgba(245, 234, 238, 0.95), rgba(252,250,245,1) 58%);
}
.survey-wizard-shell {
  padding: 44px 16px 72px;
}
.survey-wizard-shell .section-inner {
  max-width: 820px;
}
.survey-wizard-header {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 26px;
}
.survey-wizard-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.08;
  max-width: 760px;
}
.survey-wizard-card {
  border-radius: 28px;
  border: 1px solid rgba(107,43,67,.12);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
  padding: 22px 18px;
  width: 100%;
  max-width: 100%;
}
.survey-progress-top {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.survey-progress-track {
  height: 6px;
  background: rgba(107,43,67,.08);
  border-radius: 999px;
  overflow: hidden;
}
.survey-progress-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #6b2b43, #8a3d5b);
  transition: width .25s ease;
}
.survey-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mid-grey);
}
.survey-question-wrap {
  min-height: 360px;
}
.survey-question-card {
  display: grid;
  gap: 20px;
  align-content: start;
}
.survey-question-head {
  display: grid;
  gap: 10px;
}
.survey-question-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(107,43,67,.08);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
}
.survey-question-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.08;
}
.survey-question-head p {
  color: var(--mid-grey);
  line-height: 1.6;
  max-width: 580px;
}
.survey-input-line input,
.survey-textarea-wrap textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(107,43,67,.18);
  background: transparent;
  color: var(--charcoal);
  font: inherit;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.35;
  padding: 10px 0 12px;
  border-radius: 0;
}
.survey-input-line input::placeholder,
.survey-textarea-wrap textarea::placeholder {
  color: #b199a4;
}
.survey-input-line input:focus,
.survey-textarea-wrap textarea:focus {
  outline: none;
  border-bottom-color: var(--primary-dark);
}
.survey-textarea-wrap textarea {
  min-height: 180px;
  resize: vertical;
}
.survey-options {
  display: grid;
  gap: 12px;
}
.survey-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(107,43,67,.18);
  background: #fff;
  color: var(--primary-dark);
  text-align: left;
  font: inherit;
  font-size: clamp(17px, 3vw, 22px);
  font-weight: 600;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.survey-option:hover {
  transform: translateY(-1px);
  border-color: rgba(107,43,67,.32);
}
.survey-option.is-selected {
  background: rgba(107,43,67,.08);
  border-color: rgba(107,43,67,.42);
  box-shadow: 0 8px 20px rgba(107,43,67,.08);
}
.survey-option-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(107,43,67,.1);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.survey-wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}
.survey-nav-button.secondary {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid rgba(107,43,67,.16);
  background: rgba(255,255,255,.85);
  color: var(--primary-dark);
  font: inherit;
  font-weight: 700;
}

@media (min-width: 768px) {
  .utility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .survey-row.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .video-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .thanks-steps-grid {
    grid-template-columns: 1.1fr .9fr .9fr;
    align-items: start;
  }
  .survey-wizard-card {
    padding: 28px 30px;
  }
}

@media (max-width: 767px) {
  .thanks-page .utility-logo,
  .survey-wizard-page .utility-logo {
    width: min(220px, 58vw);
  }
  .thanks-page .utility-hero h1,
  .survey-wizard-header h1 {
    max-width: 320px;
    margin-inline: auto;
    font-size: 24px;
    line-height: 1.16;
  }
  .thanks-page .hero-lead,
  .survey-wizard-page .hero-lead {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.55;
  }
  .thanks-intro {
    padding: 20px 18px;
  }
  .survey-wizard-card {
    padding: 18px 16px;
    border-radius: 22px;
  }
  .survey-question-wrap {
    min-height: 340px;
  }
  .survey-question-head h2 {
    font-size: 25px;
    line-height: 1.16;
  }
  .survey-question-head p {
    font-size: 15px;
  }
  .survey-input-line input,
  .survey-textarea-wrap textarea {
    font-size: 18px;
  }
  .survey-option {
    min-height: 58px;
    padding: 14px 14px;
    font-size: 16px;
  }
  .survey-wizard-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .survey-nav-button.secondary,
  .survey-wizard-actions .btn-cta {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .utility-hero {
    padding-top: 88px;
    padding-bottom: 38px;
  }
  .utility-grid.steps {
    grid-template-columns: 1.1fr .9fr;
  }
  .video-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ─── PAGE-SPECIFIC: SYMPTOM STRIP (PAGE 2) ─── */
.symptom-strip {
  background: var(--primary-dark);
  padding: var(--space-lg) var(--space-md);
}
.symptom-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}
.symptom {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 500;
}
.symptom svg {
  width: 16px;
  height: 16px;
  stroke: #f0c8a8;
  stroke-width: 1.5;
  fill: none;
}

/* ─── PAGE-SPECIFIC: BABI QUOTE (PAGE 3) ─── */
.babi-quote {
  background: var(--primary-light);
  color: white;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.babi-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.babi-quote cite {
  display: block;
  font-size: 13px;
  opacity: .8;
  margin-top: var(--space-md);
  font-style: normal;
  font-family: var(--font-body);
}

/* ─── PAGE-SPECIFIC: VOICE BLOCK (PAGE 3) ─── */
.voice-block {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 600px;
}
.voice-block p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: white;
}
.voice-block cite {
  display: block;
  font-size: 12px;
  opacity: .7;
  margin-top: var(--space-md);
  font-style: normal;
  font-family: var(--font-body);
}

/* ─── PAGE-SPECIFIC: FORMATION BRIDGE (PAGE 4) ─── */
.formation-bridge {
  background: var(--primary-xlight);
  border: 1px solid rgba(107,43,67,.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-xl);
}
.formation-bridge h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.formation-bridge p {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.formation-bridge .fb-highlight {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 13px;
  margin-top: var(--space-sm);
  display: inline-block;
  font-weight: 500;
}

/* ─── PAGE-SPECIFIC: HERO CARD STRIP (PAGE 4) ─── */
.hero-card-strip {
  background: var(--bg-beige);
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--border-light);
}
.hero-card-strip .hero-card {
  max-width: 540px;
  margin: 0 auto;
}

/* ─── PAGE-SPECIFIC: HERO CARD (PAGE 4) ─── */
.hero-card {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}
.hero-card h3 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hcl-item {
  display: flex;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  align-items: flex-start;
  line-height: 1.5;
}
.hcl-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: #f0c8a8;
  stroke-width: 2;
  fill: none;
  margin-top: 1px;
}
.hero-card .price-highlight {
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  text-align: center;
  margin-top: var(--space-lg);
}
.hero-card .price-highlight .ph-r {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c8a8;
}
.hero-card .price-highlight p {
  font-size: 12px;
  opacity: .75;
  margin-top: 4px;
}

/* ─── PAGE-SPECIFIC: CLARITY BOX (PAGE 4) ─── */
.clarity-box {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 560px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.clarity-box p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.55;
}
.clarity-box cite {
  display: block;
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: var(--space-sm);
  font-style: normal;
}

/* ─── PAGE-SPECIFIC: INSIGHT CARD (TESTE AB) ─── */
.insight-card {
  background: var(--bg-beige);
  border: 1px solid rgba(107,43,67,.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 560px;
  text-align: center;
  position: relative;
}
.insight-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  border-radius: var(--radius-full);
}
.insight-card p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}
.insight-card cite {
  display: block;
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: var(--space-sm);
  font-style: normal;
}

/* ─── PAGE-SPECIFIC: DOTTED HIGHLIGHT (TESTE AB) ─── */
.dotted-highlight {
  border: 2px dashed rgba(107,43,67,.25);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 560px;
  text-align: center;
  position: relative;
}
.dotted-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-bottom: 2px dashed rgba(107,43,67,.35);
  border-right: 2px dashed rgba(107,43,67,.35);
  border-radius: 0 0 var(--radius-md) 0;
}
.dotted-highlight p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.6;
  margin: 0;
}

/* ─── PAGE-SPECIFIC: ACCENT QUOTE (TESTE AB) ─── */
.accent-quote {
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 560px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-xlight), #fff);
}
.accent-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  opacity: .2;
  display: block;
  margin-bottom: var(--space-xs);
}
.accent-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}

/* ─── PAGE-SPECIFIC: LAYERED CARD (TESTE AB) ─── */
.layered-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 560px;
  text-align: center;
  box-shadow:
    0 1px 0 rgba(107,43,67,.06),
    0 2px 4px rgba(107,43,67,.04),
    0 8px 16px rgba(107,43,67,.03);
  border-top: 3px solid var(--primary);
}
.layered-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}
.layered-card cite {
  display: block;
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: var(--space-sm);
  font-style: normal;
}

/* ─── PAGE-SPECIFIC: SOFT PILL (TESTE AB) ─── */
.soft-pill {
  background: var(--bg-white);
  border-radius: var(--radius-full);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 520px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(107,43,67,.08);
  border: 1px solid rgba(107,43,67,.08);
}
.soft-pill p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.6;
  margin: 0;
}

/* ─── LOGO BAR (hidden, now inside hero) ─── */
.logo-bar { display: none; }

/* ─── TABLET BREAKPOINT ─── */
@media (min-width: 480px) and (max-width: 767px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── DESKTOP BREAKPOINT (min-width: 768px) ─── */
@media (min-width: 768px) {
  body {
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.7;
  }

  section { padding: var(--space-3xl) var(--space-xl); }

  .hero {
    background:
      linear-gradient(
        to right,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.85) 35%,
        rgba(255,255,255,0.4) 65%,
        rgba(255,255,255,0.05) 100%
      ),
      url('images/fundoimersao2.webp') no-repeat right center / cover;
    padding: 0 var(--space-xl) var(--space-lg);
    min-height: 560px;
  }
  .hero-inner {
    display: block;
  }
  .hero-content {
    max-width: 520px;
    width: 48%;
    padding-top: var(--space-lg);
    text-align: left;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: var(--space-lg) 0 0;
  }
  .hero-date { justify-content: flex-start; }
  .logo-hero img { margin: 0; }
  .hero-image {
    display: none !important;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 2.8vw, 2.2rem);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
  }
  .hero-sub {
    font-size: 15px;
    max-width: 480px;
    margin-bottom: var(--space-md);
  }
  .btn-cta {
    display: inline-block;
    width: auto;
    min-height: 52px;
    padding: 14px 36px;
    font-size: 16px;
  }
  .logo-hero { margin-bottom: var(--space-lg); }
  .logo-hero img { max-height: 112px; }
  .hero-date { font-size: 14px; }
  .urgency-badge { font-size: 13px; }
  .hero-cold {
    background:
      linear-gradient(
        to right,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.85) 35%,
        rgba(255,255,255,0.4) 65%,
        rgba(255,255,255,0.05) 100%
      ),
      url('images/fundoimersao2.webp') no-repeat right center / cover;
  }
  .hero-cold .hero-content {
    max-width: 520px;
    width: 48%;
    text-align: left;
  }
  .hero-cold .logo-hero img {
    margin: 0;
  }
  .hero-cold .hero-date {
    justify-content: flex-start;
  }
  .hero-cold .btn-cta,
  .hero-cold .lot-progress {
    margin-left: 0;
    margin-right: 0;
  }

  .social-proof { padding: var(--space-lg) var(--space-xl); }
  .social-proof-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }
  .stat-num { font-size: 2.5rem; }
  .stat-label { font-size: 14px; }

  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .who-card { padding: 32px 28px; }
  .who-card .wc-icon { width: 52px; height: 52px; min-height: 52px; }
  .who-card .wc-icon svg { width: 24px; height: 24px; }
  .who-card p { font-size: 16px; }

  .schedule-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .schedule-card { padding: 24px; }

  .ba-grid { grid-template-columns: 1fr 1fr; }
  .ba-col { padding: 36px 32px; }

  .testi-slide { flex: 0 0 calc(50% - 10px); }
  .testi-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border-light);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all .2s;
    z-index: 10;
  }
  .testi-btn:hover {
    background: white;
    box-shadow: var(--shadow-lg);
  }
  .testi-btn.prev { left: -22px; }
  .testi-btn.next { right: -22px; }
  .testi-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--charcoal);
    stroke-width: 2;
    fill: none;
  }

  .testi-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 var(--space-xl);
  }
  .testi-box { padding: 32px 28px; }
  .testi-box p { font-size: 15px; }

  .babi-inner {
    grid-template-columns: 280px 1fr;
    gap: 56px;
  }
  .babi-photo-wrap { max-width: none; margin: 0; }
  .babi-photo-wrap img { height: 340px; }
  .babi-tag { text-align: center; }
  .babi-bio h2 { text-align: center; }
  .babi-bio p { text-align: center; }
  .babi-stats { justify-content: center; }

  .photo-grid-item img { height: 200px; }

  .price-box { padding: 48px 40px; }
  .price-value { font-size: 4rem; }
  .price-value span { font-size: 1.3rem; }
  .price-box-logo img { max-width: 160px; }

  .symptom-inner { gap: 32px; }
  .symptom { font-size: 13px; }
  .symptom svg { width: 18px; height: 18px; }
}

/* ─── LARGE DESKTOP (min-width: 1024px) ─── */
@media (min-width: 1024px) {
  .testi-slide { flex: 0 0 calc(33.333% - 14px); }
  .testi-boxes { grid-template-columns: repeat(3, 1fr); }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  color: rgba(255,255,255,.85);
  padding: 10px 18px;
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 -2px 14px rgba(0,0,0,.16);
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
  pointer-events: auto;
}
@media (max-width: 480px) {
  .cookie-banner {
    padding: 6px 10px 7px;
    font-size: 10px;
    line-height: 1.22;
    gap: 5px 8px;
  }
  .cookie-banner p {
    flex: 1 1 100%;
    max-width: 340px;
  }
  .cookie-btn {
    padding: 5px 14px;
    font-size: 10px;
  }
}
.cookie-banner.show { display: flex; }
.cookie-banner a {
  color: #f0c8a8;
  text-decoration: underline;
}
.cookie-btn {
  background: var(--cta-green);
  color: white;
  border: none;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-btn:hover { filter: brightness(1.1); }
.cookie-btn.reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
}


/* ─── LEGAL FOOTER ─── */
.footer-legal {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.9); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero-sub, .hero-date, .hero .btn-cta {
  animation: fadeUp .2s ease both;
}
.hero-date { animation-delay: .02s; }
.hero h1 { animation-delay: .05s; }
.hero-sub { animation-delay: .08s; }
.hero .btn-cta { animation-delay: .1s; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease-out, transform .5s ease-out;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TOP MARQUEE BAR ─── */
.top-marquee {
  background: var(--primary);
  color: #fff;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 999;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 18s linear infinite;
  padding-left: 100%;
}
.marquee-track span {
  display: inline-block;
  padding-right: 40px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── PRICE BOX V2 (CORREDOR POLONÊS) ─── */
.price-box-v2 {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.price-box-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
}
.price-box-header {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  text-align: center;
}
.price-alert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(180deg, #fffaf6 0%, #fff4ed 100%);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(83, 31, 56, .16);
  box-shadow: 0 10px 28px rgba(83, 31, 56, .08);
}
.price-alert svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  stroke-width: 1.9;
  fill: none;
  flex-shrink: 0;
}
.price-anchoring {
  margin-bottom: var(--space-lg);
}
.price-anchoring .old-price {
  font-size: 14px;
  color: var(--mid-grey);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-anchoring .current-price {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.price-anchoring .current-price span {
  font-size: 1.2rem;
  color: var(--mid-grey);
}
.price-anchoring .price-note {
  font-size: 13px;
  color: var(--mid-grey);
  margin-top: 4px;
}
.price-deliverables {
  list-style: none;
  text-align: left;
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.price-deliverables li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal-soft);
  align-items: flex-start;
  line-height: 1.5;
}
.price-deliverables li svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  stroke: #22c55e;
  stroke-width: 2.5;
  fill: none;
}

/* ─── TOP MARQUEE ─── */
.marquee-bar {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 999;
  padding: 10px 0;
}
.marquee-track {
  display: inline-block;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track span {
  display: inline-block;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── PRICE BOX RESTRUCTURE (POLISH CORRIDOR) ─── */
.price-header {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.price-alert {
  background: linear-gradient(180deg, #fffaf6 0%, #fff4ed 100%);
  border: 1px solid rgba(83, 31, 56, .16);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(83, 31, 56, .08);
}
.price-alert svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.9;
  flex-shrink: 0;
}
.price-anchor {
  text-align: center;
  margin-bottom: 24px;
}
.price-anchor .original {
  text-decoration: line-through;
  color: var(--mid-grey);
  font-size: 1.05rem;
  margin-right: 8px;
  font-weight: 500;
}
.price-anchor .current {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: var(--charcoal);
}
.price-deliverables {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.45;
}
.price-deliverables li svg {
  width: 18px;
  height: 18px;
  stroke: #25D366;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── STICKY POPUP MOBILE GAP FIX ─── */
@media (max-width: 480px) {
  .sticky-popup-head { top: -14px; }
  .sticky-popup-lot { padding: 5px 12px; font-size: 10px; }
  .sticky-popup-price { margin-top: 8px; margin-bottom: 10px; }
}

/* ─── STICKY SALE POPUP ─── */
.sticky-popup {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 260px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  padding: 14px;
  padding-top: 22px;
  z-index: 998;
  transform: translateY(140%);
  transition: transform .4s ease;
  border: 1px solid var(--border-light);
}
.sticky-popup.visible {
  transform: translateY(0);
}
.sticky-popup-head {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.sticky-popup-lot {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  background: #e74c3c;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(231,76,60,.3);
}
.sticky-popup-close {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--mid-grey);
  font-size: 16px;
  line-height: 1;
  padding: 0;
  z-index: 2;
}
.sticky-popup-price {
  text-align: center;
  margin-bottom: 8px;
}
.sticky-popup-price small {
  display: block;
  font-size: 10px;
  color: var(--mid-grey);
  margin-bottom: 1px;
}
.sticky-popup-price strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
}
.sticky-popup-price span {
  font-size: .8rem;
  color: var(--mid-grey);
}
.sticky-popup .btn-cta {
  display: inline-block;
  width: auto;
  font-size: 12px;
  padding: 10px 16px;
  margin-bottom: 6px;
}
.sticky-popup {
  text-align: center;
}
.sticky-popup-progress {
  margin-top: 2px;
}
.sticky-popup-progress .progress-bar {
  height: 4px;
  background: var(--bg-cream);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 3px;
}
.sticky-popup-progress .progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  border-radius: var(--radius-full);
}
.sticky-popup-progress .progress-label {
  font-size: 10px;
  color: var(--mid-grey);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 480px) {
  .sticky-popup {
    right: 10px;
    left: auto;
    width: 220px;
    bottom: 10px;
    padding: 12px;
    padding-top: 28px;
  }
  .sticky-popup-price strong { font-size: 1.3rem; }
  .sticky-popup .btn-cta { font-size: 11px; padding: 9px 10px; }
}

/* ─── COMPACT THANKS PAGE ─── */
.thanks-hero {
  padding: 32px 16px 16px;
}
.thanks-page .utility-logo {
  width: min(200px, 55vw);
  margin-bottom: 12px;
}
.thanks-page .utility-hero h1 {
  margin: 10px 0 6px;
  font-size: clamp(22px, 3vw, 30px);
}
.thanks-page .hero-lead {
  font-size: 15px;
  line-height: 1.45;
  margin: 0 auto 4px;
}
.thanks-steps-section {
  padding: 8px 16px 40px;
}
.thanks-progress-note {
  margin-bottom: 10px;
}
.thanks-progress-note .section-tag {
  font-size: 11px;
  padding: 4px 10px;
}
.thanks-steps-grid {
  gap: 12px;
}
.thanks-step-card {
  padding: 16px;
}
.thanks-step-card h3 {
  font-size: 16px;
  margin: 8px 0 6px;
}
.thanks-step-card p {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
}
.thanks-step-topline {
  margin-bottom: 6px;
}
.thanks-step-card .step-label {
  font-size: 11px;
  padding: 4px 10px;
}
.thanks-step-card .btn-cta {
  padding: 10px 16px;
  font-size: 14px;
}
.thanks-page footer {
  padding: 12px 16px;
  font-size: 12px;
}

.thanks-page-compact .thanks-compact-main {
  min-height: 100svh;
}
.thanks-page-compact .section-inner {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}
.thanks-page-compact .thanks-compact-hero {
  padding: 24px 16px 12px;
}
.thanks-page-compact .thanks-compact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 18px;
  align-items: center;
}
.thanks-page-compact .thanks-compact-shell-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1120px;
}
.thanks-page-compact .thanks-compact-copy,
.thanks-page-compact .thanks-compact-summary {
  min-width: 0;
}
.thanks-title-top,
.thanks-title-bottom {
  display: block;
}
.thanks-page-compact .thanks-compact-copy .hero-lead {
  margin: 0;
}
.thanks-page-compact .thanks-compact-copy .hero-lead + .hero-lead,
.thanks-v2-copy .hero-lead + .hero-lead {
  margin-top: 10px;
}
.thanks-page-compact .thanks-compact-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  width: min(100%, 760px);
  margin-inline: auto;
  text-align: center;
  justify-self: center;
}
.thanks-page-compact .thanks-compact-copy > * {
  margin-left: auto;
  margin-right: auto;
}
.thanks-page-compact .thanks-compact-copy .utility-logo {
  display: block;
  margin: 0 auto 18px;
}
.thanks-page-compact .thanks-compact-copy h1,
.thanks-page-compact .thanks-compact-copy .hero-lead {
  width: 100%;
  text-align: center;
}
.thanks-page-compact .thanks-hero-cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.thanks-page-compact .thanks-hero-cta-row .btn-cta {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  padding-inline: 14px;
}
.thanks-page-compact .thanks-summary-card {
  border: 1px solid rgba(107,43,67,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-md);
  padding: 18px;
}
.thanks-page-compact .thanks-summary-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}
.thanks-page-compact .thanks-summary-list li {
  position: relative;
  padding-left: 18px;
  color: var(--charcoal-soft);
}
.thanks-page-compact .thanks-summary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta-green);
  transform: translateY(-50%);
}
.thanks-page-compact .thanks-summary-note {
  margin-top: 14px;
  color: var(--mid-grey);
  font-size: 14px;
}
.thanks-page-compact .thanks-compact-actions {
  padding: 8px 16px 40px;
}
.thanks-page-compact .thanks-action-grid {
  display: grid;
  gap: 12px;
  align-items: stretch;
}
.thanks-page-compact .thanks-action-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(107,43,67,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
  padding: 18px;
  min-height: 100%;
}
.thanks-page-compact .thanks-action-card h2 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.25;
  margin: 8px 0 14px;
}
.thanks-page-compact .thanks-action-card p {
  color: var(--mid-grey);
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0 0;
}
.thanks-page-compact .thanks-action-card .btn-cta {
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: min(100%, 260px);
  max-width: 100%;
  border-radius: 999px;
  min-height: 52px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 14px 28px;
}
.thanks-page-compact .thanks-action-card-primary {
  border-color: rgba(54, 172, 92, .2);
  box-shadow: 0 16px 36px rgba(54, 172, 92, .1), var(--shadow-md);
}
.thanks-page-compact .thanks-inline-note {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: var(--mid-grey);
}
.thanks-page-compact .thanks-inline-note a {
  color: var(--primary-dark);
  font-weight: 700;
}

.thanks-v2-page {
  background:
    radial-gradient(circle at top, rgba(245, 234, 238, 0.95), rgba(255,255,255,0.98) 44%, rgba(252,250,245,1) 100%);
}
.thanks-v2-main {
  padding-bottom: 36px;
}
.thanks-v2-hero {
  padding: 24px 16px 10px;
}
.thanks-v2-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, .88fr);
  gap: 14px;
  align-items: center;
  max-width: 1040px;
  margin-inline: auto;
}
.thanks-v2-copy {
  text-align: center;
}
.thanks-v2-copy .utility-logo {
  width: min(210px, 52vw);
  margin: 0 auto 14px;
}
.thanks-v2-alert {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(107,43,67,.08);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.thanks-v2-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(29px, 4.6vw, 52px);
  line-height: 1.03;
  margin-bottom: 10px;
}
.thanks-v2-copy .hero-lead {
  max-width: 600px;
  margin: 0 auto;
}
.thanks-v2-proof-card,
.thanks-v2-form-card {
  border: 1px solid rgba(107,43,67,.12);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
}
.thanks-v2-proof-card {
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 12px;
}
.thanks-v2-proof-card p {
  color: var(--mid-grey);
  line-height: 1.5;
}
.thanks-v2-proof-button {
  width: 100%;
  justify-content: center;
}
.thanks-v2-page .thanks-v2-shell {
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
}
.thanks-v2-form-section {
  padding: 2px 16px 0;
}
.thanks-v2-form-card {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 22px;
}
.thanks-v2-form-head {
  max-width: 720px;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.thanks-v2-page .thanks-v2-form-head {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}
.thanks-v2-form-head h2 {
  font-family: var(--font-display);
  font-size: clamp(25px, 3.5vw, 40px);
  line-height: 1.08;
}
.thanks-v2-form-head p {
  color: var(--mid-grey);
}
.thanks-v2-form {
  display: grid;
  gap: 16px;
}
.thanks-v2-progress-top {
  display: grid;
  gap: 10px;
}
.thanks-v2-question-wrap {
  min-height: 280px;
}
.thanks-v2-question-card {
  gap: 18px;
}
.thanks-v2-question-card .survey-question-head h2 {
  font-size: clamp(26px, 4vw, 40px);
}
.thanks-v2-question-card .survey-input-line input {
  font-size: clamp(20px, 3vw, 28px);
}
.thanks-v2-question-card .survey-option {
  min-height: 58px;
  font-size: clamp(16px, 2vw, 20px);
}
.thanks-v2-submit {
  margin-top: 2px;
}
.thanks-v3-form-card {
  display: grid;
  gap: 18px;
}
.thanks-v3-form-card .thanks-v2-form-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}
.thanks-v3-page .thanks-v2-shell {
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
}
.thanks-v3-embed-shell {
  width: 100%;
  min-height: 600px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(107,43,67,.08);
}
.thanks-v3-embed-shell [data-respondi-container] {
  width: 100%;
}

@media (min-width: 768px) {
  .thanks-hero {
    padding: 40px 16px 20px;
  }
  .thanks-steps-grid {
    gap: 14px;
  }
  .thanks-step-card {
    padding: 18px;
  }
  .thanks-page-compact .thanks-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .thanks-page-compact .thanks-compact-hero {
    padding: 18px 16px 8px;
  }
  .thanks-page-compact .thanks-compact-shell,
  .thanks-v2-shell {
    grid-template-columns: 1fr;
  }
  .thanks-v2-proof {
    display: none;
  }
  .thanks-page-compact .thanks-page .utility-logo,
  .thanks-page-compact .utility-logo {
    width: min(180px, 48vw);
    margin-bottom: 10px;
  }
  .thanks-page-compact .thanks-compact-copy h1 {
    margin: 8px 0 6px;
    font-size: 24px;
    line-height: 1.14;
  }
  .thanks-page-compact .thanks-compact-copy .hero-lead {
    font-size: 14px;
    line-height: 1.38;
  }
  .thanks-page-compact .thanks-compact-copy .hero-lead + .hero-lead,
  .thanks-v2-copy .hero-lead + .hero-lead {
    margin-top: 8px;
  }
  .thanks-page-compact .thanks-hero-cta-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }
  .thanks-page-compact .thanks-hero-cta-row .btn-cta {
    min-height: 46px;
    font-size: 14px;
    padding: 11px 14px;
  }
  .thanks-page-compact .thanks-progress-note {
    margin-bottom: 8px;
  }
  .thanks-page-compact .thanks-action-card {
    padding: 16px;
  }
  .thanks-page-compact .thanks-action-card h2 {
    font-size: 16px;
  }
  .thanks-page-compact .thanks-inline-note {
    font-size: 13px;
  }
  .thanks-v2-hero {
    padding: 16px 16px 6px;
  }
  .thanks-v2-copy .utility-logo {
    width: min(168px, 46vw);
    margin-bottom: 10px;
  }
  .thanks-v2-copy h1 {
    font-size: 24px;
    line-height: 1.06;
  }
  .thanks-v2-copy .hero-lead {
    font-size: 14px;
    line-height: 1.42;
  }
  .thanks-v2-proof-card,
  .thanks-v2-form-card {
    border-radius: 22px;
    padding: 16px 14px;
  }
  .thanks-v2-alert {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .thanks-v2-form-section {
    padding-top: 0;
  }
  .thanks-v2-form-head {
    margin-bottom: 14px;
  }
  .thanks-v2-form-head h2 {
    font-size: 22px;
  }
  .thanks-v2-form-head p {
    font-size: 14px;
    line-height: 1.4;
  }
  .thanks-v2-progress-top {
    gap: 8px;
  }
  .thanks-v2-question-wrap {
    min-height: 250px;
  }
  .thanks-v2-question-card {
    gap: 14px;
  }
  .thanks-v2-question-card .survey-question-head h2 {
    font-size: 22px;
    line-height: 1.12;
  }
  .thanks-v2-question-card .survey-question-head p {
    font-size: 14px;
    line-height: 1.38;
  }
  .thanks-v2-question-card .survey-input-line input {
    font-size: 18px;
    padding: 8px 0 10px;
  }
  .thanks-v2-question-card .survey-option {
    min-height: 50px;
    padding: 12px 13px;
    font-size: 15px;
  }
  .thanks-v2-submit {
    margin-top: 0;
  }
  .thanks-v3-embed-shell {
    min-height: 540px;
  }
}
