/* ===========================================================
   Vivendo de Pipoca Gourmet — Design System
   =========================================================== */

:root {
  --cream: #f5e8d1;
  --cream-light: #fbf3e3;
  --paper: #fffaf0;
  --maroon-950: #3d0f18;
  --maroon-900: #4a1420;
  --maroon-800: #601a25;
  --maroon-700: #732233;
  --gold: #c89b3c;
  --gold-light: #e0bf6f;
  --toast: #d97a3f;
  --green: #2f8f4e;
  --white: #fdfdfc;
  --ink: #3d0f18;
  --muted: #7a5a52;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(61, 15, 24, 0.08);
  --shadow-md: 0 8px 24px rgba(61, 15, 24, 0.12);
  --shadow-lg: 0 16px 48px rgba(61, 15, 24, 0.18);

  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--toast);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--tight { padding: 48px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--maroon-800);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0;
  border-radius: 0;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--toast);
  flex: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 900;
  color: var(--maroon-950);
  margin: 0 0 16px;
  line-height: 1.15;
  text-wrap: balance;
}

.serif {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
}

h1 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 4vw, 40px); text-align: center; letter-spacing: -0.01em; }
h3 { font-size: 20px; }

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 40px;
  text-wrap: balance;
}

.highlight { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.highlight-green { color: var(--green); font-weight: 800; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: none;
  transition: transform 0.28s var(--ease-pop), box-shadow 0.28s ease;
}

.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(0.98); transition-duration: 0.1s; }

.btn--primary {
  background: var(--maroon-800);
  color: var(--cream-light);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.btn--cta {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-wrap {
  text-align: center;
  margin-top: 32px;
}

.btn-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--maroon-800);
  flex-wrap: wrap;
}

.btn-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--maroon-900);
  color: var(--cream-light);
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.topbar span { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 40px; text-align: center; }
.hero h1 { max-width: 880px; margin: 0 auto 20px; }
.hero-sub { max-width: 620px; margin: 0 auto 40px; color: var(--muted); font-size: 18px; }
.hero-sub strong { color: var(--maroon-950); }

