/* ============================================================
   RELAXEI — Roleta de Prêmios | Design System
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --blue:        #2E8DD6;
  --blue-dark:   #1A6BB0;
  --blue-deep:   #0F4D8A;
  --yellow:      #FFD600;
  --yellow-dark: #E6BE00;
  --orange:      #FF6A00;
  --orange-dark: #D95800;
  --cream:       #FFF8EE;
  --cream-dark:  #FDEBC4;
  --dark:        #111827;
  --dark-2:      #1F2937;
  --white:       #FFFFFF;
  --gray:        #6B7280;
  --gray-light:  #F3F6FA;

  --font: 'Outfit', sans-serif;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-blue: 0 12px 40px rgba(46, 141, 214, 0.35);
  --shadow-lg:   0 24px 64px rgba(0, 0, 0, 0.16);

  --radius-card: 20px;
  --radius-pill: 100px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}
img     { display: block; max-width: 100%; }
ol, ul  { list-style: none; }
button  { font-family: var(--font); cursor: pointer; border: none; outline: none; }

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  background: var(--blue);
  padding: 18px 32px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 50% 50% / 0 0 20px 20px;
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 10;
}

.header__logo {
  height: 38px;
  object-fit: contain;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 16px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dot grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(46, 141, 214, 0.10) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* ── Decorações Copa ─────────────────────────────────────── */
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.13;
  user-select: none;
}

.hero__deco--bola {
  width: 130px;
  bottom: -24px;
  left: -18px;
  animation: deco-spin 14s linear infinite;
}

.hero__deco--taca {
  width: 88px;
  top: 28px;
  right: -8px;
  animation: deco-float 5s ease-in-out infinite;
}

.hero__deco--bandeira {
  width: 76px;
  bottom: 40px;
  right: 12px;
  animation: deco-sway 6s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes deco-spin {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

@keyframes deco-float {
  0%, 100% { transform: translateY(0);     }
  50%       { transform: translateY(-14px); }
}

@keyframes deco-sway {
  0%, 100% { transform: rotate(-6deg); }
  50%       { transform: rotate(6deg);  }
}

/* Bottom fade-out of dots */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

/* Sparkle decorations */
.hero__star {
  display: inline-block;
  color: var(--yellow);
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(255, 214, 0, 0.5));
  line-height: 1;
}
.hero__star--1 { font-size: 22px; top:  4px;  left:   4px; }
.hero__star--2 { font-size: 14px; top: 28px;  right:  8px; }
.hero__star--3 { font-size: 12px; bottom: 16px; left: 16px; }
.hero__star--4 { font-size: 20px; bottom:  4px; right:  4px; }

.hero__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  border: 1.5px solid rgba(46, 141, 214, 0.4);
  padding: 5px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__logo-brand {
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(46, 141, 214, 0.2));
}

.hero__mascote-icon {
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
}

.hero__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  color: #555;
}

.hero__sub strong {
  color: var(--blue);
  font-weight: 700;
}

.hero__sub mark {
  background: none;
  color: var(--dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* ── ROLETA ─────────────────────────────────────────────── */
.roleta {
  background: linear-gradient(170deg, #EEF6FF 0%, #FFFFFF 55%, #FFF8EE 100%);
  padding: 72px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Large soft circle glow behind wheel */
.roleta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 0, 0.18) 0%,
    rgba(46, 141, 214, 0.10) 45%,
    transparent 70%
  );
  pointer-events: none;
}

/* Top-left decorative ring */
.roleta::after {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(46, 141, 214, 0.08);
  pointer-events: none;
}

.roleta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roleta__hexa {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(200px, 55vw, 380px);
  font-weight: 900;
  color: var(--blue);
  opacity: 0.07;
  letter-spacing: -10px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}

.roleta__label {
  display: inline-block;
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
  margin-bottom: 44px;
  position: relative;
}

.roleta__label::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.roleta__wheel-wrap {
  display: inline-block;
  border-radius: 50%;
  padding: 10px;
  background: conic-gradient(
    var(--yellow)      0deg,
    #FFAA00           90deg,
    var(--yellow)     180deg,
    #FFAA00           270deg,
    var(--yellow)     360deg
  );
  box-shadow:
    0 0 0 6px  rgba(255, 214, 0, 0.22),
    0 0 0 16px rgba(255, 214, 0, 0.07),
    0 32px 80px rgba(46, 141, 214, 0.22),
    0 16px 40px rgba(0, 0, 0, 0.10);
  animation: pulse-glow 2.8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 0 6px  rgba(255, 214, 0, 0.22),
      0 0 0 16px rgba(255, 214, 0, 0.07),
      0 32px 80px rgba(46, 141, 214, 0.22),
      0 16px 40px rgba(0, 0, 0, 0.10);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(255, 214, 0, 0.38),
      0 0 0 28px rgba(255, 214, 0, 0.10),
      0 32px 80px rgba(46, 141, 214, 0.30),
      0 16px 40px rgba(0, 0, 0, 0.12);
  }
}

