/* Sorteo Web Custom — compiled styles (Tailwind utilities + theme components) */

*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: var(--svm-font, "Outfit", ui-sans-serif, system-ui, sans-serif);
}

body {
  margin: 0;
  font-family: var(--svm-font, "Outfit", ui-sans-serif, system-ui, sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Los botones no heredan font-family por defecto del navegador. */
button,
input,
select,
textarea,
.button,
.wp-element-button,
.pack-showcase-cta,
.sorteo-pick-cta,
.sorteo-hero-cta,
.site-nav-cta,
.site-nav-toggle,
a.button,
button.button,
input[type="submit"],
input[type="button"],
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #place_order {
  font-family: var(--svm-font, "Outfit", ui-sans-serif, system-ui, sans-serif) !important;
}

img { max-width: 100%; height: auto; display: block; }

/* Layout */
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Grid */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }
.row-span-2 { grid-row: span 2 / span 2; }

/* Spacing */
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-4 { padding-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

/* Sizing */
.h-16 { height: 4rem; }
.w-16 { width: 4rem; }
.w-full { width: 100%; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-\[70vh\] { min-height: 70vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-lg { max-width: 32rem; }
.max-w-none { max-width: none; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.-right-2 { right: -0.5rem; }
.-top-2 { top: -0.5rem; }
.z-50 { z-index: 50; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-extrabold { font-weight: 800; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.leading-tight { line-height: 1.25; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.underline { text-decoration: underline; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Colors */
.bg-\[\#0a0a0a\] { background-color: #0a0a0a; }
.bg-\[\#0a0a0a\]\/95 { background-color: rgba(10, 10, 10, 0.95); }
.bg-\[\#111111\] { background-color: #111111; }
.bg-\[\#141414\] { background-color: #141414; }
.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }
.bg-black { background-color: #000; }
.bg-amber-400 { background-color: #fbbf24; }
.bg-amber-400\/10 { background-color: rgba(251, 191, 36, 0.1); }
.bg-amber-400\/20 { background-color: rgba(251, 191, 36, 0.2); }
.bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }
.text-white { color: #fff; }
.text-black { color: #000; }
.text-amber-400 { color: #fbbf24; }
.text-red-400 { color: #f87171; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.placeholder\:text-white\/30::placeholder { color: rgba(255, 255, 255, 0.3); }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Effects */
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-amber-400\/10 { box-shadow: 0 10px 15px -3px rgba(251,191,36,0.1); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.transition { transition-property: color, background-color, border-color, box-shadow; transition-duration: 150ms; }
.cursor-pointer { cursor: pointer; }

/* Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-amber-500\/20 { --tw-gradient-from: rgba(245,158,11,0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-orange-600\/10 { --tw-gradient-to: rgba(234,88,12,0.1); }

/* Ring / focus */
.ring-2 { box-shadow: 0 0 0 2px #fbbf24; }
.ring-amber-400 { --tw-ring-color: #fbbf24; }
.focus\:border-amber-400:focus { border-color: #fbbf24; }
.focus\:outline-none:focus { outline: none; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px #fbbf24; }
.focus\:ring-amber-400:focus { --tw-ring-color: #fbbf24; }

/* Hover */
.hover\:bg-amber-300:hover { background-color: #fcd34d; }
.hover\:border-amber-400\/50:hover { border-color: rgba(251, 191, 36, 0.5); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.hover\:shadow-amber-400\/10:hover { box-shadow: 0 10px 15px -3px rgba(251,191,36,0.1); }

/* Space */
.space-y-6 > * + * { margin-top: 1.5rem; }

/* SR only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Has selector for radio labels */
label:has(input:checked) {
  border-color: #fbbf24;
  background-color: rgba(251, 191, 36, 0.1);
}

/* Responsive sm: */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}

/* Responsive lg: */
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* Marquesina — Premios Flash */
.marquee-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-row--reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 35s;
}

.marquee-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.25), rgba(234, 88, 12, 0.15));
  border: 1px solid rgba(245, 197, 24, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-card__icon { color: #f5c518; font-size: 1rem; }
.marquee-card__text { color: #fff; font-size: 0.875rem; font-weight: 600; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Checkout WooCommerce — tema oscuro completo */
.sorteo-checkout-card {
  color: #fff;
}

.sorteo-checkout-card .woocommerce-checkout {
  color: #fff;
}

.sorteo-checkout-card .col2-set {
  display: block;
  width: 100%;
}

.sorteo-checkout-card .col2-set .col-1,
.sorteo-checkout-card .col2-set .col-2 {
  float: none;
  width: 100%;
  max-width: 100%;
}

.sorteo-checkout-card .col2-set .col-2 {
  display: none !important;
}

.sorteo-checkout-card .woocommerce-additional-fields,
.sorteo-checkout-card .woocommerce-shipping-fields,
.sorteo-checkout-card #order_comments_field,
.sorteo-checkout-card .col2-set .col-2:empty,
.sorteo-checkout-card .woocommerce-additional-fields__field-wrapper:empty {
  display: none !important;
}

.sorteo-checkout-card h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.sorteo-checkout-card .form-row {
  margin-bottom: 1rem;
}

.sorteo-checkout-card .form-row label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  display: block;
}

.sorteo-checkout-card .form-row label .required {
  color: #f87171;
  text-decoration: none;
}

.sorteo-checkout-card .input-text,
.sorteo-checkout-card input[type="text"],
.sorteo-checkout-card input[type="email"],
.sorteo-checkout-card input[type="tel"],
.sorteo-checkout-card input[type="password"],
.sorteo-checkout-card select,
.sorteo-checkout-card textarea {
  background: #0a0a0a !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0.5rem !important;
  color: #fff !important;
  padding: 0.75rem 1rem !important;
  width: 100%;
  box-shadow: none !important;
}

.sorteo-checkout-card .input-text:focus,
.sorteo-checkout-card input:focus,
.sorteo-checkout-card select:focus,
.sorteo-checkout-card textarea:focus {
  border-color: #f5c518 !important;
  outline: none;
  box-shadow: 0 0 0 1px #f5c518 !important;
}

.sorteo-checkout-card .input-text::placeholder,
.sorteo-checkout-card input::placeholder,
.sorteo-checkout-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.sorteo-checkout-card .woocommerce-billing-fields__field-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.sorteo-checkout-card #order_review_heading {
  margin-top: 1.5rem;
}

.sorteo-checkout-card .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}

.sorteo-checkout-card .woocommerce-checkout-review-order-table th,
.sorteo-checkout-card .woocommerce-checkout-review-order-table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.875rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.sorteo-checkout-card .woocommerce-checkout-review-order-table thead th {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sorteo-checkout-card .woocommerce-checkout-review-order-table .order-total th,
.sorteo-checkout-card .woocommerce-checkout-review-order-table .order-total td {
  color: #fff;
  font-weight: 700;
}

.sorteo-checkout-card .woocommerce-checkout-review-order-table .amount {
  color: #f5c518;
  font-weight: 700;
}

.sorteo-checkout-card #payment {
  background: #0f0f0f !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
}

.sorteo-checkout-card #payment ul.payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sorteo-checkout-card #payment ul.payment_methods li {
  margin: 0;
  padding: 0.75rem 0;
  background: transparent !important;
}

.sorteo-checkout-card #payment ul.payment_methods li label {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.sorteo-checkout-card #payment ul.payment_methods li img {
  max-height: 28px;
  width: auto;
}

.sorteo-checkout-card #payment div.payment_box,
.sorteo-checkout-card #payment .payment_box {
  background: #1a1a1a !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.875rem 1rem !important;
  margin: 0.75rem 0 0 !important;
  box-shadow: none !important;
}

.sorteo-checkout-card #payment div.payment_box::before,
.sorteo-checkout-card #payment .payment_box::before {
  border-bottom-color: #1a1a1a !important;
  border-color: transparent transparent #1a1a1a !important;
}

.sorteo-checkout-card #payment div.payment_box p,
.sorteo-checkout-card #payment .payment_box p {
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.sorteo-checkout-card #payment .place-order {
  margin-top: 1rem;
  padding-top: 1rem;
}

.sorteo-checkout-card #place_order {
  background: #f5c518 !important;
  border: none !important;
  border-radius: 9999px !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 0.9375rem;
  padding: 1rem 2rem !important;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
  float: none !important;
}

.sorteo-checkout-card #place_order:hover {
  background: #fcd34d !important;
}

.sorteo-checkout-card .woocommerce-privacy-policy-text,
.sorteo-checkout-card .woocommerce-terms-and-conditions-wrapper {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.sorteo-checkout-card .woocommerce-privacy-policy-text a,
.sorteo-checkout-card .woocommerce-terms-and-conditions-wrapper a {
  color: #f5c518;
  text-decoration: underline;
}

.sorteo-checkout-card .woocommerce-info,
.sorteo-checkout-card .woocommerce-message,
.sorteo-checkout-card .woocommerce-error,
.sorteo-checkout-card .woocommerce-NoticeGroup .woocommerce-info,
.sorteo-checkout-card .woocommerce-NoticeGroup .woocommerce-error {
  background: rgba(245, 197, 24, 0.1) !important;
  border: 1px solid rgba(245, 197, 24, 0.35) !important;
  border-top: 1px solid rgba(245, 197, 24, 0.35) !important;
  color: #f5c518 !important;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  list-style: none;
}

.sorteo-checkout-card .woocommerce-error {
  background: rgba(248, 113, 113, 0.1) !important;
  border-color: rgba(248, 113, 113, 0.4) !important;
  color: #fca5a5 !important;
}

.sorteo-checkout-card .woocommerce-info::before,
.sorteo-checkout-card .woocommerce-message::before,
.sorteo-checkout-card .woocommerce-error::before {
  color: inherit !important;
}

.sorteo-checkout-card .woocommerce-form-coupon-toggle,
.sorteo-checkout-card .checkout_coupon {
  display: none !important;
}

/* Pack cards */
.pack-card.is-loading { opacity: 0.6; pointer-events: none; }
.pack-card[aria-pressed="true"] { border-color: #f5c518; box-shadow: 0 0 0 2px #f5c518; }

.packs-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.pack-card {
  padding: 0.75rem 0.5rem !important;
  border-radius: 0.75rem;
}

.pack-card p {
  margin-top: 0;
  margin-bottom: 0;
}

.pack-card .pack-card-label {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.pack-card-badge {
  font-size: 0.625rem;
  padding: 0.15rem 0.4rem;
}

@media (min-width: 640px) {
  .packs-row { gap: 0.75rem; }
  .pack-card { padding: 1rem 0.75rem !important; }
  .pack-card .pack-card-label { font-size: 1.5rem; }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:gap-3 { gap: 0.75rem; }
  .sm\:px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

.mt-0\.5 { margin-top: 0.125rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.-right-1 { right: -0.25rem; }
.-top-1 { top: -0.25rem; }
.gap-2 { gap: 0.5rem; }

a.pack-card,
a.pack-card:link,
a.pack-card:visited,
a.pack-card:hover,
a.pack-card:active,
a.pack-card:focus {
  text-decoration: none !important;
  color: inherit !important;
  -webkit-text-decoration-skip: none;
  text-decoration-skip-ink: none;
}

a.pack-card *,
a.pack-card p,
a.pack-card span {
  text-decoration: none !important;
  color: inherit;
}

a.pack-card .text-amber-400 { color: #fbbf24 !important; }
a.pack-card .text-white { color: #fff !important; }
a.pack-card .text-white\/50 { color: rgba(255, 255, 255, 0.5) !important; }
a.pack-card .text-white\/40 { color: rgba(255, 255, 255, 0.4) !important; }
a.pack-card .text-black { color: #000 !important; }

a.sorteo-card,
a.sorteo-card:link,
a.sorteo-card:visited,
a.sorteo-card:hover {
  text-decoration: none !important;
  color: inherit !important;
}

.sorteo-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.875rem 1.75rem;
  line-height: 1.25;
  border-radius: 9999px;
  background-color: #fbbf24;
  color: #000 !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none !important;
  box-sizing: border-box;
}

a.sorteo-card:hover .sorteo-card-cta {
  background-color: #fcd34d;
}

/* Detalle producto /comprar/{slug}/ — una columna */
.sorteo-detail ul,
.sorteo-detail ol,
.sorteo-detail li {
  list-style: none !important;
  margin: 0;
  padding-left: 0;
}

.sorteo-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sorteo-prize-card {
  padding: 1.5rem 1.75rem;
}

.sorteo-prize-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}

.sorteo-feature-list {
  gap: 1.25rem;
}

.sorteo-feature-item {
  margin: 0;
  padding: 0;
}

.sorteo-commercial {
  padding: 1.75rem 2rem !important;
  margin: 0;
}

.sorteo-promos {
  padding: 2rem !important;
}

.sorteo-promo-row {
  padding: 1.15rem 1.5rem !important;
}

.sorteo-legal {
  gap: 1rem;
  padding-top: 2rem;
}

.flex-col { flex-direction: column; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.items-start { align-items: flex-start; }
.min-w-0 { min-width: 0; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }
.font-medium { font-weight: 500; }
.tracking-wider { letter-spacing: 0.05em; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.bg-black\/25 { background-color: rgba(0, 0, 0, 0.25); }
.border-amber-400\/25 { border-color: rgba(251, 191, 36, 0.25); }
.text-white\/65 { color: rgba(255, 255, 255, 0.65); }
.text-white\/75 { color: rgba(255, 255, 255, 0.75); }
.text-white\/85 { color: rgba(255, 255, 255, 0.85); }
.text-amber-400\/90 { color: rgba(251, 191, 36, 0.9); }
.py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.max-w-3xl { max-width: 48rem; }

@media (min-width: 640px) {
  .sm\:p-8 { padding: 2rem; }
}

@media (min-width: 1024px) {
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

/* Header / menú Premia2 */
.site-brand,
.site-brand:link,
.site-brand:visited,
.site-brand:hover,
.site-brand:active,
.site-brand:focus {
  text-decoration: none !important;
  color: #ffffff !important;
}

.site-brand-name {
  line-height: 1.1;
  color: #ffffff;
}

.site-brand-name .text-amber-400,
.site-brand-name span {
  color: #fbbf24;
}

.site-brand-tagline {
  margin-top: 0.2rem;
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72) !important;
}

.site-nav-toggle { background: transparent; cursor: pointer; }

.site-primary-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 60;
}

.site-primary-nav.is-open { display: flex; }

.site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  color: rgba(255,255,255,0.78) !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav-link:hover { color: #fff !important; }

.site-nav-link--accent {
  color: #fbbf24 !important;
  font-weight: 700;
}

.site-nav-search {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid currentColor;
  border-radius: 9999px;
  position: relative;
}

.site-nav-search::after {
  content: "";
  position: absolute;
  right: -0.25rem;
  bottom: -0.2rem;
  width: 0.35rem;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.site-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  padding: 0.7rem 1.25rem;
  border-radius: 9999px;
  background: #fbbf24;
  color: #111 !important;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none !important;
}

.site-nav-cta-icon {
  width: 0.95rem;
  height: 0.7rem;
  border: 2px solid currentColor;
  border-radius: 0.2rem;
  position: relative;
}

.site-nav-cta-icon::before,
.site-nav-cta-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.35rem;
  height: 0.35rem;
  border: 2px solid currentColor;
  border-radius: 9999px;
  background: #fbbf24;
  transform: translateY(-50%);
}

.site-nav-cta-icon::before { left: -0.22rem; }
.site-nav-cta-icon::after { right: -0.22rem; }

@media (min-width: 1024px) {
  .site-nav-toggle { display: none; }
  .site-header > div { position: relative; }
  .site-primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .site-nav-cta { margin-top: 0; margin-left: 0.5rem; }
}

/* Contenedor central (no full-bleed) */
.sorteo-container {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

.sorteo-container--catalog {
  max-width: 1080px;
}

@media (min-width: 640px) {
  .sorteo-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.sorteo-section-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbbf24;
}

.sorteo-section-eyebrow--dark { color: #b45309; }

/* Página /sorteos/ */
.sorteos-page-hero {
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.75rem 0 2.5rem;
}

.sorteos-page-hero-inner { text-align: center; }

.sorteos-page-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}

.sorteos-page-hero h1 span { color: #fbbf24; }

.sorteos-page-hero p {
  margin: 0.9rem auto 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.sorteo-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 9999px;
  background: #fbbf24;
  color: #111 !important;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(251, 191, 36, 0.28);
}

.sorteo-hero-cta:hover { background: #fcd34d; }

/* Catálogo: filtros + grilla */
.sorteo-pick-section {
  background: #0a0a0a;
  padding: 3rem 0 3.75rem;
}

.sorteo-pick-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sorteo-pick-intro h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 900;
  color: #fff;
}

.sorteo-pick-intro-text {
  margin: 0.7rem auto 0;
  max-width: 26rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.sorteo-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 1.75rem;
  max-width: 40rem;
}

.sorteo-filter-chip {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 9999px;
  padding: 0.55rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.sorteo-filter-chip:hover {
  border-color: rgba(251, 191, 36, 0.55);
  color: #fbbf24;
}

.sorteo-filter-chip.is-active {
  background: #fbbf24;
  border-color: #fbbf24;
  color: #111;
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.28);
}

.sorteo-filter-chip:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

.sorteo-pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .sorteo-pick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .sorteo-pick-grid {
    grid-template-columns: repeat(2, minmax(0, 22rem));
    justify-content: center;
    gap: 1.35rem;
  }
}

.sorteo-pick-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.sorteo-pick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.sorteo-pick-card[hidden],
.sorteo-pick-card.is-filtered-out {
  display: none !important;
}

.sorteo-pick-card-top,
.sorteo-pick-card-bottom {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.sorteo-pick-card-top { padding-top: 1.1rem; }

.sorteo-pick-card-bottom {
  padding-bottom: 1.15rem;
  margin-top: auto;
}

.sorteo-pick-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.sorteo-pick-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sorteo-pick-badge--free {
  background: #e0f2fe;
  color: #0369a1;
}

.sorteo-pick-title {
  margin: 0.65rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111827;
}

.sorteo-pick-tag {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #6b7280;
}

.sorteo-pick-media {
  position: relative;
  width: calc(100% - 2.2rem);
  height: 112px;
  margin: 0.9rem 1.1rem;
  border-radius: 0.85rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), transparent 42%),
    linear-gradient(150deg, var(--sorteo-accent, #f5c518) 0%, #121212 72%);
}

.sorteo-pick-media-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.12) 50%, transparent 65%);
}

.sorteo-pick-progress {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.sorteo-pick-progress-track {
  flex: 1;
  height: 6px;
  border-radius: 9999px;
  background: #e5e7eb;
  overflow: hidden;
}

.sorteo-pick-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #f59e0b;
}

.sorteo-pick-progress-label {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
  white-space: nowrap;
}

.sorteo-pick-prize-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d97706;
}

.sorteo-pick-prize-name {
  margin: 0.3rem 0 0;
  min-height: 2.4em;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #374151;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sorteo-pick-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.95rem;
  padding: 0.82rem 1rem;
  border-radius: 0.8rem;
  background: #fbbf24;
  color: #111 !important;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(251, 191, 36, 0.28);
  transition: background-color 150ms ease, transform 150ms ease;
}

.sorteo-pick-cta:hover {
  background: #fcd34d;
  transform: translateY(-1px);
}

.sorteo-filter-empty {
  margin: 1.5rem auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

/* Packs showcase — fondo cálido + acentos de color */
.packs-showcase {
  --sorteo-accent: #f5c518;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, color-mix(in srgb, var(--sorteo-accent) 22%, transparent), transparent 70%),
    linear-gradient(180deg, #fff8e7 0%, #f3f4f6 55%, #eceff3 100%);
  color: #1f2937;
  padding: 3rem 0 3.5rem;
}

.packs-showcase--split {
  border-top: 1px solid color-mix(in srgb, var(--sorteo-accent) 28%, #e5e5e5);
}

.packs-showcase-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.packs-showcase .sorteo-section-eyebrow {
  color: color-mix(in srgb, var(--sorteo-accent) 75%, #92400e);
}

.packs-showcase-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 900;
  color: #1f2937;
  line-height: 1.2;
}

.packs-showcase-title span { color: #d97706; }

.packs-showcase-sorteo {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
  color: #111827;
  background: linear-gradient(120deg, #111827 18%, color-mix(in srgb, var(--sorteo-accent) 85%, #111) 55%, #b45309 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
  .packs-showcase-sorteo {
    color: #b45309;
    background: none;
    -webkit-text-fill-color: unset;
  }
}

.packs-showcase-sorteo-tag {
  margin: 0.55rem auto 0;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: color-mix(in srgb, var(--sorteo-accent) 55%, #374151);
}

.packs-showcase-sub {
  margin: 0.85rem auto 0;
  max-width: 32rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #6b7280;
}

.packs-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 860px) {
  .packs-showcase-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
  }
}

.pack-showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: 1.15rem;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border: 1px solid #e8e8ea;
  text-align: center;
  cursor: pointer;
}

.pack-showcase-card.is-featured,
.pack-showcase-card.is-selected {
  border-color: #f5c518;
  box-shadow: 0 14px 32px rgba(245, 197, 24, 0.18);
  background: #fffdf6;
}

.pack-showcase-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.45rem;
  margin-bottom: 0.65rem;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  background: #f5c518;
  color: #111;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pack-showcase-badge--soft {
  background: #f3f4f6;
  color: #6b7280;
}

.pack-showcase-badge--ghost {
  background: transparent;
  color: transparent;
}

.pack-showcase-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
}

.pack-showcase-qty {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #6b7280;
}

.pack-showcase-qty span {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: #f5c518;
}

.pack-showcase-prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin: 0.85rem 0 0;
}

.pack-showcase-old {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 0.88rem;
}

.pack-showcase-old .woocommerce-Price-amount { color: inherit; }

.pack-showcase-new {
  color: #111827;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
}

.pack-showcase-new .woocommerce-Price-amount { color: inherit; }

.pack-showcase-save {
  margin-top: 0.15rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: rgba(245, 197, 24, 0.18);
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 800;
}

.pack-showcase-receive {
  width: 100%;
  margin: 1rem 0 1.15rem;
  padding: 0;
  list-style: none;
  text-align: center;
}

.pack-showcase-receive li {
  margin: 0 0 0.35rem;
  padding: 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #6b7280;
}

.pack-showcase-receive li:last-child { margin-bottom: 0; }

.pack-showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 0.8rem;
  background: #f5c518;
  color: #111 !important;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.pack-showcase-cta:hover { background: #fbbf24; }

.pack-showcase-card.is-selected .pack-showcase-cta,
.pack-showcase-cta[aria-current="true"] {
  background: #111827;
  color: #f5c518 !important;
}

.packs-showcase.is-updating {
  opacity: 0.92;
  transition: opacity 120ms ease;
}

/* Barra de avance */
.sorteo-progress {
  --progress-accent: #f5c518;
  margin: 1.5rem 0 1.75rem;
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #121212;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sorteo-progress__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.sorteo-progress__eyebrow {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.sorteo-progress__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.sorteo-progress__pct {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--progress-accent) 18%, transparent);
  color: var(--progress-accent);
  line-height: 1;
}

.sorteo-progress__pct-value {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.sorteo-progress__pct-symbol {
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.85;
}

.sorteo-progress__track {
  position: relative;
  width: 100%;
  height: 0.7rem;
  overflow: hidden;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
}

.sorteo-progress__fill {
  height: 100%;
  min-width: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--progress-accent) 75%, #fff) 0%,
    var(--progress-accent) 100%
  );
  box-shadow: 0 0 16px color-mix(in srgb, var(--progress-accent) 35%, transparent);
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sorteo-progress__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.sorteo-progress__dot {
  opacity: 0.5;
}

.pack-showcase-x1-wrap {
  margin: 1.5rem auto 0;
  width: min(100%, 28rem);
  text-align: center;
}

.pack-showcase-x1-label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.pack-showcase-x1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  background: #fff;
  color: #111827;
  border: 1px solid #e8e8ea;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.pack-showcase-x1:hover,
.pack-showcase-x1.is-selected {
  border-color: #f5c518;
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.16);
}

.pack-showcase-x1-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-align: left;
}

.pack-showcase-x1-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #111827;
}

.pack-showcase-x1-desc {
  font-size: 0.84rem;
  font-weight: 500;
  color: #6b7280;
}

.pack-showcase-x1-price {
  color: #111827;
  font-size: 1.15rem;
  font-weight: 900;
}

.pack-showcase-x1-price .woocommerce-Price-amount { color: inherit; }

/* Páginas estáticas */
.sorteo-page-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.sorteo-page-content p {
  margin: 0 0 1.25rem;
}

.sorteo-page-content h2 {
  margin: 2rem 0 0.85rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.sorteo-page-content ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.sorteo-page-content li {
  position: relative;
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
}

.sorteo-page-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: #fbbf24;
}

.sorteo-page-content strong {
  color: #fff;
  font-weight: 600;
}

.sorteo-page-content em {
  color: rgba(251, 191, 36, 0.85);
  font-style: italic;
}

.site-footer-nav a {
  text-decoration: none !important;
}

/* CTAs / botones-enlace del tema */
#hero a,
.site-header a,
.site-footer a,
a.inline-flex,
a.rounded-full {
  text-decoration: none !important;
}

#hero a:hover,
.site-footer a:hover {
  text-decoration: none !important;
}

/* Ticket grid */
.ticket-card img { margin-left: auto; margin-right: auto; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.italic { font-style: italic; }
.block { display: block; }
.no-underline { text-decoration: none !important; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

/* Landing marketing / compra (/comprar/) */
.marketing-hero {
  background: #0a0a0a;
  padding: 2.5rem 0 2rem;
}

.marketing-hero__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .marketing-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .marketing-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.marketing-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fbbf24;
}

.marketing-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.marketing-hero__tagline {
  margin: 0.85rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.marketing-hero__price {
  margin: 1.25rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.marketing-hero__price strong {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.marketing-hero__cta {
  display: inline-flex;
  margin-top: 1.5rem;
  align-items: center;
  border-radius: 999px;
  background: #fbbf24;
  color: #111;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.95rem 1.75rem;
  text-decoration: none !important;
  transition: background 0.15s ease;
}

.marketing-hero__cta:hover {
  background: #fcd34d;
}

.marketing-hero__media {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #141414;
  aspect-ratio: 4 / 3;
}

.marketing-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketing-summary {
  background: #111;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.marketing-summary__inner {
  max-width: 42rem;
}

.marketing-summary__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fbbf24;
}

.marketing-summary__title {
  margin: 0.65rem 0 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.marketing-summary__tagline {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.marketing-summary__prizes {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.marketing-summary__prizes li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1a1a;
}

.marketing-summary__prize-place {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
}

.marketing-summary__prize-name {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}

.marketing-summary__features {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.marketing-summary__features li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.45;
}

.marketing-summary__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #fbbf24;
}

.marketing-summary__trust {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.marketing-summary__notary {
  margin: 0;
  color: rgba(251, 191, 36, 0.9);
  font-size: 0.9rem;
  line-height: 1.45;
}

.marketing-summary__legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.5;
}

.marketing-summary__bases {
  color: #fbbf24;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
}

.marketing-purchase__footer-trust {
  background: #0a0a0a;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.marketing-purchase__footer-trust p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.5;
}

.marketing-purchase__footer-trust a {
  color: #fbbf24;
  font-weight: 600;
}