.mockup {
  position: relative;
  max-width: 900px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -20px;
}
.mockup::before {
  content: "";
  position: absolute;
  inset: -60px -40px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(200, 155, 60, 0.28), transparent 70%),
    radial-gradient(ellipse 40% 35% at 75% 70%, rgba(217, 122, 63, 0.18), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.mockup-laptop, .mockup-tablet, .mockup-phone { position: relative; z-index: 1; }

.mockup-laptop {
  width: 58%;
  background: linear-gradient(160deg, var(--maroon-900), var(--maroon-950));
  border-radius: 18px 18px 4px 4px;
  padding: 16px 16px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.mockup-laptop::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 70%; height: 14px;
  background: #2a2a2a;
  border-radius: 0 0 8px 8px;
}
.mockup-screen {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10.5;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mockup-screen img { flex: 1; object-fit: cover; width: 100%; height: 100%; }
.mockup-screen .mockup-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--maroon-950);
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 4px; text-transform: uppercase; z-index: 2;
}
.mockup-screen .mockup-caption {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.mockup-screen .mockup-caption strong {
  display: block; font-family: var(--font-display); font-size: 22px; line-height: 1.1;
}

.mockup-tablet {
  width: 20%;
  margin: 0 -18px 8px;
  background: #1c1c1c;
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 3;
}
.mockup-phone {
  width: 15%;
  margin: 0 -14px 4px;
  background: #1c1c1c;
  border-radius: 20px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.mockup-tablet img, .mockup-phone img {
  border-radius: 8px;
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 720px) {
  .mockup { flex-wrap: wrap; }
  .mockup-laptop { width: 100%; order: 1; }
  .mockup-tablet { width: 30%; margin: -10px 8px 0 0; order: 2; }
  .mockup-phone { width: 22%; margin: -6px 0 0 8px; order: 3; }
}

/* ---------- Benefit cards ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .grid-3 { grid-template-columns: 1fr; } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 24px;
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 8px; text-transform: uppercase; font-size: 15px; letter-spacing: 0.02em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Journey / timeline ---------- */
.journey-intro { text-align: center; margin-bottom: 48px; }
.journey {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.journey-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.journey-path path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-dasharray: 2 9;
  stroke-linecap: round;
}
.journey-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
}
.journey-row:nth-of-type(even) { flex-direction: row-reverse; }

.journey-card {
  flex: 0 0 260px;
  background: var(--maroon-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.journey-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}
.journey-card-text { padding: 0 20px 26px; }
.journey-card-text strong {
  display: block;
  font-family: var(--font-display);
  color: var(--cream-light);
  font-size: 24px;
  margin-bottom: 10px;
}
.journey-divider { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 10px; }
.journey-card-text span { color: var(--gold-light); font-size: 14px; letter-spacing: 0.04em; }

.journey-info { flex: 1; }
.journey-tag {
  display: inline-block;
  background: var(--maroon-950);
  color: var(--cream-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.journey-info p { margin: 0; font-size: 17px; font-weight: 600; }

@media (max-width: 640px) {
  .journey-row, .journey-row:nth-of-type(even) { flex-direction: column; text-align: center; }
  .journey-card { flex: 0 0 auto; width: 100%; max-width: 320px; }
}

/* ---------- Before / After ---------- */
.ba-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ba-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1254 / 690;
  background-image: url("../img/misc/antes-depois.webp");
  background-size: 100% auto;
  background-position: top;
  background-repeat: no-repeat;
}
.ba-tag {
  position: absolute;
  top: 2%;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(14px, 3vw, 30px);
  color: #fff;
  background: var(--maroon-800);
  padding: 12px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  width: 30%;
  text-align: center;
  box-sizing: border-box;
}
.ba-tag--before { left: 8%; }
.ba-tag--after { right: 8%; background: var(--maroon-950); }

.ba-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-list {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-list--before { background: #241014; }
.ba-list--after { background: var(--cream-light); }
.ba-item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; font-weight: 600; }
.ba-list--before .ba-item { color: var(--cream-light); }
.ba-list--after .ba-item { color: var(--maroon-950); }
.ba-icon {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
}
.ba-icon--x { background: rgba(220,60,60,0.15); color: #e05656; border: 2px solid #e05656; }
.ba-icon--check { background: rgba(47,143,78,0.12); color: var(--green); border: 2px solid var(--green); }

@media (max-width: 600px) {
  .ba-lists { grid-template-columns: 1fr; }
  .ba-tag { font-size: 14px; padding: 6px 14px; }
}

/* ---------- Learn list ---------- */
.learn-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.learn-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 15.5px;
}
.learn-check {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--maroon-800);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* ---------- Flavors grid ---------- */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .flavor-grid { grid-template-columns: repeat(2, 1fr); } }

.flavor-card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.flavor-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.flavor-card-text { padding: 16px 18px; }
.flavor-card-text h3 { margin: 0 0 4px; font-family: var(--font-display); font-weight: 600; text-transform: none; font-size: 20px; color: var(--maroon-900); letter-spacing: 0; }
.flavor-card-text p { margin: 0; color: var(--muted); font-size: 14px; }

.bestseller-label {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: 32px 0 24px;
  text-transform: uppercase;
  font-size: 14px;
}

/* ---------- Flavor category carousel ---------- */
.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.cat-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-light);
  border: none;
  padding: 0;
}
.cat-dot.is-active { background: var(--maroon-800); }

.cat-carousel { position: relative; }
.cat-track { position: relative; }
.cat-slide {
  display: none;
  padding: 0 4px;
  animation: catFade 0.3s ease;
}
.cat-slide.is-active { display: block; }
@keyframes catFade { from { opacity: 0; } to { opacity: 1; } }
.cat-panel {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.cat-panel h3 {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: 22px;
  margin-bottom: 20px;
}
.cat-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px) { .cat-pills { grid-template-columns: 1fr; } }
.cat-pill {
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon-900);
}
.cat-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: none;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  z-index: 5;
}
.cat-nav--prev { left: -6px; }
.cat-nav--next { right: -6px; }
@media (max-width: 700px) { .cat-nav { display: none; } }

