:root {
  --bg: #0b0b0d;
  --bg-soft: #131316;
  --surface: rgba(24, 24, 27, 0.9);
  --surface-strong: #18181b;
  --text: #f7f7f8;
  --muted: #a7a7ad;
  --line: rgba(255, 255, 255, 0.1);
  --green: #1d4ed8;
  --green-2: #2563eb;
  --green-3: #2a1710;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 78, 216,.18), transparent 22%),
    radial-gradient(circle at top right, rgba(37, 99, 235,.12), transparent 20%),
    linear-gradient(180deg, #09090b 0%, #111113 58%, #0b0b0d 100%);
  overflow-x: hidden;
}

body.page-loading,
body.is-transitioning {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .6;
}

.glow-1 {
  width: 260px;
  height: 260px;
  background: rgba(34, 197, 94, 0.12);
  top: 50px;
  left: -60px;
}

.glow-2 {
  width: 320px;
  height: 320px;
  background: rgba(22, 163, 74, 0.10);
  right: -80px;
  bottom: 80px;
}

.mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 36, 27, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 36, 27, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.25), transparent 85%);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}

body.page-loading .page-loader,
body.is-transitioning .page-loader,
.page-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(34,197,94,.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(22,163,74,.14), transparent 24%),
    linear-gradient(180deg, rgba(247,252,248,.94) 0%, rgba(237,247,240,.97) 100%);
  backdrop-filter: blur(14px);
}

.page-loader-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 28px 26px;
  text-align: center;
  border-radius: 28px;
  background: rgba(24,24,27,.92);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
}

.page-loader-orbit {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 0 auto 18px;
}

.page-loader-ring,
.page-loader-ring::before,
.page-loader-ring::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.page-loader-ring {
  border: 1px solid rgba(22,163,74,.14);
  background: radial-gradient(circle, rgba(220,252,231,.55) 0%, rgba(255,255,255,.12) 68%, transparent 72%);
}

.page-loader-ring::before,
.page-loader-ring::after {
  content: "";
  border-top: 4px solid rgba(22,163,74,.95);
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  animation: loaderSpin 1.15s linear infinite;
}

.page-loader-ring::after {
  inset: 14px;
  border-top-color: rgba(34,197,94,.60);
  animation-direction: reverse;
  animation-duration: 1.8s;
}

.page-loader-core {
  position: absolute;
  inset: 26px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 16px 32px rgba(22,163,74,.24);
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.page-loader-core i {
  font-size: 1.5rem;
}

.page-loader-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22,163,74,.08);
  color: #225233;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-loader-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 800;
}

.page-loader-title span {
  color: var(--green);
}

.page-loader-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .98rem;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 16px 32px rgba(22,163,74,.24);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(22,163,74,.30);
  }
}

/* Bootstrap modal above the fixed topbar */
.modal {
  --bs-modal-zindex: 2200;
}

.modal-backdrop {
  --bs-backdrop-zindex: 2190;
}

.topbar {
  position: fixed;
  inset: 0 auto auto;
  width: 100%;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  background: rgba(12,12,14,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 1100;
}

body {
  padding-top: 115px;
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 12px 24px;
  background: var(--surface-strong);
  border-top: 1px solid rgba(21,36,27,.08);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1050;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  color: var(--text);
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px solid rgba(21,36,27,.08);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu-divider {
  height: 1px;
  width: 100%;
  background: rgba(21,36,27,.08);
  margin: 6px 0;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.mobile-menu-btn {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 800;
}

.mobile-menu-btn:active {
  transform: translateY(1px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-media {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}

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

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 14px 26px rgba(22,163,74,.20);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-links a {
  color: #375143;
  font-weight: 600;
}

.top-links a:hover {
  color: var(--green);
}

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

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.18);
  transition: .25s ease;
}

.btn-green:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-green {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(29, 78, 216,.26);
  color: var(--green);
  border-radius: 16px;
}

.btn-outline-green:hover {
  background: rgba(22,163,74,.05);
  color: var(--green);
}

.btn-light-ghost {
  background: rgba(255,255,255,.07);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
}

.btn-light-ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--text);
}

.hero-section {
  padding: 42px 0 18px;
}

.card-premium {
  background: rgba(24,24,27,.9);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-gallery,
.hero-info,
.tickets-box,
.side-stat-box,
.checkout-box,
.account-checkout-box,
.pix-checkout-box,
.my-account-box,
.my-tickets-box {
  padding: 24px;
}

.gallery-main {
  position: relative;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #18181b, #101012);
  border: 1px solid rgba(255,255,255,.1);
}

.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(10,10,12,.72);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,.04);
}

