/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --green-deep:   #0B6B3A;
  --green-mid:    #0E8A4A;
  --green-dark:   #064a28;
  --gold:         #F2C14E;
  --gold-dark:    #D4A017;
  --gold-deep:    #A87D0B;
  --offwhite:     #FAFAF7;
  --graphite:     #1A1A1A;
  --gray-100:     #F4F4F2;
  --gray-200:     #E5E7EB;
  --gray-400:     #9CA3AF;
  --gray-600:     #4B5563;
  --red-urgency:  #E11D2A;
  --red-dark:     #B91C1C;

  --ff-title: 'Poppins', sans-serif;
  --ff-body:  'Inter', sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  40px;

  --sh-sm: 0 2px 8px  rgba(0,0,0,.10);
  --sh-md: 0 4px 20px rgba(0,0,0,.16);
  --sh-lg: 0 8px 40px rgba(0,0,0,.26);

  --max-w: 500px;
  --px:    20px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--offwhite);
  color: var(--graphite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   URGENCY BAR
============================================================ */
#urgency-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: var(--graphite);
  color: #fff;
  text-align: center;
  padding: 10px var(--px);
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: clamp(11px, 3.2vw, 14px);
  letter-spacing: .6px;
  line-height: 1.3;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}
#countdown {
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--gold);
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .3; transform: scale(.75); }
}
.urgency-spacer { height: 40px; }

/* ============================================================
   SHARED LAYOUT
============================================================ */
.section {
  width: 100%;
  padding: 52px var(--px);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-title {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(19px, 5.5vw, 28px);
  text-transform: uppercase;
  text-align: center;
  color: var(--graphite);
  line-height: 1.2;
  margin-bottom: 6px;
}
.section-sub {
  text-align: center;
  font-size: clamp(13px, 3.4vw, 15px);
  color: var(--gray-600);
  margin-bottom: 30px;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  background: linear-gradient(155deg, var(--green-dark) 0%, var(--green-deep) 60%, #0a5530 100%);
  color: #fff;
  padding: 40px var(--px) 52px;
  text-align: center;
}
.hero-sales-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: .3px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(242,193,78,.14);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
#hero h1 {
  font-family: var(--ff-title);
  font-weight: 900;
  font-size: clamp(25px, 7vw, 44px);
  line-height: 1.12;
  text-transform: uppercase;
  margin-bottom: 14px;
}
#hero h1 .hl { color: var(--gold); }
.hero-sub {
  font-size: clamp(14px, 3.8vw, 17px);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-line {
  font-size: clamp(12px, 3.2vw, 14px);
  color: rgba(255,255,255,.6);
  margin-bottom: 26px;
}
.hero-img-wrap {
  margin: 0 auto 22px;
  max-width: 340px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg), 0 0 0 3px rgba(242,193,78,.3);
}
.hero-img-wrap img,
.hero-img-wrap video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.hero-kit-badge {
  background: rgba(6,74,40,.88);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(242,193,78,.5);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin: 0 auto 28px;
  max-width: 380px;
  text-align: left;
}
.hkb-title {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 5px;
}
.hkb-desc {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}

/* ============================================================
   CTA BUTTONS
============================================================ */
.btn-cta, .btn-cta-final {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 17px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--graphite);
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(14px, 4.2vw, 17px);
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: 1.25;
  border-radius: var(--r-xl);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(212,160,23,.5);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-cta:hover, .btn-cta-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,.6);
  filter: brightness(1.06);
}
.btn-cta:active, .btn-cta-final:active {
  transform: translateY(1px);
  box-shadow: 0 2px 12px rgba(212,160,23,.35);
}
.btn-cta-final {
  max-width: 100%;
  font-size: clamp(14px, 4vw, 16px);
  padding: 19px 24px;
  box-shadow: 0 6px 28px rgba(212,160,23,.55);
  animation: btn-pulse 1.8s ease-in-out infinite;
}
.btn-cta {
  animation: btn-pulse 1.8s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%   { transform: scale(1);    box-shadow: 0 6px 28px rgba(212,160,23,.55); }
  50%  { transform: scale(1.04); box-shadow: 0 10px 42px rgba(212,160,23,.85); }
  100% { transform: scale(1);    box-shadow: 0 6px 28px rgba(212,160,23,.55); }
}
.btn-cta:hover, .btn-cta-final:hover {
  animation: none;
}

/* ============================================================
   COMO FUNCIONA — timeline
============================================================ */
#como-funciona { background: var(--offwhite); }

.steps-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 28px;
}
.step-line {
  position: absolute;
  left: 11px;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}