/* ---------- Scalloped divider (popcorn-box rim motif) ---------- */
.scallop {
  position: absolute;
  left: 0; right: 0;
  height: 13px;
  overflow: hidden;
  background-image: radial-gradient(circle at 13px 13px, var(--scallop-color, var(--cream)) 12.5px, transparent 13px);
  background-size: 26px 26px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.scallop--top { top: -1px; }
.scallop--bottom { bottom: -1px; transform: scaleY(-1); }

/* ---------- Instructor ---------- */
.instructor-section {
  position: relative;
  background: var(--maroon-950);
  color: var(--cream-light);
  text-align: center;
}
.instructor-section h2 { color: var(--cream-light); }
.instructor-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--gold);
  margin: 0 auto 24px;
}
.instructor-name {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.instructor-bio {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: left;
  color: #e9d7cf;
  font-size: 15.5px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.instructor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.stat {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 20px 10px;
  color: var(--maroon-950);
}
.stat strong { display: block; font-size: 26px; font-weight: 900; }
.stat span { font-size: 11px; text-transform: uppercase; font-weight: 800; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- Why unique ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }
.why-card h3 { display: flex; align-items: center; gap: 10px; text-transform: none; font-size: 18px; letter-spacing: 0; }
.why-card .emoji { font-size: 22px; }

/* ---------- Bonuses ---------- */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
@media (max-width: 700px) { .bonus-grid { grid-template-columns: 1fr; } }
.bonus-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.bonus-check {
  flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(47,143,78,0.14);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  border: 2px solid var(--green);
}
.bonus-text { flex: 1; font-weight: 700; font-size: 14.5px; }
.bonus-value {
  font-size: 11px; font-weight: 800; color: var(--green);
  text-decoration: line-through; text-decoration-color: rgba(47,143,78,0.5);
  white-space: nowrap;
}
.bonus-total {
  max-width: 600px;
  margin: 32px auto 0;
  text-align: center;
  border: 2px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 20px;
  font-weight: 800;
  color: var(--maroon-900);
}
.bonus-total .free { color: var(--green); }

/* ---------- Testimonials (comment style) ---------- */
.testi-carousel { position: relative; }
.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  scrollbar-width: thin;
}
.testi-card {
  scroll-snap-align: start;
  flex: 0 0 340px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.testi-body { padding: 20px; flex: 1; }
.testi-comment { display: flex; gap: 10px; margin-bottom: 14px; }
.testi-avatar {
  flex: none;
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}
.testi-avatar--emoji {
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px;
}
.testi-name { font-weight: 800; font-size: 13.5px; color: #222; }
.testi-name span { font-weight: 500; color: #8a8a8a; font-size: 11.5px; margin-left: 6px; }
.testi-text { font-size: 13.5px; color: #333; line-height: 1.4; }
.testi-comment.is-author .testi-name { color: var(--maroon-800); }
.testi-comment.is-reply { margin-left: 26px; }
.testi-foot {
  background: var(--cream);
  padding: 14px 20px;
  text-align: center;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 4px; }
.testi-foot small { font-size: 11px; font-weight: 800; color: var(--maroon-800); letter-spacing: 0.03em; text-transform: uppercase; }

.social-proof-cta { text-align: center; margin-top: 8px; }
.social-proof-cta p { font-weight: 700; font-size: 17px; margin-bottom: 20px; }

/* ---------- Pricing / countdown ---------- */
.pricing-section { text-align: center; }
.countdown-badge {
  display: inline-block;
  background: var(--maroon-950);
  color: var(--cream-light);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.promo-window { color: var(--muted); font-size: 13px; font-weight: 700; margin-bottom: 22px; }
.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.countdown-unit {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  min-width: 82px;
  box-shadow: var(--shadow-sm);
}
.countdown-unit strong { display: block; font-size: 32px; font-weight: 900; color: var(--maroon-950); }
.countdown-unit span { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--muted); }

.scratch-label { font-weight: 700; color: var(--maroon-900); margin-bottom: 14px; }
.scratch-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.scratch-reveal {
  padding: 22px;
  background: linear-gradient(135deg, var(--green), #1f6b38);
  color: #fff;
}
.scratch-reveal strong { display: block; font-size: 26px; margin-bottom: 4px; }
canvas#scratchCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.price-card {
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--maroon-900);
}
.price-card-top { background: var(--cream-light); padding: 32px 28px 8px; }
.price-label { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.price-old {
  color: var(--muted);
  font-size: 20px;
  text-decoration: line-through;
  margin: 6px 0 0;
}
.price-value {
  font-size: 64px;
  font-weight: 900;
  color: var(--green);
  margin: 0;
  line-height: 1;
}
.price-value sup { font-size: 26px; top: -0.6em; }
.price-currency { font-size: 13px; font-weight: 800; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 18px; }
.price-terms { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }

.price-includes {
  background: linear-gradient(135deg, var(--gold), #a97f2a);
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.price-includes li {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--maroon-950);
  line-height: 1.45;
}
.price-cta-wrap { background: var(--cream-light); padding: 24px 28px 30px; }
.price-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  padding: 20px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.price-secure { margin-top: 14px; font-size: 12px; font-weight: 700; color: var(--muted); }

/* ---------- Guarantee ---------- */
.guarantee-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-sm);
}
.guarantee-badge {
  flex: none;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold) 60%, #a97f2a 100%);
  border: 4px solid #fff;
  outline: 3px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--maroon-950);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.guarantee-badge strong { font-size: 34px; font-weight: 900; line-height: 1; }
.guarantee-badge span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.guarantee-text h3 { text-transform: none; letter-spacing: 0; font-size: 22px; }
.guarantee-text p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 560px) { .guarantee-card { flex-direction: column; text-align: center; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 22px;
  text-align: left;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--maroon-950);
}
.faq-q-icon {
  flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--maroon-800);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }
.faq-item.is-open .faq-a { max-height: 300px; }

/* ---------- Footer ---------- */
footer {
  background: var(--maroon-950);
  color: #d8bdb5;
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
footer .footer-links a { text-decoration: underline; }
footer p { margin: 4px 0; }

/* ---------- Legal pages ---------- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.legal-page h1 { margin-bottom: 4px; }
.legal-page .updated { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.legal-page h2 { text-align: left; font-size: 20px; margin-top: 32px; }
.legal-page p, .legal-page li { color: var(--maroon-900); font-size: 15px; line-height: 1.65; }
.legal-page ul { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; margin: 12px 0; }
.legal-page a.back { display: inline-block; margin-top: 32px; font-weight: 700; color: var(--maroon-800); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-pop);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