.main-art {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.main-art.active {
  opacity: 1;
  visibility: visible;
}

.main-art-1 {
  background:
    radial-gradient(circle at 50% 30%, rgba(29, 78, 216,.16), transparent 24%),
    linear-gradient(135deg, #18181b 0%, #101012 100%);
}

.main-art-2 {
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 99, 235,.14), transparent 24%),
    linear-gradient(135deg, #1d1d21 0%, #111113 100%);
}

.main-art-3 {
  background:
    radial-gradient(circle at 50% 30%, rgba(29, 78, 216,.12), transparent 24%),
    linear-gradient(135deg, #18181b 0%, #0f0f11 100%);
}

.art-content {
  width: 210px;
  height: 210px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  box-shadow: 0 25px 40px rgba(22,163,74,.20);
}

.art-content-iphone {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.art-content-iphone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.art-content i {
  font-size: 4rem;
  margin-bottom: 12px;
}

.art-content span {
  font-weight: 700;
  font-size: 1rem;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.thumb {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  transition: .2s ease;
}

.thumb i {
  font-size: 1.5rem;
}

.thumb.active,
.thumb:hover {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  border-color: transparent;
}

.hero-topline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-status,
.pill-soft,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
}

.pill-status {
  background: rgba(22,163,74,.10);
  color: var(--green);
  border: 1px solid rgba(22,163,74,.14);
}

.pill-soft,
.section-kicker {
  background: rgba(22,163,74,.06);
  color: #2f5140;
  border: 1px solid rgba(22,163,74,.10);
}

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-title span {
  color: var(--green);
}

.hero-subtitle,
.section-head p,
.tickets-note,
.pix-subtitle,
.checkout-footnote,
.footer-brand p {
  color: var(--muted);
}

.raffle-description {
  display: grid;
  gap: 10px;
}

.raffle-description p {
  margin: 0;
  line-height: 1.65;
}

.price-box {
  padding: 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(29, 78, 216,.14), transparent 36%),
    linear-gradient(135deg, rgba(30,30,34,.96), rgba(15,15,17,.96));
  border: 1px solid rgba(29, 78, 216,.22);
}

.price-box small,
.price-box span {
  display: block;
  color: var(--muted);
}

.price-box strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  margin: 6px 0;
  color: var(--green);
  font-weight: 800;
}

.buyer-prizes-kicker {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.buyer-prizes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.buyer-prize-item {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

.buyer-prize-item span {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  color: var(--muted);
}

.buyer-prize-item strong {
  display: block;
  margin-top: 2px;
  font-size: 1rem;
  color: var(--text);
}

.buyer-prize-item .bi {
  color: #ffb347;
}

.prizes-box {
  padding: 18px;
  border-radius: 22px;
  background: rgba(22,163,74,.04);
  border: 1px solid rgba(22,163,74,.10);
}

.prizes-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.raffle-progress {
  padding: 18px;
  border-radius: 22px;
  background: rgba(22,163,74,.04);
  border: 1px solid rgba(22,163,74,.10);
}

.raffle-progress-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.raffle-progress-head strong {
  font-weight: 900;
}

.raffle-progress-meta {
  color: var(--muted);
  font-weight: 800;
  font-size: .95rem;
}

.raffle-progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(21,36,27,.10);
  overflow: hidden;
}

.raffle-progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  box-shadow: 0 10px 24px rgba(22,163,74,.18);
}

.raffle-progress-note {
  margin-top: 10px;
  color: var(--muted);
}

.payment-notice {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.payment-notice strong {
  display: block;
  font-weight: 900;
  margin-bottom: 2px;
}

.payment-notice small {
  color: var(--muted);
}

.payment-notice.is-approved {
  background: rgba(22,163,74,.08);
  border-color: rgba(22,163,74,.22);
}

.payment-notice.is-rejected {
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.22);
}

.prize-line {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(21,36,27,.08);
}

.prize-line:last-child {
  border-bottom: 0;
}

.prize-line span {
  color: var(--muted);
  font-size: .92rem;
}

.prize-line strong {
  font-size: .98rem;
}

.timer-banner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(29, 78, 216, .15), transparent 55%),
    rgba(255, 255, 255, .05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.raffle-date-progress {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.raffle-date-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.raffle-date-progress-head strong {
  font-size: .9rem;
}

.raffle-date-progress-head span {
  font-weight: 900;
  color: var(--green);
}

.raffle-date-progress-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.raffle-date-progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  transition: width .35s ease;
}

.raffle-date-progress-fill::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -24%;
  width: 22%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-24deg);
  filter: blur(0.5px);
  animation: raffle-progress-knife-shine 2.4s ease-in-out infinite;
  pointer-events: none;
}