.step-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--green-deep);
  border-radius: 3px;
  transition: height 1.5s cubic-bezier(.4,0,.2,1);
}
.steps-timeline.animated .step-line::after {
  height: 100%;
}

.step-dot {
  position: absolute;
  left: -28px;
  top: 28px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gray-200);
  z-index: 2;
  transition: border-color .4s, background .4s, transform .4s;
}
.step-card.active .step-dot {
  border-color: var(--green-deep);
  background: var(--green-deep);
  transform: scale(1.2);
}
.step-card.active .step-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 50%;
}

.step-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: var(--sh-sm);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, border-color .3s;
}
.step-card.active {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--green-deep);
}

.step-icon { font-size: 36px; display: block; margin-bottom: 10px; color: var(--green-deep); }
.step-pill {
  display: inline-block;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 9px;
}
.step-card h3 {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 15px;
  color: var(--graphite);
  margin-bottom: 5px;
}
.step-card p { font-size: 13px; color: var(--gray-600); }

/* ============================================================
   COMPARATIVO
============================================================ */
.compare-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--sh-sm);
}
.compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.compare-row i {
  font-size: 22px;
  flex-shrink: 0;
}
.compare-bad i { color: #ef4444; }
.compare-good i { color: var(--green-deep); }
.compare-row strong {
  display: block;
  font-family: var(--ff-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--graphite);
}
.compare-row span {
  font-size: 12px;
  color: var(--gray-600);
}
.compare-bad strong { color: #991b1b; }
.compare-good strong { color: var(--green-deep); }
.compare-divider {
  text-align: center;
  position: relative;
  padding: 4px 0;
}
.compare-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-200);
}
.compare-divider span {
  position: relative;
  background: #fff;
  padding: 0 10px;
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 1px;
}

/* ============================================================
   SHARED CAROUSEL
============================================================ */
#qualidade  { background: #fff; }
#depoimentos { background: var(--offwhite); }

.carousel-outer {
  max-width: 440px;
  margin: 0 auto;
}
.carousel-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.carousel-wrap:active { cursor: grabbing; }
.carousel-track {
  display: flex;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
#dep-track .carousel-slide img {
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--gray-100);
  max-height: 500px;
}
#qual-track .carousel-slide img {
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--gray-100);
  max-height: 460px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  background: rgba(0,0,0,.52);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
}
.carousel-btn:hover { background: rgba(0,0,0,.76); }
.carousel-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.c-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.c-dot.active {
  background: var(--green-deep);
  transform: scale(1.35);
}
.c-dot:focus-visible { outline: 2px solid var(--green-deep); }

/* ============================================================
   OFERTA
============================================================ */
#oferta {
  background: #fff;
}
.oferta-box {
  background: linear-gradient(155deg, var(--green-dark) 0%, var(--green-deep) 55%, #0a5530 100%);
  border: 2px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 30px 20px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.oferta-box::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(242,193,78,.12) 0%, transparent 70%);
  pointer-events: none;
}

