/* ==========================================================================
   Ceska Automotores — Sorteo Suzuki LTR 450
   Paleta: negro / rojo / blanco — mobile-first
   ========================================================================== */

:root {
  --black: #0b0b0c;
  --black-soft: #17171a;
  --red: #e10600;
  --red-bright: #ff2a1f;
  --red-dark: #a80400;
  --white: #ffffff;
  --gray-100: #f5f5f6;
  --gray-300: #d9d9dc;
  --gray-600: #6b6b70;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --max-width: 1080px;
  --font: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

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

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  margin: 0 0 32px;
  max-width: 620px;
}

.section-dark .section-subtitle {
  color: var(--gray-300);
}

/* ---------- Media frames (fotos + placeholder) ---------- */

.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1c1c1f, #0d0d0e);
  display: block;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 16px;
  background: radial-gradient(circle at 25% 15%, rgba(225, 6, 0, 0.3), transparent 60%), linear-gradient(135deg, #1c1c1f, #0d0d0e);
  color: var(--gray-300);
}

.media-placeholder-icon {
  font-size: 38px;
  filter: drop-shadow(0 4px 12px rgba(225, 6, 0, 0.5));
}

.media-placeholder-text {
  font-size: 12px;
  line-height: 1.4;
}

.media-placeholder-text strong {
  display: block;
  color: var(--white);
  font-size: 13.5px;
  margin-bottom: 2px;
}

.media-hero {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow), 0 0 60px rgba(225, 6, 0, 0.18);
  margin: 28px 0 0;
}

.hero-media-caption {
  padding: 12px 4px 0;
  font-size: 13px;
  color: var(--gray-300);
  text-align: center;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 130%;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(225, 6, 0, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(225, 6, 0, 0.65);
  transform: translateY(-2px);
}

.btn-glow {
  animation: btnPulseGlow 2.6s ease-in-out infinite;
}

@keyframes btnPulseGlow {
  0%, 100% { box-shadow: 0 8px 22px rgba(225, 6, 0, 0.45); }
  50% { box-shadow: 0 10px 34px rgba(225, 6, 0, 0.75); }
}

.btn-dark {
  background: linear-gradient(135deg, #222, var(--black));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.btn-dark:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2fe172, #1ebc59);
  color: var(--white);
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border-bottom: 3px solid var(--red);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 4px 14px rgba(225, 6, 0, 0.5);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-mark-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
}

.brand-name {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--gray-300);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ig-link {
  display: none;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--gray-300);
}

.header-cta {
  padding: 10px 16px;
  font-size: 13px;
}

@media (min-width: 640px) {
  .ig-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .brand-name {
    font-size: 17px;
  }
}

/* ---------- Hero ---------- */

.hero {
  background: radial-gradient(circle at 20% -10%, #2a2a2e 0%, var(--black) 55%);
  color: var(--white);
  padding: 40px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: var(--red);
  filter: blur(120px);
  opacity: 0.35;
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(225, 6, 0, 0.15);
  border: 1px solid var(--red);
  color: #ff5c53;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5c53;
  box-shadow: 0 0 0 0 rgba(255, 92, 83, 0.6);
  animation: livePulse 1.7s ease-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 92, 83, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(255, 92, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 83, 0); }
}

.hero-title {
  font-size: clamp(30px, 8vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 17px;
  color: var(--gray-300);
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: clamp(16px, 4vw, 20px);
  color: var(--white);
  font-weight: 800;
}

.hero-stat span {
  font-size: 11px;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ---------- Bonus ebooks ---------- */

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 760px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.bonus-media {
  aspect-ratio: 3 / 4;
}

.bonus-body {
  padding: 20px;
}

.bonus-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
}

.bonus-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  margin: 0;
}

.bonus-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.bonus-price-old {
  text-decoration: line-through;
  color: var(--gray-600);
  font-size: 13px;
}

.bonus-price-new {
  color: var(--red);
  font-weight: 800;
  font-size: 16px;
}

/* ---------- Prizes ---------- */

.prizes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 760px) {
  .prizes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.prize-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prize-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.prize-card.is-first {
  border: 2px solid var(--red);
}

.prize-card.is-first:hover {
  box-shadow: 0 16px 34px rgba(225, 6, 0, 0.25);
}

.prize-media {
  aspect-ratio: 4 / 3;
}

.prize-card-body {
  padding: 22px 24px 24px;
}

.prize-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}

.prize-card.is-first .prize-rank {
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
}

.prize-name {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
}

.prize-value {
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  margin: 0 0 12px;
}

.prize-desc {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

.prize-desc li {
  margin-bottom: 6px;
}

/* ---------- How it works ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  border: 1px solid var(--gray-300);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}

.step-title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 6px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  margin: 0;
}

/* ---------- Chances (packs) ---------- */

.chances-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 680px;
  margin: 0 auto;
}