.raffle-date-progress small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .78rem;
}

.raffle-date-progress-mobile {
  padding: 10px 12px;
}

.raffle-date-progress-mobile .raffle-date-progress-head {
  margin-bottom: 6px;
}

.raffle-date-progress-mobile .raffle-date-progress-head strong {
  font-size: .78rem;
}

.raffle-date-progress-mobile .raffle-date-progress-head span {
  font-size: .78rem;
}

@keyframes raffle-progress-knife-shine {
  0% { left: -28%; opacity: 0; }
  12% { opacity: .95; }
  52% { left: 112%; opacity: .45; }
  100% { left: 112%; opacity: 0; }
}

.deposit-campaign-note {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 158, 11, .18), transparent 50%),
    rgba(255, 255, 255, 0.05);
}

.deposit-campaign-note strong {
  display: block;
  font-weight: 900;
}

.deposit-campaign-note p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

.timer-banner .timer-head p {
  margin: 0;
  opacity: .9;
  font-size: .95rem;
}

.timer-value {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
}

.mobile-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.mobile-timer-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 2px dotted rgba(29, 78, 216, 0.75);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.mobile-timer-text {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--muted);
  flex: 1;
}

.mobile-timer-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.timer-banner.ended {
  background: rgba(21, 36, 27, 0.85);
}

.hero-actions .btn {
  min-height: 52px;
}

.info-strip {
  padding: 18px 0 0;
}

.info-strip-wrap {
  border-radius: 24px;
  padding: 16px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info-strip-wrap div {
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-strip-wrap i {
  color: var(--green);
}

.section-space {
  padding: 82px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.section-head {
  max-width: 720px;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.buyer-card {
  height: 100%;
  padding: 26px 22px;
  border-radius: 28px;
  background: rgba(24,24,27,.9);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  text-align: center;
}

.buyer-first {
  background: linear-gradient(180deg, rgba(29, 78, 216,.12) 0%, rgba(24,24,27,.95) 100%);
  border-color: rgba(29, 78, 216,.22);
}

.buyer-rank {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.buyer-avatar {
  width: 86px;
  height: 86px;
  border-radius: 26px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,163,74,.08);
  color: var(--green);
}

.buyer-avatar i {
  font-size: 2rem;
}

.buyer-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.buyer-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.buyer-card strong {
  color: var(--green);
  font-size: 1.15rem;
}

.tickets-head,
.checkout-head,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.quick-ticket {
  min-height: 62px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 18px;
  font-weight: 800;
  font-size: 1.05rem;
  transition: .2s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  overflow: hidden;
  padding: 0 8px;
}

.quick-ticket-recommended {
  padding-top: 18px;
}

.quick-ticket-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f2f20;
  color: #fff;
  font-weight: 900;
  font-size: .64rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
  border-bottom: 1px solid rgba(255,255,255,.16);
  pointer-events: none;
}

.quick-ticket.active .quick-ticket-ribbon,
.quick-ticket:hover .quick-ticket-ribbon {
  background: rgba(9,9,11,.88);
  color: #93c5fd;
  border-bottom-color: rgba(255,255,255,.14);
}

.quick-ticket-value {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--text);
  text-align: center;
  flex: 1;
  white-space: nowrap;
}

.quick-ticket-adjust {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
}

.quick-ticket-adjust:hover {
  background: rgba(255,255,255,.16);
}

.quick-ticket.active,
.quick-ticket:hover {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(22,163,74,.16);
}

.quick-ticket.active .quick-ticket-value,
.quick-ticket:hover .quick-ticket-value {
  color: rgba(255,255,255,.95);
}

.quick-ticket.active .quick-ticket-adjust,
.quick-ticket:hover .quick-ticket-adjust {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.16);
  color: #fff;
}

.form-label {
  color: var(--muted);
  font-weight: 700;
}

.input-premium {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.input-premium .form-control {
  border: 0;
  min-height: 58px;
  background: transparent;
  color: var(--text);
  box-shadow: none !important;
}

.input-premium .btn-control {
  width: 58px;
  border: 0;
  background: rgba(255,255,255,.06);
  color: var(--green);
}

.selected-summary,
.checkout-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.summary-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(22,163,74,.04);
  border: 1px solid rgba(22,163,74,.08);
}

.summary-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 7px;
}