.selos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 20px;
}
.selo {
  background: rgba(242,193,78,.11);
  border: 1px solid rgba(242,193,78,.55);
  color: var(--gold);
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.off-badge {
  display: inline-block;
  background: #fff;
  color: var(--green-deep);
  font-family: var(--ff-title);
  font-weight: 900;
  font-size: 24px;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(11,107,58,.35);
  letter-spacing: .5px;
}
.price-from {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.price-now {
  font-family: var(--ff-title);
  font-weight: 900;
  font-size: clamp(52px, 15vw, 76px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.price-now sup {
  font-size: 28%;
  vertical-align: super;
  margin-right: 2px;
  letter-spacing: 0;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.09);
  border-radius: var(--r-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 26px;
  letter-spacing: .3px;
}

.incluso-lbl {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.checklist {
  list-style: none;
  max-width: 320px;
  margin: 0 auto 28px;
  text-align: left;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(13px, 3.5vw, 15px);
  color: rgba(255,255,255,.9);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   CHECKOUT TRANSPARENTE
============================================================ */
.checkout-banner {
  border-radius: var(--r-md) var(--r-md) 0 0;
  overflow: hidden;
}
.checkout-banner img {
  width: 100%;
  height: auto;
  display: block;
}
#checkout-card {
  background: #fff;
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 20px 18px 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  scroll-margin-top: 56px;
}

/* Produto principal */
.checkout-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}
.checkout-product img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.checkout-product-info strong {
  display: block;
  font-family: var(--ff-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.3;
}
.checkout-product-info span {
  font-size: 13px;
  color: var(--green-deep);
  font-weight: 600;
}

#checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.checkout-row {
  margin-bottom: 10px;
}
.checkout-row input {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--gray-200);
  background: #fff;
  color: var(--graphite);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.checkout-row input::placeholder {
  color: var(--gray-400);
}
.checkout-row input:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(11,107,58,.1);
}
.input-hint {
  display: block;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 4px;
  padding-left: 2px;
}
.input-hint i {
  font-size: 11px;
  color: var(--green-deep);
}
.checkout-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.checkout-error {
  display: none;
  color: #dc2626;
  font-size: 12px;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Order Bumps */
.bumps-section {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bumps-title {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  background: var(--graphite);
  padding: 8px 14px;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  margin-bottom: -8px;
}
.bump-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.bump-item:has(input:checked) {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 2px rgba(11,107,58,.12);
  background: #f0fdf4;
}
.bump-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.bump-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green-deep);
  cursor: pointer;
}
.bump-label img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.bump-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.bump-info strong {
  display: block;
  font-family: var(--ff-title);
  font-size: 11px;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.3;
  letter-spacing: .2px;
  text-align: left;
}
.bump-info span {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.3;
  text-align: left;
}
.bump-price {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 13px;
  color: var(--green-deep);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Total + Botão */
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1.5px solid var(--gray-200);
  margin-top: 6px;
}
.checkout-total span:first-child {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 14px;
  color: var(--graphite);
}
#checkout-total-value {
  font-family: var(--ff-title);
  font-weight: 900;
  font-size: 20px;
  color: var(--green-deep);
}

.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: #22c55e;
  color: #fff;
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(34,197,94,.4);
  transition: transform .15s, box-shadow .15s, background .15s;
  -webkit-tap-highlight-color: transparent;
}
.btn-checkout:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(34,197,94,.5);
}
.btn-checkout:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(34,197,94,.3);
}
.btn-checkout:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.btn-checkout .spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

.checkout-secure {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 10px;
  letter-spacing: .2px;
}

/* Garantia abaixo do checkout */
.checkout-guarantee {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.guarantee-seal {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--r-sm);
}
.guarantee-seal > i {
  font-size: 32px;
  color: var(--green-deep);
  flex-shrink: 0;
}
.guarantee-seal strong {
  display: block;
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 12px;
  color: var(--graphite);
  margin-bottom: 2px;
}
.guarantee-seal p {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.4;
  margin: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   PIX MODAL / POPUP
============================================================ */
.pix-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.pix-overlay.active {
  opacity: 1;
  visibility: visible;
}
.pix-modal-box {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 380px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 22px 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  transform: translateY(20px) scale(.96);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.pix-overlay.active .pix-modal-box {
  transform: translateY(0) scale(1);
}
.pix-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.pix-close:hover { color: #333; }

.pix-header {
  text-align: center;
  margin-bottom: 20px;
}
.pix-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  background: #E8F5EC;
  border-radius: 50%;
  margin-bottom: 10px;
}
.pix-header h3 {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 18px;
  color: var(--graphite);
  margin-bottom: 4px;
}
.pix-amount {
  font-family: var(--ff-title);
  font-weight: 900;
  font-size: 28px;
  color: var(--green-deep);
}

.pix-qr-area {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.pix-qr-box {
  background: #f9f9f9;
  border: 2px dashed var(--gray-200);
  border-radius: 14px;
  padding: 14px;
  display: inline-block;
}
.pix-qr-box img {
  width: 180px;
  height: 180px;
  display: block;
}

.pix-instruction {
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.pix-copy-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.pix-copy-row input {
  flex: 1;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  font-size: 11px;
  font-family: monospace;
  color: var(--graphite);
  background: var(--gray-100);
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pix-copy-row button {
  flex-shrink: 0;
  padding: 11px 16px;
  background: var(--green-deep);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s;
}
.pix-copy-row button:hover { background: var(--green-dark); }

.pix-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #FFF8E1;
  border-radius: 10px;
  margin-bottom: 12px;
}
.pix-status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
.pix-status-dot.waiting { background: #F59E0B; }
.pix-status-dot.paid { background: #10B981; animation: none; }
#pix-status-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--graphite);
}

.pix-timer {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
}
.pix-timer span {
  font-weight: 700;
  color: var(--gray-600);
}

/* Pago */
.pix-paid-icon {
  font-size: 56px;
  margin-bottom: 14px;
  color: var(--green-deep);
}
.pix-paid-title {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.pix-paid-desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 22px;
  line-height: 1.5;
}
.pix-paid-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--green-deep);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.pix-paid-btn:hover { background: var(--green-dark); }

/* ============================================================
   GALLERY + ZOOM MODAL
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-grid .gallery-item:first-child {
  grid-column: 1 / -1;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-zoom {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,.55);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .2s;
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

/* Zoom Modal — white */
.zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.zoom-overlay.active {
  opacity: 1;
  visibility: visible;
}
.zoom-modal {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  color: var(--graphite);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 10;
}
.zoom-close:hover { background: var(--gray-200); }
.zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  color: var(--graphite);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 10;
}
.zoom-nav:hover { background: var(--gray-200); }
.zoom-prev { left: 16px; }
.zoom-next { right: 16px; }
.zoom-img-wrap {
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.zoom-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-title);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 1px;
}

/* ============================================================
   WHATSAPP SECTION
============================================================ */
#whatsapp-section {
  background: var(--offwhite);
}
.wpp-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--sh-sm);
}
.wpp-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #25D366;
  object-fit: cover;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.wpp-title {
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: clamp(17px, 4.5vw, 22px);
  color: var(--graphite);
  margin-bottom: 8px;
}
.wpp-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.wpp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}
.wpp-btn:active {
  transform: translateY(1px);
}
.wpp-handle {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
  font-weight: 600;
}