.chance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  background: linear-gradient(160deg, #1a1a1d, #0a0a0b);
  border: 2px solid var(--red-bright);
  border-radius: 20px;
  padding: 26px 24px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(255, 42, 31, 0.4), inset 0 0 24px rgba(255, 42, 31, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chance-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 32px rgba(255, 42, 31, 0.6), inset 0 0 24px rgba(255, 42, 31, 0.08);
}

.chance-card.is-popular {
  border-color: var(--red-bright);
  box-shadow: 0 0 30px rgba(255, 42, 31, 0.55), inset 0 0 24px rgba(255, 42, 31, 0.08);
}

.chance-card.is-selected {
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15), 0 0 30px rgba(255, 42, 31, 0.6);
}

.chance-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255, 42, 31, 0.6);
  white-space: nowrap;
}

.chance-info {
  width: 100%;
}

.chance-title {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}

.chance-subtitle {
  color: #ffce54;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.chance-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.chance-price {
  color: var(--red-bright);
  font-size: 24px;
  font-weight: 900;
}

.chance-btn,
.chance-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(255, 42, 31, 0.4);
  white-space: nowrap;
}

.chance-card.is-selected .chance-select {
  background: var(--white);
  color: var(--black);
}

.chances-tagline {
  text-align: center;
  color: var(--gray-600);
  font-size: 15px;
  margin: 28px 0 0;
}

@media (min-width: 560px) {
  .chance-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .chance-info {
    width: auto;
  }

  .chance-buy {
    width: auto;
  }
}

/* ---------- Cupo / fecha ---------- */

.cupo-box {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
}

@media (min-width: 700px) {
  .cupo-box {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.cupo-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cupo-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: var(--gray-100);
  overflow: hidden;
  border: 1px solid var(--gray-300);
}

.cupo-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 0 12px rgba(225, 6, 0, 0.6);
}

.cupo-note {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 10px;
}

.fecha-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px dashed var(--gray-300);
}

.fecha-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray-600);
  font-weight: 700;
  margin-bottom: 6px;
}

.fecha-value {
  font-size: 18px;
  font-weight: 800;
}

/* ---------- Requirements ---------- */

.requisitos-box {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}

.requisitos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

@media (min-width: 700px) {
  .requisitos-list {
    grid-template-columns: 1fr 1fr;
  }
}

.requisitos-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-300);
  align-items: flex-start;
}

.requisitos-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: var(--black);
}

.faq-question .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question .icon {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray-600);
}

/* ---------- Galería / Carrusel ---------- */

.carousel-wrap {
  position: relative;
  margin-top: 8px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 20px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 78%;
  scroll-snap-align: center;
}

@media (min-width: 640px) {
  .carousel-slide {
    flex-basis: 45%;
  }
}

@media (min-width: 960px) {
  .carousel-slide {
    flex-basis: 30%;
  }
  .carousel-track {
    padding-left: calc((100% - var(--max-width)) / 2 + 20px);
    padding-right: calc((100% - var(--max-width)) / 2 + 20px);
  }
}

.carousel-slide .media-frame {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.carousel-caption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--gray-600);
}

.carousel-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 26px rgba(225, 6, 0, 0.55);
}

.carousel-prev {
  left: 6px;
}

.carousel-next {
  right: 6px;
}

@media (max-width: 640px) {
  .carousel-arrow {
    display: none;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--red);
  transform: scale(1.35);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 44px 0 24px;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-logo {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-logo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: var(--white);
}

.footer-brand {
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-legal summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-legal ol {
  padding-left: 18px;
  color: var(--gray-300);
}

.footer-legal li {
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 24px;
  font-size: 12px;
  color: var(--gray-600);
  text-align: center;
}

/* ---------- Sticky mobile CTA ---------- */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  padding: 10px 16px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
}

.sticky-cta .btn {
  width: 100%;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

body {
  padding-bottom: 78px;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}

/* ---------- Checkout page ---------- */

.checkout-shell {
  display: grid;
  gap: 24px;
  padding: 28px 0 60px;
}

@media (min-width: 860px) {
  .checkout-shell {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }
}

.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.checkout-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
}

.checkout-card h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 16px;
}

.pack-option {
  font: inherit;
  text-align: left;
  width: 100%;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.order-summary-row:last-of-type {
  border-bottom: none;
}

.order-summary-row.total {
  padding-top: 14px;
  font-size: 18px;
  font-weight: 800;
}

.order-summary-row.total span:last-child {
  color: var(--red);
}

.payment-data {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 12px 14px;
}

.payment-field-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--gray-600);
  font-weight: 700;
  margin-bottom: 2px;
}

.payment-field-value {
  font-size: 15px;
  font-weight: 700;
  word-break: break-all;
}

.copy-btn {
  flex-shrink: 0;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.copy-btn.is-copied {
  background: var(--red);
}

.alert-box {
  background: #fff5f5;
  border: 1px solid var(--red);
  color: var(--black);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 14px;
  margin-bottom: 18px;
}

.alert-box strong {
  color: var(--red);
}

.checkout-side {
  position: sticky;
  top: 90px;
}

.mini-requisitos {
  font-size: 12.5px;
  color: var(--gray-600);
}

.mini-requisitos li {
  margin-bottom: 6px;
}