.summary-card strong {
  font-size: 1.28rem;
  font-weight: 800;
}

.total-highlight {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  border-color: transparent;
}

.total-highlight small {
  color: rgba(255,255,255,.8);
}

.summary-continue {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .14);
}

.summary-continue::after {
  content: "";
  position: absolute;
  inset: -60% -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 55%);
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}

.summary-continue > * {
  position: relative;
  z-index: 1;
}

.summary-continue-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.summary-continue-kicker {
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.92) !important;
  margin: 0;
}

.summary-continue-label {
  margin-bottom: 6px !important;
}

.summary-continue-arrow {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.summary-continue-arrow i {
  font-size: 1.05rem;
  animation: arrowNudge 1.4s ease-in-out infinite;
}

.summary-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, .18);
}

.summary-continue:focus-visible {
  outline: 3px solid rgba(255,255,255,.55);
  outline-offset: 3px;
}

.btn-buy-main,
.btn-confirm {
  width: 100%;
  min-height: 58px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 18px;
}

.side-stat-box h3,
.checkout-box h3,
.account-checkout-box h3,
.pix-checkout-box h3,
.my-account-box h3,
.my-tickets-box h3 {
  font-weight: 800;
}

.stat-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(21,36,27,.08);
}

.stat-line:last-child {
  border-bottom: 0;
}

.stat-line small {
  color: var(--muted);
}

.stat-line strong {
  font-size: 1rem;
}

.text-green {
  color: var(--green);
}

.progress-wrap {
  padding: 16px;
  border-radius: 20px;
  background: rgba(22,163,74,.04);
  border: 1px solid rgba(22,163,74,.08);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #2c4939;
}

.premium-progress {
  height: 12px;
  background: rgba(21,36,27,.07);
  border-radius: 999px;
  overflow: hidden;
}

.premium-progress .progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-2));
}

.support-box,
.user-state {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(22,163,74,.04);
  border: 1px solid rgba(22,163,74,.08);
}

.support-box i,
.user-state i {
  font-size: 1.3rem;
  color: var(--green);
}

.generated-tickets,
#myTicketsList {
  min-height: 120px;
}

.ticket-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ticket-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
  color: var(--text);
}

.pix-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(29, 78, 216,.1) 0%, rgba(24,24,27,.95) 100%);
  border: 1px solid rgba(255,255,255,.1);
}