/* ============================================================
   FAQ ACCORDION
============================================================ */
#faq { background: #fff; }

.accordion { max-width: var(--max-w); margin: 0 auto; }
.acc-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .25s;
}
.acc-item.open { border-color: var(--green-deep); }

.acc-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(13px, 3.5vw, 15px);
  color: var(--graphite);
  -webkit-tap-highlight-color: transparent;
}
.acc-btn:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: -2px;
}
.acc-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1;
  transition: transform .28s ease, background .2s, color .2s;
}
.acc-item.open .acc-icon {
  transform: rotate(45deg);
  background: var(--green-deep);
  color: #fff;
}
.acc-body {
  height: 0;
  overflow: hidden;
  transition: height .3s cubic-bezier(.4,0,.2,1);
}
.acc-body-inner {
  padding: 0 18px 16px;
  font-size: clamp(13px, 3.4vw, 14px);
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--graphite);
  padding: 40px var(--px) 30px;
}
.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-brand .footer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  object-fit: cover;
  flex-shrink: 0;
}
.footer-name {
  display: block;
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.footer-tagline {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
}
.footer-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 14px;
}
.footer-secure i {
  color: var(--green-mid);
  font-size: 14px;
}
.footer-secure span {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-bottom: 6px;
}
.footer-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,.2);
  line-height: 1.4;
}

/* ============================================================
   WHATSAPP FLUTUANTE
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.55);
  text-decoration: none;
  animation: wa-pulse 2s ease-in-out infinite;
}
@media (max-width: 767px) {
  .whatsapp-float { bottom: 72px; }
}
@keyframes wa-pulse {
  0%,100% { transform: scale(1);    box-shadow: 0 4px 20px rgba(37,211,102,.55); }
  50%      { transform: scale(1.10); box-shadow: 0 6px 28px rgba(37,211,102,.80); }
}

/* ============================================================
   STICKY CTA MOBILE
============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 -2px 16px rgba(0,0,0,.12);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: #22c55e;
  color: #fff;
  font-family: var(--ff-title);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: var(--r-sm);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(34,197,94,.4);
  transition: background .15s;
}
.sticky-cta-btn:hover {
  background: #16a34a;
}
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ============================================================
   PURCHASE NOTIFICATION TOAST
============================================================ */
.purchase-toast {
  position: fixed;
  top: 52px;
  left: 16px;
  z-index: 997;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
  border: 1px solid var(--gray-200);
  max-width: 300px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.purchase-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #E8F5EC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-deep);
  font-size: 16px;
}
.toast-content {
  flex: 1;
  min-width: 0;
}
.toast-name {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 12px;
  color: var(--graphite);
  margin: 0;
  line-height: 1.3;
}
.toast-action {
  font-size: 11px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.3;
}
.toast-time {
  font-size: 10px;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   FADE-IN ON SCROLL
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET / DESKTOP
============================================================ */
@media (min-width: 580px) {
  .steps-timeline { max-width: 400px; margin: 0 auto; }
}
@media (min-width: 768px) {
  :root { --max-w: 560px; --px: 40px; }
  .urgency-spacer { height: 44px; }
  .hero-img-wrap { max-width: 420px; }
  .carousel-outer { max-width: 520px; }
}
@media (min-width: 1024px) {
  :root { --max-w: 640px; --px: 60px; }
}
@media (min-width: 1440px) {
  :root { --max-w: 720px; }
}
