/* ============================================================
   Horsewood — DTC Step 1 (porte fiel da versão Claude Design aprovada;
   valores extraídos do design system _ds do template)
============================================================ */

:root {
  --orange:        #FF6B1A;
  --orange-hover:  #FF852E;
  --orange-deep:   #E2560A;
  --orange-print:  #C25A18;
  --orange-soft:   rgba(255, 107, 26, 0.12);
  --orange-border: rgba(255, 107, 26, 0.35);

  --gold-2:        #F5D56B;
  --gold-3:        #D4A84B;
  --gold-ink:      #1A1205;
  --gold-featured: #FEE085;
  --gold-edge:     #FFE24D;

  --yellow:        #FFD200;
  --yellow-amber:  #F1C232;
  --green-check:   #22B24C;
  --red:           #E23B2E;
  --red-alert:     #C0392B;

  --page:          #0A0A0A;
  --page-deep:     #070707;
  --band:          #0D0B0A;
  --surface:       #171310;
  --surface-card:  #1A1410;
  --warm-page:     #181410;
  --warm-card:     #261F18;
  --brown-ink:     #3B2A22;

  --light-band:    #F4F1ED;
  --light-alt:     #EDEBE8;
  --light-ink:     #17130F;
  --light-body:    #3F3934;
  --light-muted:   #6F6862;
  --light-grey:    #EBEBEB;

  --ink:           #FFFFFF;
  --text-body:     #C6C1BB;
  --muted:         #8A8580;
  --muted-deep:    #6B6660;

  --line:          rgba(255, 255, 255, 0.10);
  --line-strong:   rgba(255, 255, 255, 0.18);
  --line-light:    rgba(23, 19, 15, 0.12);
  --line-light-strong: rgba(23, 19, 15, 0.28);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ============================================================
   UTILITIES
============================================================ */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.offer-wide { width: 100%; max-width: 1320px; margin: 0 auto; }
.text-orange { color: var(--orange); }
.accent { color: var(--orange); }
.orange-print { color: var(--orange-print); }

@keyframes tick-pulse { 0%, 70% { transform: scale(1); } 82% { transform: scale(1.03); } 100% { transform: scale(1); } }
@keyframes hw-shine { 0%, 62% { left: -60%; } 92%, 100% { left: 130%; } }
@keyframes hw-pulse-live { 70% { box-shadow: 0 0 0 9px rgba(226, 59, 46, 0); } 100% { box-shadow: 0 0 0 0 rgba(226, 59, 46, 0); } }

.tick-pulse { animation: tick-pulse 1s ease infinite; }

/* ============================================================
   STEPS + HEADLINE + TIMER
============================================================ */
.hero-block {
  padding: 34px 20px 46px;
  background: linear-gradient(180deg, var(--surface-card), var(--band));
  border-bottom: 1px solid var(--orange-border);
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.stepper {
  display: block;
  width: 100%;
  max-width: 760px;
  padding: 12px;
  background: rgba(24, 20, 16, 0.95);
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.stepper:hover { opacity: 0.85; }

.stepper-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stp { display: flex; align-items: center; gap: 6px; white-space: nowrap; color: #5C564E; }
.stp.active { color: var(--orange); }

.stp-dot {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  background: var(--orange); color: #000;
}

.stp.active .stp-dot { animation: hw-pulse-live 2s infinite; }
.stp-dot.ring { background: transparent; color: #6A645C; border: 1.5px solid #423C34; }

.stp-line { flex: 1; height: 2px; border-radius: 2px; margin: 0 10px; min-width: 22px; background: #38322B; }
.stp-line.active { background: linear-gradient(90deg, var(--orange), rgba(255, 107, 26, 0.3)); }

.hero-title {
  max-width: 900px;
  text-align: center;
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-scarcity {
  font-family: 'Space Mono', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow-amber);
}

/* ---------- clock (variant stacked) ---------- */
.clock { display: flex; align-items: flex-start; justify-content: center; gap: clamp(6px, 2vw, 18px); margin-top: 6px; }
.clock-col { display: flex; flex-direction: column; align-items: center; }

.clock-col b {
  font-size: clamp(58px, 15vw, 99px);
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--yellow);
}

.clock-col small {
  margin-top: 2px;
  font-size: clamp(13px, 3vw, 17px);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.clock-sep { font-size: clamp(42px, 11vw, 74px); font-weight: 800; line-height: 1.1; color: var(--yellow); }

/* ============================================================
   PACKAGES
============================================================ */
.offer-section { padding: 56px 20px 64px; background: var(--light-band); }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.09fr 1fr;
  align-items: center;
  gap: 22px;
}

.pk-wrap { display: block; cursor: pointer; border-radius: 18px; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.pk-wrap:hover { transform: translateY(-6px) scale(1.02); }
.pk-wrap.hero { position: relative; z-index: 2; transform: scale(1.04); }
.pk-wrap.hero:hover { transform: scale(1.06) translateY(-6px); }

.pk-card {
  display: flex;
  flex-direction: column;
  padding: 0 20px 24px;
  overflow: hidden;
  border-radius: 18px;
  background: #FFF;
  border: 1px solid var(--line-light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28), 0 22px 44px -26px rgba(0, 0, 0, 0.6);
  color: #0B0B0B;
}

.pk-card.featured {
  background: var(--gold-featured);
  border: 2px solid var(--gold-edge);
  box-shadow: 0 0 0 2px #FFE24D, 0 0 10px rgba(255, 226, 77, 0.9), 0 0 26px rgba(255, 226, 77, 0.65), 0 0 48px rgba(255, 216, 77, 0.4);
  color: var(--gold-ink);
}

.pk-flag {
  display: block;
  align-self: stretch;
  margin: 10px 0 16px;
  padding: 13px 16px;
  border-radius: 12px;
  background: #000;
  text-align: center;
  font-weight: 800;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #EAF0E3;
}

.pk-flag.featured {
  margin: 0 -20px 16px;
  border-radius: 0;
  background: #FFF;
  color: var(--orange);
  font-size: clamp(20px, 4.4vw, 24px);
  -webkit-text-stroke: 0.7px currentColor;
}

.pk-qty {
  text-align: center;
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(25px, 5vw, 31px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.pk-supply {
  margin-top: 2px;
  text-align: center;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: #2A2521;
}

.pk-card.featured .pk-supply { color: #4A3B18; }

.pk-imgwrap { display: grid; place-items: center; flex: 1 1 auto; min-height: 180px; margin: 14px 0 4px; }
.pk-card.featured .pk-imgwrap { min-height: 250px; margin: 10px 0 6px; }

.pk-img { max-height: 190px; width: auto; object-fit: contain; }
.pk-card.featured .pk-img { max-height: 290px; transform: scale(1.18); filter: drop-shadow(0 14px 18px rgba(60, 40, 0, 0.38)); }

.pk-price { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin: 6px 0 14px; }
.pk-dollar { margin-top: 8px; font-size: 21px; font-weight: 800; }

.pk-big {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(54px, 12vw, 64px);
  line-height: 0.9;
}

.pk-per { margin-top: 6px; font-size: 11px; font-weight: 700; line-height: 1.15; text-transform: uppercase; }

.pk-checks {
  margin: 4px 0 18px;
  border-top: 1px dashed var(--line-light-strong);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.pk-card.featured .pk-checks { border-top-color: rgba(26, 18, 5, 0.28); font-size: 15px; font-weight: 900; }

.pk-checks li {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 2px;
  border-bottom: 1px dashed var(--line-light-strong);
}

.pk-card.featured .pk-checks li { border-bottom-color: rgba(26, 18, 5, 0.28); }
.pk-checks li.lead { color: var(--orange-deep); }
.pk-card.featured .pk-checks li.lead { color: var(--gold-ink); }
.pk-checks .ck { width: 17px; height: 17px; flex: 0 0 auto; }
.pk-checks .ck.green { color: var(--green-check); }

.pk-bottom { margin-top: auto; }

.pk-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 17px 20px;
  border-radius: 10px;
  font-size: clamp(15px, 3.4vw, 18px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.005em;
  text-align: center;
  overflow: hidden;
  -webkit-text-stroke: 0.6px currentColor;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.pk-btn-dark { background: var(--brown-ink); color: #F6F1EA; box-shadow: inset 0 -4px rgba(0, 0, 0, 0.12); }

.pk-btn-featured {
  background: linear-gradient(180deg, #FFD84D 0%, #FFD64A 55%, #EDBE36 80%, #CF9E1B 100%);
  color: var(--gold-ink);
  border: 1px solid #E0B02B;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -3px 3px -1px rgba(70, 45, 0, 0.4), inset 0 -14px 16px -5px rgba(72, 46, 0, 0.62), 0 5px 8px -3px rgba(0, 0, 0, 0.35);
}

.pk-wrap:hover .pk-btn { transform: translateY(-2px); }
.pk-btn .cart { width: 19px; height: 19px; flex: 0 0 auto; }

.pk-btn .shine {
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-18deg);
  animation: hw-shine 3.4s ease-in-out infinite;
}

.pk-pay { display: block; width: min(100%, 230px); margin: 12px auto 14px; }

.pk-total { padding-top: 14px; border-top: 1px dashed var(--line-light-strong); text-align: center; }
.pk-card.featured .pk-total { border-top-color: rgba(26, 18, 5, 0.28); }
.pk-total-line { font-size: 18px; font-weight: 800; }

.pk-total-line .was {
  margin-right: 6px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.pk-total-line .was.red { color: var(--red-alert); }

.pk-ship { margin-top: 3px; font-size: 13px; font-weight: 800; }
.pk-ship.free { font-weight: 900; color: var(--gold-ink); }
.pk-card:not(.featured) .pk-ship.free { color: var(--gold-ink); }
.pk-card:not(.featured) .pk-ship.free::first-letter { color: inherit; }

/* ============================================================
   GUARANTEE
============================================================ */
.guarantee-section {
  padding: 56px 20px;
  background: linear-gradient(180deg, var(--warm-card), var(--warm-page));
  border-top: 1px solid var(--orange-border);
  border-bottom: 1px solid var(--orange-border);
}

.guarantee-grid { display: grid; grid-template-columns: 300px 1fr; gap: 46px; align-items: start; }

.guarantee-seal {
  display: grid; place-items: center;
  width: 260px; height: 260px;
  margin: 0 auto;
  transition: transform 0.2s ease;
}

.guarantee-seal img { max-width: 100%; height: auto; display: block; }

.guarantee-seal:hover { transform: scale(1.04); }

.guarantee-content { display: flex; flex-direction: column; gap: 14px; }
.guarantee-intro { font-size: 16px; line-height: 1.6; color: var(--text-body); }

.guarantee-title {
  margin-top: 6px;
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--ink);
}

.guarantee-sub {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--orange);
}

.guarantee-text { font-size: 16px; line-height: 1.6; color: var(--text-body); }

.seals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }

.seals li {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  text-align: center;
  font-size: 12px; font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink);
}

.seal-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold-3);
  background: rgba(245, 213, 107, 0.12);
  color: var(--gold-2);
}

.seal-ico svg { width: 24px; height: 24px; }

/* ============================================================
   BONUSES
============================================================ */
.bonus-section { padding: 64px 20px 70px; background: var(--band); text-align: center; }

.bonus-header { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 28px; }

.bonus-eyebrow {
  padding: 8px 16px;
  border-radius: 4px;
  background: var(--orange-soft);
  border: 1px solid var(--orange);
  font-family: 'Space Mono', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
}

.bonus-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--ink);
}

.bonus-subhead { max-width: 640px; font-size: 16px; line-height: 1.6; color: var(--muted); }

.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.bonus-card {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  padding: 34px 24px 26px;
  background: var(--surface-card);
  border: 1px solid var(--orange-border);
  border-radius: 18px;
  transition: transform 0.22s ease;
}

.bonus-card:hover { transform: translateY(-4px); }

.bonus-tag {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 0 0 6px 6px;
  background: var(--orange);
  color: #000;
  font-family: 'Space Mono', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em;
}

.bonus-img { width: 100%; max-width: 220px; margin: 6px auto 0; border-radius: 6px; }

.bonus-card-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 21px;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

.bonus-card-desc { font-size: 14px; line-height: 1.55; color: var(--text-body); text-align: left; }

.bonus-meta-pill {
  align-self: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  font-family: 'Space Mono', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
}

.bonus-disclaimer { margin-top: 28px; font-size: 12px; color: var(--muted); }

/* ============================================================
   EXPERT
============================================================ */
.expert-section { padding: 56px 20px; background: var(--light-band); }

.expert-card {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: stretch;
  background: #FFF;
  border: 2px solid var(--orange-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 44px -26px rgba(0, 0, 0, 0.5);
}

.expert-copy { padding: 38px 40px; display: flex; flex-direction: column; gap: 16px; }

.expert-quote {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.14;
  color: var(--light-ink);
}

.expert-quote .qm { color: var(--orange); }
.expert-text { font-size: 16px; line-height: 1.6; color: var(--light-body); }
.expert-sign { font-family: 'Permanent Marker', cursive; font-size: 26px; color: var(--orange); }

.expert-img { display: grid; place-items: center; min-height: 260px; background: var(--light-alt); border-left: 1px dashed var(--line-light-strong); overflow: hidden; }
.expert-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   REVIEWS
============================================================ */
.reviews-section { padding: 56px 20px 64px; background: var(--light-band); text-align: center; }

.reviews-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--light-ink);
  margin-bottom: 22px;
}

.reviews-pill {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 999px;
  background: var(--surface-card);
  font-family: 'Space Mono', monospace;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
}

.polaroids { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 26px 0 22px; }

.polaroid {
  width: 210px;
  padding: 12px 12px 30px;
  background: #FFF;
  box-shadow: 0 12px 26px -14px rgba(0, 0, 0, 0.55);
  transition: transform 0.22s ease;
}

.polaroid.rot-a { transform: rotate(-4deg); }
.polaroid.rot-b { transform: rotate(2.5deg); }
.polaroid.rot-c { transform: rotate(-2deg); }
.polaroid:hover { transform: rotate(0deg); }

.polaroid-ph {
  display: grid; place-items: center;
  height: 190px;
  background: var(--light-alt);
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--light-muted);
  text-align: center; padding: 8px;
}

.reviews-list { display: grid; gap: 18px; width: 100%; max-width: 900px; margin: 0 auto; text-align: left; }

.review-card {
  display: flex; flex-direction: column;
  padding: 22px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 2px 4px rgba(23, 19, 15, 0.04), 0 16px 36px -20px rgba(23, 19, 15, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover { transform: translateY(-3px); }

.review-name { margin-bottom: 10px; font-size: 15px; color: var(--light-body); }
.review-name strong { color: var(--light-ink); }

.review-chip {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 4px 12px 4px 8px;
  border-radius: 6px;
  background: var(--light-alt);
  font-size: 15px; font-weight: 800;
  color: var(--orange-print);
}

.review-chip svg { fill: #E8963A; }
.review-pkg { margin: 10px 0; font-size: 15px; font-weight: 800; color: var(--light-ink); }
.review-text { font-size: 15px; line-height: 1.6; color: var(--light-body); }

/* ============================================================
   OFFER 2 — URGENCY + PACKAGES REPEAT
============================================================ */
.offer2-section { padding: 56px 20px 20px; background: var(--band); text-align: center; }

.offer2-title {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--ink);
}

.offer2-sub { margin: 12px 0 22px; font-size: 15px; color: var(--muted); }

.offer-grid-2 { margin-top: 12px; }

.freeship {
  display: flex;
  align-items: stretch;
  width: min(100%, 940px);
  margin: 34px auto 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 61, 0.35);
  background: linear-gradient(180deg, #241608 0%, #140b04 55%, #0a0603 100%);
  text-align: left;
}

.freeship-badge {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 34px 8px 16px;
  background: linear-gradient(135deg, #FF9A3E 0%, #F0740E 55%, #E2560A 100%);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

.freeship-badge img { height: 62px; width: auto; filter: brightness(0) invert(1); }

.freeship-copy {
  flex: 1;
  min-width: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 10px 18px 12px;
}

.freeship-headline { font-weight: 800; font-size: clamp(10px, 2.7vw, 22px); line-height: 1.15; color: #fff; white-space: nowrap; }
.freeship-note { margin-top: 3px; font-size: clamp(11px, 2.3vw, 14px); color: rgba(255, 255, 255, 0.62); }

/* ============================================================
   FAQ
============================================================ */
.faq-section { padding: 30px 20px 64px; background: var(--band); }

.faq-header { text-align: center; margin-bottom: 22px; }

.faq-icon {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  margin: 0 auto 12px;
  border-radius: 999px;
  border: 2px solid var(--orange-border);
  background: var(--orange-soft);
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 30px;
  color: var(--orange);
}

.faq-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(29px, 4.2vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--ink);
}

.faq-list { display: grid; gap: 12px; width: 100%; max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--orange-border);
  border-radius: 14px;
  padding: 0 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 0;
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
}

.faq-toggle {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: 'Space Mono', monospace;
  font-size: 17px; line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 0 0 20px; font-size: 15px; line-height: 1.6; color: var(--text-body); }
.faq-answer-inner p + p { margin-top: 10px; }

/* ============================================================
   LABEL
============================================================ */
.label-section { padding: 56px 20px; background: var(--light-band); }

.label-wrap {
  background: #FFF;
  border: 1px solid var(--line-light-strong);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.label-img { margin: 0 auto; border-radius: 8px; }

/* ============================================================
   SCIENTIFIC REFERENCES
============================================================ */
.refs-section { padding: 56px 20px 48px; background: #FFF; text-align: center; }

.refs-title {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 35px);
  text-transform: uppercase;
  color: var(--light-ink);
  margin-bottom: 24px;
}

.refs-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 24px; }

.refs-logo {
  display: grid; place-items: center;
  width: 150px; height: 62px;
  background: var(--light-grey);
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--light-muted);
}

.refs-note { font-size: 12px; color: var(--light-muted); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  padding: 48px 0 96px;
  border-top: 1px solid var(--line);
  background: var(--page-deep);
  text-align: center;
}

.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.footer-brand {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 22px;
  margin: 20px 0;
  font-size: 14px; font-weight: 700;
  color: var(--text-body);
}

.footer-links a { min-height: 44px; display: inline-flex; align-items: center; }

.footer-disclaimer { max-width: 900px; margin: 0 auto 14px; font-size: 12px; line-height: 1.65; color: var(--muted-deep); }
.footer-copy { margin-top: 18px; font-size: 13px; color: var(--muted); }

.footer-reseller { margin-top: 28px; padding-top: 28px; border-top: 1px solid #1a1a1a; }

.buygoods-badge {
  display: inline-block;
  padding: 8px 22px;
  border: 2px solid #fff;
  border-radius: 4px;
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-reseller-text { max-width: 820px; margin: 0 auto; font-size: 12px; line-height: 1.7; color: #fff; }

/* ============================================================
   BUYGOODS DISCLAIMER (injetado)
============================================================ */
#disclaimer {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 20px auto 0;
  overflow: hidden;
}
#disclaimer * {
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: 1fr; justify-items: center; }
  .offer-grid > .pk-wrap { width: 90%; max-width: 440px; }
  .offer-grid > .pk-wrap.hero { order: -1; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .expert-card { grid-template-columns: 1fr; }
  .expert-img { border-left: none; border-top: 1px dashed var(--line-light-strong); }
  .seals { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .bonus-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .polaroids { overflow-x: auto; justify-content: flex-start; flex-wrap: nowrap; }
  .polaroid { flex: 0 0 auto; }
  .hero-title { font-size: 32px; }
  #disclaimer td { padding: 8px !important; }
}