.pix-qr {
  height: 180px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pix-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pix-qr i {
  font-size: 4rem;
  color: var(--green);
}

.pix-lines {
  display: grid;
  gap: 12px;
}

.pix-line small {
  display: block;
  color: var(--muted);
  margin-bottom: 2px;
}

.pix-line strong {
  font-size: 1rem;
}

.sticky-box {
  position: sticky;
  top: 96px;
}

.empty-text {
  color: var(--muted);
}

.account-line {
  margin-bottom: 14px;
}

.account-line small {
  display: block;
  color: var(--muted);
}

.account-line strong {
  font-size: 1rem;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(9,9,11,.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 50;
}

.checkout-offcanvas {
  --bs-offcanvas-width: min(94vw, 1500px);
  width: var(--bs-offcanvas-width);
  max-width: var(--bs-offcanvas-width);
  height: 100dvh;
  border-left: 1px solid rgba(255,255,255,.1);
  z-index: 1400;
  color: var(--text);
  box-shadow: -28px 0 56px rgba(0,0,0,.42);
  background:
    radial-gradient(circle at 50% 18%, rgba(29, 78, 216,.12), transparent 28%),
    linear-gradient(135deg, #18181b 0%, #101012 100%);
}

.offcanvas-backdrop.show {
  z-index: 1395;
}

.checkout-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px 12px;
}

.checkout-offcanvas .offcanvas-body {
  overflow-y: auto;
  padding: 14px 24px 22px;
}

.checkout-offcanvas .offcanvas-title {
  font-weight: 800;
  letter-spacing: -.01em;
}

@media (min-width: 992px) {
  #checkoutModal .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  #checkoutModal .quick-ticket-value {
    font-size: .72rem;
  }

  #checkoutModal .quick-ticket-adjust {
    width: 26px;
    height: 26px;
  }

  .checkout-offcanvas .offcanvas-header,
  .checkout-offcanvas .offcanvas-body {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .checkout-offcanvas .offcanvas-header {
    padding: 22px 30px 14px;
  }

  .checkout-offcanvas .offcanvas-body {
    padding: 16px 30px 24px;
  }
}

@media (max-width: 991.98px) {
  .checkout-offcanvas {
    --bs-offcanvas-width: 100vw;
    width: 100vw;
    max-width: 100vw;
    box-shadow: none;
    border-left: 0;
  }

  .checkout-offcanvas .offcanvas-header {
    padding: 16px 16px 10px;
  }

  .checkout-offcanvas .offcanvas-body {
    padding: 12px 16px 16px;
  }
}

.footer-section {
  padding: 0 0 32px;
}

.footer-wrap {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.modal-premium {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  background: #18181b;
  box-shadow: var(--shadow);
}

.checkout-wizard-step {
  display: none;
}

.checkout-wizard-step.is-active {
  display: block;
}

.checkout-wizard-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-wizard-steps {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.checkout-wizard-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .86rem;
  background: rgba(22,163,74,.06);
  border: 1px solid rgba(22,163,74,.10);
  color: #2f5140;
}

.checkout-wizard-pill.is-active {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border-color: transparent;
  color: #fff;
}

.checkout-wizard-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
}

.checkout-modal-shell .modal-body {
  padding-top: 12px;
}

.checkout-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .9fr);
  gap: 18px;
}

.checkout-modal-main,
.checkout-modal-side {
  min-width: 0;
}

.compact-user-box .user-state {
  padding: 14px;
  min-height: 56px;
}

.compact-pix-card {
  padding: 16px;
}

.compact-pix-qr {
  height: 160px;
}

.payment-method-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-method-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(10,18,13,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.payment-method-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(10,18,13,.10);
}

.payment-method-btn.is-active {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 34px rgba(22,163,74,.22);
}

.card-payment-wrap #cardBrickContainer {
  min-height: 180px;
}

.card-type-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.card-type-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight: 900;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(10,18,13,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.card-type-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(10,18,13,.10);
}

.card-type-btn.is-active {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 34px rgba(22,163,74,.22);
}

@media (max-width: 767.98px) {
  .compact-pix-qr {
    height: 220px;
  }
}

.compact-account-info {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.field-premium {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.field-premium:focus {
  border-color: rgba(22,163,74,.30);
  box-shadow: 0 0 0 .25rem rgba(22,163,74,.10);
}

.toast-premium {
  background: #173123;
  color: #fff;
  border-radius: 16px;
}

.floating-social {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .86rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .34);
  backdrop-filter: blur(6px);
  transition: transform .15s ease, filter .15s ease;
}

.floating-social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
}

.floating-social-link svg {
  flex-shrink: 0;
}

.social-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
}