.roleta__img {
  width: min(310px, 82vw);
  border-radius: 50%;
  display: block;
}

/* Floating sparkles around wheel */
.roleta__spark {
  position: absolute;
  color: var(--yellow);
  font-size: 18px;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(255, 214, 0, 0.6));
  animation: float-spark 3s ease-in-out infinite;
}
.roleta__spark--1 { top: 18%; left:  10%; font-size: 14px; animation-delay: 0s;    }
.roleta__spark--2 { top: 22%; right: 10%; font-size: 20px; animation-delay: 0.6s;  }
.roleta__spark--3 { bottom: 22%; left: 8%;  font-size: 12px; animation-delay: 1.2s; }
.roleta__spark--4 { bottom: 18%; right: 8%; font-size: 16px; animation-delay: 1.8s; }

@keyframes float-spark {
  0%, 100% { transform: translateY(0) scale(1);    opacity: 0.8; }
  50%       { transform: translateY(-8px) scale(1.1); opacity: 1;   }
}

/* ── COMO PARTICIPAR ────────────────────────────────────── */
.como {
  background: var(--gray-light);
  padding: 80px 24px;
  text-align: center;
}

.como__inner {
  max-width: 480px;
  margin: 0 auto;
}

.como__title {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
}

.como__title span { color: var(--blue); }

.como__mascote {
  width: min(240px, 72%);
  margin: 0 auto 32px;
  filter: drop-shadow(0 14px 30px rgba(46, 141, 214, 0.15));
}

.como__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 48px;
}

/* ── STEPS — Timeline ───────────────────────────────────── */
.steps {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.step {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.step__spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(46, 141, 214, 0.45);
  z-index: 1;
}

.step__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--yellow) 100%);
  margin: 8px 0;
  border-radius: 2px;
  min-height: 28px;
}

.step__card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 22px 24px 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}

.step__card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 64px; height: 64px;
  background: radial-gradient(circle at 100% 0%, rgba(46, 141, 214, 0.06) 0%, transparent 70%);
}

.step__title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 6px;
}

.step__desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray);
}

.step__btn {
  margin-top: 16px;
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(255, 214, 0, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.step__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 214, 0, 0.65);
}

/* ── CTA ────────────────────────────────────────────────── */
.cta {
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding: 80px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Top wave — removed (clean section cut) */

/* Decorative circle top-right */
.cta-deco-tr {
  position: absolute;
  top: -80px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(255, 214, 0, 0.14);
  background: rgba(255, 214, 0, 0.05);
  pointer-events: none;
}

/* Decorative circle bottom-left */
.cta-deco-bl {
  position: absolute;
  bottom: -100px; left: -70px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* Glowing center halo */
.cta-deco-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorações produto CTA */
.cta__deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.13;
  z-index: 0;
}

.cta__deco--mixer {
  width: 150px;
  bottom: -20px;
  right: -18px;
  animation: deco-float 5.5s ease-in-out infinite;
}

.cta__deco--sache {
  width: 90px;
  top: 32px;
  left: -10px;
  animation: deco-sway 6.5s ease-in-out infinite;
  transform-origin: bottom center;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
}

.cta__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1.5px solid rgba(255, 214, 0, 0.45);
  padding: 5px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.cta__title {
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.cta__title em {
  font-style: normal;
  color: var(--yellow);
}

.cta__benefits {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta__benefit {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.90);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta__mascote {
  width: min(210px, 64%);
  margin: 0 auto 36px;
  animation: float 3.2s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

@keyframes float {
  0%, 100% { transform: translateY(0);      }
  50%       { transform: translateY(-12px);  }
}

.btn-cta {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 56px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(255, 214, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 214, 0, 0.65);
}

.cta__note {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.2px;
}

/* ── MODAL ──────────────────────────────────────────────── */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: 40px;
  width: 95%;
  max-width: 520px;
  padding: 36px 40px 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(40px) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font);
}

.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }

/* Close */
.modal__close {
  position: absolute;
  top: 16px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f5f5f7;
  color: #86868b;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 20;
  line-height: 1;
  transition: background 0.2s;
}
.modal__close:hover { background: #e5e5ea; }

/* Progress bar */
.modal__progress-track {
  width: 60px; height: 4px;
  background: #eeeeee;
  border-radius: 2px;
  margin: 0 auto 28px;
  overflow: hidden;
}

.modal__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 33%;
}

/* Steps */
.modal__step { display: none; }
.modal__step.is-active { display: block; animation: stepIn 0.35s ease; }

@keyframes stepIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1);    }
}