.social-facebook {
  background: linear-gradient(135deg, #1877f2, #0e4eb0);
}

.social-tiktok {
  background: linear-gradient(135deg, #111, #262626);
}

@media (max-width: 991.98px) {
  .top-links {
    display: none !important;
  }

  .gallery-main {
    height: 360px;
  }

  .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .buyer-prizes-grid {
    grid-template-columns: 1fr;
  }

  .sticky-box {
    position: static;
  }

  .floating-social {
    right: 12px;
    bottom: 12px;
  }

  .floating-social-link {
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
  }

  .floating-social-link span {
    display: none;
  }

  body[data-page="raffle"] .floating-social {
    bottom: calc(98px + env(safe-area-inset-bottom));
  }
}

		@media (max-width: 767.98px) {
  body {
    padding-bottom: 84px;
  }

  .page-loader-panel {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .page-loader-orbit {
    width: 92px;
    height: 92px;
  }

  .page-loader-core {
    inset: 22px;
    border-radius: 20px;
  }

  .hero-section {
    padding-top: 26px;
  }

  body[data-page="raffle"] .floating-social {
    bottom: calc(108px + env(safe-area-inset-bottom));
  }

  .hero-gallery,
  .hero-info,
  .tickets-box,
  .side-stat-box,
  .checkout-box,
  .account-checkout-box,
  .pix-checkout-box,
  .my-account-box,
  .my-tickets-box {
    padding: 20px;
  }

  .gallery-main {
    height: 290px;
  }

	  .art-content {
	    width: 150px;
	    height: 150px;
	    border-radius: 28px;
	  }

	  /* On mobile, the gallery cover should fill the whole frame (override .art-content sizing). */
	  .art-content.art-content-iphone {
	    width: 100%;
	    height: 100%;
	    border-radius: 0;
	  }

  .art-content i {
    font-size: 2.6rem;
  }

  .selected-summary,
  .checkout-mini-grid {
    grid-template-columns: 1fr;
  }

  .checkout-modal-grid {
    grid-template-columns: 1fr;
  }

  .info-strip-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

	  .quick-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  /* Keep the "Total / continuar" CTA visible inside the checkout modal (rifa.php). */
	  #checkoutModal #wizardContinueCard {
	    position: sticky;
	    bottom: 12px;
	    z-index: 6;
	  }

	  #checkoutModal #wizardStep1 {
	    padding-bottom: 96px;
	  }
	}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader-core,
  .page-loader-ring::before,
  .page-loader-ring::after {
    animation: none !important;
    transition: none !important;
  }
}
/* HOME */
.home-hero {
  padding: 30px 0 10px;
}

.home-hero-box {
  padding: 34px;
}

.home-banner-box {
  position: relative;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
}

.home-banner-media {
  position: absolute;
  inset: 0;
}

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

.home-banner-overlay {
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(90deg, rgba(7, 7, 9, .9) 0%, rgba(7, 7, 9, .58) 44%, rgba(7, 7, 9, .76) 100%);
}

.home-banner-overlay .section-kicker {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

.home-banner-overlay .home-title,
.home-banner-overlay .home-subtitle {
  color: #fff;
}

.home-domain {
  color: rgba(255,255,255,.86);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .85rem;
}

.home-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0;
}

.home-title span {
  color: var(--green);
}

.home-subtitle {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.02rem;
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-stat-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(22,163,74,.04);
  border: 1px solid rgba(22,163,74,.08);
}

.home-stat-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.home-stat-card strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
}

/* CARDS DE RIFA */
.raffle-card-link {
  display: block;
}

.raffle-list-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(24,24,27,.9);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.raffle-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

.raffle-list-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #18181b 0%, #101012 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.raffle-list-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.raffle-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--green);
  border: 1px solid rgba(29, 78, 216,.22);
  font-size: .8rem;
  font-weight: 800;
}

.raffle-list-body {
  padding: 16px 16px 18px;
}

.raffle-list-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text);
}

/* VSL */
.vsl-card {
  padding: 22px;
}

.vsl-head {
  max-width: 760px;
}

.vsl-title {
  margin-top: 12px;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.vsl-player {
  margin-top: 16px;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #0b1610;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
  aspect-ratio: 16 / 9;
}

.vsl-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #0b1610;
}

.vsl-play {
  position: absolute;
  inset: 0;
  border: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.10), rgba(0,0,0,.55));
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: .25s ease;
}

.vsl-play:hover {
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.16), rgba(0,0,0,.62));
}

.vsl-play-icon {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 18px 44px rgba(22,163,74,.28);
}

.vsl-play-icon i {
  font-size: 2.5rem;
  transform: translateX(2px);
}

.vsl-play-text {
  font-weight: 900;
  letter-spacing: -.02em;
}

@media (max-width: 767.98px) {
  .vsl-card {
    padding: 18px;
  }

  .vsl-player {
    border-radius: 22px;
  }

  .vsl-play-icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
  }
}

@media (max-width: 767.98px) {
  .home-hero-box {
    padding: 14px;
    border-radius: 24px;
    background: rgba(6, 6, 8, .96);
  }

  .home-banner-box {
    min-height: 340px;
    border-radius: 22px;
  }

  .home-banner-media img {
    object-position: 50% 22%;
  }

  .home-banner-overlay {
    min-height: 340px;
    padding: 20px 18px;
    border-radius: 22px;
    background: linear-gradient(
      180deg,
      rgba(5, 5, 7, .58) 0%,
      rgba(5, 5, 7, .76) 38%,
      rgba(5, 5, 7, .98) 100%
    );
  }

  .home-banner-overlay .section-kicker {
    font-size: .72rem;
    padding: 7px 11px;
  }

  .home-title {
    white-space: normal;
    overflow-wrap: anywhere;
    max-width: 100%;
    font-size: clamp(1.45rem, 9vw, 2rem);
    letter-spacing: 0;
    line-height: 1.04;
    text-shadow: 0 14px 38px rgba(0,0,0,.35);
  }

  .home-domain {
    font-size: .78rem;
    letter-spacing: .03em;
    opacity: .92;
  }

  .home-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .home-stat-card {
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.16);
    backdrop-filter: blur(14px);
  }

  .home-stat-card small {
    color: rgba(255,255,255,.78);
  }

  .home-stat-card strong {
    color: #fff;
    font-size: 1.15rem;
  }

  .raffle-list-card {
    border-radius: 22px;
  }

  .raffle-list-body {
    padding: 12px 12px 14px;
  }

  .raffle-list-body h3 {
    font-size: .92rem;
  }
}

/* Dark orange visual identity */
.glow-1 {
  background: rgba(29, 78, 216, 0.2);
}

.glow-2 {
  background: rgba(37, 99, 235, 0.14);
}

.mesh {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

.page-loader-backdrop {
  background:
    radial-gradient(circle at top left, rgba(29, 78, 216,.2), transparent 26%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235,.16), transparent 24%),
    linear-gradient(180deg, rgba(9,9,11,.96) 0%, rgba(18,18,20,.98) 100%);
}

.page-loader-panel,
.card-premium,
.modal-premium,
.raffle-list-card,
.home-benefits,
.subscription-modal-shell {
  background: rgba(24, 24, 27, .9);
  border-color: rgba(255, 255, 255, .1);
  color: var(--text);
  box-shadow: var(--shadow);
}

.topbar {
  background: rgba(12, 12, 14, .92);
  border-bottom-color: rgba(255, 255, 255, .08);
}

.mobile-menu {
  background: #151518;
  border-top-color: rgba(255, 255, 255, .1);
}

.brand-media,
.mobile-menu-btn,
.thumb,
.btn-outline-green,
.field-premium,
.form-control,
.form-select,
.input-group-text,
.quantity-panel,
.summary-card,
.ticket-number,
.ticket-badge,
.table-card,
.account-card,
.payment-method-card,
.pix-code-box,
.promo-card,
.plan-card,
.reward-card,
.delivery-card {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  color: var(--text);
}

.btn-green {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  box-shadow: 0 16px 36px rgba(29, 78, 216, .26);
}

.btn-green:hover {
  color: #fff;
  box-shadow: 0 18px 40px rgba(29, 78, 216, .34);
}

.btn-outline-green {
  color: #2563eb;
}

.btn-outline-green:hover,
.thumb.active,
.thumb:hover {
  background: rgba(29, 78, 216, .12);
  color: #93c5fd;
  border-color: rgba(29, 78, 216, .35);
}

.btn-light-ghost,
.btn-light-ghost:hover {
  background: rgba(255, 255, 255, .07);
  color: var(--text);
  border-color: rgba(255, 255, 255, .12);
}

.top-links a {
  color: #d7d7db;
}

.top-links a:hover,
.top-links a.active,
.text-green,
.page-loader-title span,
.raffle-price,
.stat-line strong,
.section-kicker,
.pill-status,
.pill-soft {
  color: #2563eb;
}

.section-kicker,
.pill-status,
.pill-soft,
.page-loader-badge {
  background: rgba(29, 78, 216, .1);
  border-color: rgba(29, 78, 216, .2);
}

.page-loader-badge,
.pill-soft,
.section-kicker {
  color: #93c5fd;
}

.gallery-main,
.main-art-1,
.main-art-2,
.main-art-3,
.section-soft,
.home-benefits,
.modal-content,
.checkout-modal-main,
.checkout-modal-side,
.wizard-step,
.my-account-box,
.my-tickets-box,
.checkout-box,
.account-checkout-box,
.pix-checkout-box {
  background:
    radial-gradient(circle at 50% 18%, rgba(29, 78, 216,.12), transparent 28%),
    linear-gradient(135deg, #18181b 0%, #101012 100%);
  border-color: rgba(255, 255, 255, .1);
}

.field-premium:focus,
.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  border-color: rgba(29, 78, 216, .5);
  box-shadow: 0 0 0 .25rem rgba(29, 78, 216, .16);
}