/* Shared mascote */
.modal__mascote {
  height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.10));
}

/* Typography */
.modal__title {
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.15;
  margin-bottom: 6px;
}

.modal__subtitle {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.45;
  margin-bottom: 4px;
}

/* Form */
.modal__form { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }

.modal__input {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1f;
  background: var(--white);
  border: 2px solid #e8e8ed;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  outline: none;
  display: block;
  transition: border-color 0.2s;
}

.modal__input:focus       { border-color: var(--blue); }
.modal__input.is-error    { border-color: #ff3b30; background: #fff9f9; }
.modal__input::placeholder { color: #aeaeb2; }

.modal__error {
  font-size: 12px;
  color: #ff3b30;
  font-weight: 500;
  min-height: 14px;
}

/* Buttons */
.modal__btn {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: var(--dark);
  box-shadow: 0 10px 24px rgba(255, 214, 0, 0.42);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal__btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 214, 0, 0.58);
}

.modal__btn:disabled { opacity: 0.55; cursor: not-allowed; }

.modal__btn--resgate {
  background: transparent;
  border: 2.5px dashed #C49A00;
  color: #8a6400;
  box-shadow: none;
  font-size: 15px;
}

.modal__btn--resgate:hover:not(:disabled) {
  background: var(--yellow);
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.45);
}

/* Wheel (step 2) */
.modal__wheel-wrap {
  position: relative;
  display: inline-block;
  margin: 16px auto 20px;
}

.modal__pointer {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: var(--yellow);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
  z-index: 2;
  line-height: 1;
}

.modal__wheel {
  width: 230px; height: 230px;
  border-radius: 50%;
  display: block;
  border: 6px solid var(--yellow);
  box-shadow:
    0 0 0 4px rgba(255, 214, 0, 0.22),
    0 16px 48px rgba(0,0,0,0.14);
}

.modal__wheel.is-spinning {
  transition: transform 4.5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

/* Prize (step 3) */
.modal__trophy {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.modal__prize-name {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 10px 0 4px;
}

.modal__prize-value {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 14px;
}

.modal__prize-note {
  font-size: 12px;
  color: #6e6e73;
  line-height: 1.6;
  text-align: left;
  background: #f9f9fb;
  padding: 12px 14px;
  border-radius: 20px;
  border: 1px solid #f0f0f2;
  margin-bottom: 16px;
}

.modal__prize-note strong { color: #1d1d1f; font-weight: 700; }

/* Package tabs */
.modal__packages {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.modal__pkg {
  flex: 1;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  padding: 9px 4px;
  border-radius: 10px;
  border: 1.5px solid #e8e8ed;
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}

.modal__pkg.is-active,
.modal__pkg:hover {
  border-color: var(--yellow-dark);
  background: rgba(255, 214, 0, 0.12);
  color: #1d1d1f;
}

/* Price card */
.modal__price-card {
  background: #f9f9fb;
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 14px;
  text-align: left;
  border: 1px solid #f0f0f2;
}

.modal__price-label {
  font-size: 12px;
  color: #6e6e73;
  margin-bottom: 4px;
}

.modal__price-old {
  font-size: 13px;
  color: #aeaeb2;
  text-decoration: line-through;
}

.modal__price-new {
  font-size: 22px;
  font-weight: 800;
  color: #1d1d1f;
  display: block;
  line-height: 1.2;
}

.modal__frete {
  display: inline-block;
  background: #DCFCE7;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

/* ── DESKTOP ────────────────────────────────────────────── */
@media (min-width: 768px) {

  /* Roleta — centralização e wheel maior */
  .roleta {
    padding: 88px 48px 104px;
  }

  .roleta__label {
    margin-bottom: 52px;
  }

  .roleta__img {
    width: 400px;
  }

  .roleta__wheel-wrap {
    padding: 12px;
  }

  /* Sparkles mais espalhados no desktop */
  .roleta__spark--1 { left:  18%; }
  .roleta__spark--2 { right: 18%; }
  .roleta__spark--3 { left:  16%; }
  .roleta__spark--4 { right: 16%; }

  /* Hero — logo e mascote maiores */
  .hero__logo-brand   { height: 68px; }
  .hero__mascote-icon { height: 76px; }

  /* Como — steps lado a lado */
  .steps { max-width: 600px; }

}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 44px 24px;
  text-align: center;
}

.footer__logo {
  height: 34px;
  object-fit: contain;
  margin: 0 auto 14px;
  opacity: 0.85;
}

.footer__copy {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}