.field-premium::placeholder,
.form-control::placeholder {
  color: rgba(247, 247, 248, .48);
}

.modal-header,
.modal-footer,
.stat-line,
.mobile-menu a,
.mobile-menu-divider {
  border-color: rgba(255, 255, 255, .1);
}

.progress,
.progress-line {
  background: rgba(255, 255, 255, .1);
}

.progress-bar,
.progress-fill,
.wizard-progress-fill {
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  box-shadow: 0 10px 24px rgba(29, 78, 216, .22);
}

.table,
.table td,
.table th,
.empty-text,
.text-muted,
.brand-text small,
.page-loader-text,
.home-domain,
.section-head p {
  color: var(--muted) !important;
}

.gallery-badge,
.home-stat-card {
  background: rgba(10, 10, 12, .72);
  border-color: rgba(255, 255, 255, .12);
  color: var(--text);
}

.footer-premium,
.bottom-buy-bar {
  background: rgba(9, 9, 11, .96);
  border-color: rgba(255, 255, 255, .1);
}

/* Remaining light surfaces */
.card,
.buyer-card,
.buyer-first,
.quick-ticket,
.input-premium,
.input-premium .form-control,
.input-premium .btn-control,
.pix-card,
.pix-qr,
.mobile-cta,
.modal-premium,
.raffle-list-card,
.raffle-list-thumb,
.raffle-badge,
.payment-method-btn,
.card-type-btn,
.compact-account-info,
.progress-wrap,
.support-box,
.user-state,
.checkout-step,
.checkout-step.is-active,
.checkout-total-card,
.checkout-summary-card,
.subscription-card,
.benefit-card,
.delivery-item,
.history-item,
.deposit-row,
.ticket-row,
.raffle-row {
  background:
    radial-gradient(circle at 50% 0%, rgba(29, 78, 216, .1), transparent 32%),
    linear-gradient(135deg, rgba(30, 30, 34, .96), rgba(15, 15, 17, .96)) !important;
  border-color: rgba(255, 255, 255, .12) !important;
  color: var(--text) !important;
}

.quick-ticket small,
.form-label,
.progress-label,
.footer-links a,
.payment-method-btn,
.card-type-btn,
.raffle-list-body p,
.raffle-list-meta,
.pix-line small {
  color: var(--muted) !important;
}

.quick-ticket.active,
.quick-ticket:hover,
.payment-method-btn.is-active,
.card-type-btn.is-active {
  background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.quick-ticket.active small,
.quick-ticket:hover small,
.payment-method-btn.is-active *,
.card-type-btn.is-active * {
  color: #fff !important;
}

.quick-ticket-ribbon {
  background: rgba(29, 78, 216, .92) !important;
  color: #fff !important;
  border-bottom-color: rgba(255, 255, 255, .14) !important;
}

.quick-ticket.active .quick-ticket-ribbon,
.quick-ticket:hover .quick-ticket-ribbon {
  background: rgba(9, 9, 11, .88) !important;
  color: #93c5fd !important;
}

.raffle-list-thumb img,
.pix-qr img {
  background: transparent !important;
}

.table > :not(caption) > * > * {
  background-color: transparent !important;
  color: var(--text);
  border-bottom-color: rgba(255, 255, 255, .08);
}

.list-group-item,
.dropdown-menu {
  background-color: #18181b !important;
  border-color: rgba(255, 255, 255, .1) !important;
  color: var(--text) !important;
}

#wizardContinueCard.summary-continue {
  background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(29, 78, 216, .3);
}

#wizardContinueCard.summary-continue small,
#wizardContinueCard.summary-continue strong,
#wizardContinueCard.summary-continue i {
  color: #fff !important;
}

.modal .btn-close {
  filter: invert(1) grayscale(1) brightness(200%);
  opacity: .9;
}

.modal .btn-close:hover {
  opacity: 1;
}

#wizardContinueCard .summary-continue-arrow {
  background: rgba(17, 17, 19, .14);
  border-color: rgba(17, 17, 19, .18);
}
