:root {
  --primary: #29AB87;
  --primary-light: #43bea0;
  --primary-dark: #1d8b6d;
  --primary-deep: #0d4c3c;
  --accent: #F8D836;
  --accent-light: #fff18c;
  --accent-soft: #ffef70;
  --accent-dark: #d7b819;
  --bg-main: #061410;
  --bg-section: #0c211a;
  --bg-elevated: #103328;
  --bg-deep: #04100d;
  --text: #fffdf4;
  --muted: #d8e9e2;
  --surface: rgba(41,171,135,0.14);
  --surface-alt: rgba(248,216,54,0.08);
  --surface-strong: rgba(41,171,135,0.20);
  --border: rgba(41,171,135,0.24);
  --border-accent: rgba(248,216,54,0.30);
  --shadow: 0 24px 70px rgba(0,0,0,0.42);
  --shadow-soft: 0 14px 36px rgba(0,0,0,0.24);
  --radius: 26px;
  --maxw: 1180px;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(248,216,54,0.18), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(41,171,135,0.24), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(248,216,54,0.10), transparent 24%),
    linear-gradient(180deg, #071611 0%, #0d241d 28%, #123429 64%, #07120f 100%);
  background-size: 120% 120%;
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .16;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background: rgba(248,216,54,0.44);
  top: 4%;
  left: -110px;
}

body::after {
  background: rgba(41,171,135,0.42);
  right: -100px;
  bottom: 8%;
  animation-delay: -5s;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.container {
  width: min(calc(100% - 32px), var(--maxw));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease, filter .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: #18342c;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 56%, var(--accent-dark) 100%);
  box-shadow: 0 16px 34px rgba(248,216,54,0.30);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(248,216,54,0.36);
  filter: brightness(1.02);
}

.btn-secondary {
  color: var(--text);
  background: linear-gradient(180deg, rgba(41,171,135,0.18) 0%, rgba(41,171,135,0.09) 100%);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(41,171,135,0.24) 0%, rgba(41,171,135,0.12) 100%);
}

.section { padding: 82px 0; content-visibility: auto; contain-intrinsic-size: 1px 900px; }

.section--compact {
  padding-top: 42px;
  padding-bottom: 56px;
}

.section-title-row {
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.section-title-icon,
.ticket-icon {
  width: 180px !important;
  max-width: 180px !important;
  height: auto !important;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.18));
  margin: 0 auto 14px !important;
  object-fit: contain !important;
  image-rendering: auto !important;
}

@media (max-width: 992px) {
  .section-title-icon,
  .ticket-icon {
    width: 135px !important;
    max-width: 135px !important;
  }
}

@media (max-width: 576px) {
  .section-title-icon,
  .ticket-icon {
    width: 95px !important;
    max-width: 95px !important;
    margin-bottom: 10px !important;
  }
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 14px;
  font-weight: 800;
  text-align: center;
  text-wrap: balance;
  letter-spacing: -0.03em;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  color: var(--muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 24px;
  padding: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  text-wrap: balance;
}

.hero.hero--compact {
  padding: 18px 0 38px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 88px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .26;
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  background: rgba(248,216,54,0.34);
  top: -90px;
  left: -70px;
}

.hero::after {
  width: 280px;
  height: 280px;
  background: rgba(41,171,135,0.32);
  right: -60px;
  top: 120px;
}

.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 14px 0 22px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 1.8vw, 24px);
  width: min(100%, 640px);
  min-width: 0;
  font-weight: 800;
  font-size: 1.04rem;
  letter-spacing: .12em;
}

.brand-logo {
  width: clamp(220px, 26vw, 360px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(248,216,54,0.20));
  flex: 0 1 auto;
}

.brand-mascot {
  width: clamp(92px, 10vw, 148px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.20));
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 1.8vw, 24px);
  align-items: center;
  justify-self: end;
  color: rgba(255,253,244,0.92);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-links a {
  position: relative;
  transition: color .25s ease, transform .25s ease;
}

.nav-links a.active {
  color: var(--accent-light);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-links a:hover {
  color: var(--accent-light);
  transform: translateY(-1px);
}

.nav-links a:hover::after { transform: scaleX(1); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
  min-height: 74vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  padding: 10px 16px;
  background: linear-gradient(180deg, rgba(248,216,54,0.12) 0%, rgba(41,171,135,0.10) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.45;
}

.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.2rem);
  line-height: .94;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.hero h1 .accent {
  color: var(--accent-light);
  text-shadow: 0 0 24px rgba(248,216,54,0.18);
  display: inline-block;
}

.hero p {
  color: rgba(255,253,244,0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 auto 30px;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
}

.pay-card {
  background: linear-gradient(180deg, rgba(41,171,135,0.14) 0%, rgba(248,216,54,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pay-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--accent-light);
  font-weight: 700;
}

.pay-card p {
  color: rgba(255,253,244,0.78);
  line-height: 1.78;
  margin: 0 0 18px;
}

.register-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-bottom: 24px;
  align-items: center;
}

.register-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(248,216,54,0.16);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(248,216,54,0.22);
}

.register-card-copy {
  display: grid;
  gap: 8px;
}

.register-card-eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,216,54,0.95);
}

.register-card-title {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.register-card-title span {
  color: var(--accent);
}

.register-card-text {
  margin: 0;
  color: rgba(255,255,255,0.74);
  max-width: 680px;
}

.form-section {
  padding-top: 24px;
  margin-top: 18px;
  border-top: 1px dashed rgba(248,216,54,0.18);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(248,216,54,0.7);
  background: rgba(41,171,135,0.14);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(248,216,54,0.12);
}

.form-section-title h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

.form-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.section-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(248,216,54,0.12);
  color: var(--accent);
  border: 1px solid rgba(248,216,54,0.22);
  font-weight: 700;
  font-size: 1rem;
}

.section-label {
  margin: 0;
  font-size: 1.02rem;
  color: var(--accent-light);
  font-weight: 700;
}

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

.form-full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 10px;
  color: rgba(248,216,54,0.92);
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.55);
}

.upload-dropzone {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 24px;
  border-radius: 22px;
  border: 1px dashed rgba(248,216,54,0.48);
  background: rgba(41,171,135,0.12);
  color: #fff;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}

.upload-dropzone:hover {
  border-color: rgba(248,216,54,0.8);
  background: rgba(248,216,54,0.08);
  transform: translateY(-1px);
}

.upload-dropzone:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(248,216,54,0.14);
}

.upload-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(248,216,54,0.16);
  color: var(--accent);
  font-size: 1.5rem;
}

.upload-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.upload-copy strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.upload-hint {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(248,216,54,0.96) 0%, rgba(248,216,54,0.82) 100%);
  color: #18342c;
  font-weight: 700;
  white-space: nowrap;
}

.upload-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 18px 24px;
  border-radius: 18px;
  font-size: 1.03rem;
}

.nav-links a.active {
  color: var(--accent-light);
}

.nav-links a.active::after {
  background: var(--accent);
  transform: scaleX(1);
}

.form-warning {
  margin-top: 10px;
}

.pay-card {
  background: rgba(9,24,18,0.84);
  border: 1px solid rgba(248,216,54,0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 58px rgba(0,0,0,0.42);
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--accent-light);
}

.form-group input,
.form-group select.form-select-custom {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.form-group select.form-select-custom {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  background-repeat: no-repeat, no-repeat;
  background-position: right 16px center, left top;
  background-size: 14px 10px, auto;
}

.form-group select.form-select-custom option {
  color: #fff;
  background: rgba(10,22,17,0.95);
}

.form-group select.form-select-custom option[value=""] {
  color: rgba(255,255,255,0.65);
}

.form-group select.form-select-custom:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(248,216,54,0.16);
  background: linear-gradient(180deg, rgba(41,171,135,0.18) 0%, rgba(255,255,255,0.05) 100%);
}

.form-group.file-upload-group input[type="file"] {
  padding: 18px 14px;
  border: 1px dashed rgba(248,216,54,0.48);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.form-group.file-upload-group input[type="file"]::-webkit-file-upload-button {
  background: rgba(248,216,54,0.12);
  border: 1px solid rgba(248,216,54,0.24);
  border-radius: 999px;
  color: var(--accent);
  padding: 10px 16px;
  cursor: pointer;
}

.form-group.file-upload-group input[type="file"]::-moz-file-upload-button {
  background: rgba(248,216,54,0.12);
  border: 1px solid rgba(248,216,54,0.24);
  border-radius: 999px;
  color: var(--accent);
  padding: 10px 16px;
  cursor: pointer;
}

.field-note {
  display: block;
  margin-top: 8px;
  color: rgba(255,253,244,0.74);
  font-size: 0.95rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-light);
}

.form-warning {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(248,216,54,0.12);
  border: 1px solid rgba(248,216,54,0.24);
  color: rgba(255,253,244,0.92);
  font-weight: 600;
  line-height: 1.5;
  margin-top: -4px;
}

.alert-success,
.alert-error {
  border-radius: 22px;
  padding: 18px 22px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.alert-success {
  background: rgba(57,197,109,0.14);
  border: 1px solid rgba(57,197,109,0.28);
  color: #eaf9e9;
}

.alert-error {
  background: rgba(255,92,92,0.12);
  border: 1px solid rgba(255,92,92,0.28);
  color: #ffe9e9;
}

.alert-error ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.success-page {
  padding: 40px 16px 56px;
  background: radial-gradient(circle at top, rgba(102, 206, 128, 0.18), transparent 30%), radial-gradient(circle at 20% 10%, rgba(244, 211, 63, 0.12), transparent 18%), rgba(5, 19, 15, 0.98);
  border-radius: 32px;
  border: 1px solid rgba(244, 211, 63, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.success-hero {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.success-ticket-icon {
  width: 128px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.success-check {
  width: 94px;
  height: 94px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid rgba(83, 239, 119, 0.95);
  color: #53ef77;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(83, 239, 119, 0.2);
  background: rgba(255,255,255,0.04);
}

.success-hero h1 {
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  line-height: 1.02;
  margin: 0 0 14px;
  color: #ffffff;
  font-weight: 800;
}

.success-hero h1 span {
  color: #f4d33f;
}

.success-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  margin: 6px 0;
}

.tickets-card {
  background: linear-gradient(180deg, rgba(5, 21, 16, 0.96), rgba(8, 32, 24, 0.98));
  border: 1px solid rgba(244, 211, 63, 0.17);
  border-radius: 32px;
  padding: 34px 32px 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.tickets-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tickets-card-header .line {
  flex: 1 1 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 211, 63, 0.9), transparent);
}

.tickets-card-header h2 {
  color: #f4d33f;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticket-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tickets-card-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  margin-bottom: 26px;
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 26px;
}

.ticket-list::-webkit-scrollbar {
  width: 8px;
}

.ticket-list::-webkit-scrollbar-track {
  background: transparent;
}

.ticket-list::-webkit-scrollbar-thumb {
  background: rgba(244, 211, 63, 0.35);
  border-radius: 999px;
}

.ticket-item {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  min-height: 84px;
  border: 1px solid rgba(244, 211, 63, 0.42);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.ticket-item::before,
.ticket-item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: rgba(5, 23, 18, 0.95);
  border: 1px solid rgba(244, 211, 63, 0.45);
  border-radius: 50%;
  transform: translateY(-50%);
}

.ticket-item::before {
  left: -9px;
}

.ticket-item::after {
  right: -9px;
}

.ticket-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4d33f;
  font-size: 32px;
  border-right: 1px dashed rgba(244, 211, 63, 0.35);
  min-height: 84px;
}

.ticket-item-code {
  padding: 0 18px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  word-break: break-word;
}

.ticket-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.ticket-note-icon {
  color: #f4d33f;
  font-size: 28px;
  flex-shrink: 0;
}

.success-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.success-actions .btn {
  min-height: 64px;
}

.success-actions .btn-secondary {
  color: #f4d33f;
  background: rgba(7, 41, 31, 0.92);
  border: 1px solid rgba(244, 211, 63, 0.48);
}

@media (max-width: 992px) {
  .success-page {
    padding: 32px 14px 48px;
  }

  .ticket-item {
    grid-template-columns: 72px 1fr;
    min-height: 74px;
  }

  .ticket-item-icon {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .success-page {
    padding: 28px 12px 40px;
  }

  .tickets-card {
    padding: 28px 22px 24px;
  }

  .success-hero h1 {
    font-size: 2.4rem;
  }

  .ticket-item {
    grid-template-columns: 64px 1fr;
    min-height: 68px;
  }

  .ticket-item-code {
    font-size: 0.95rem;
  }

  .success-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .success-hero {
    margin-bottom: 28px;
  }

  .success-ticket-icon {
    width: 90px;
  }

  .success-check {
    width: 68px;
    height: 68px;
    font-size: 32px;
  }

  .tickets-card-header h2 {
    font-size: 1.4rem;
  }

  .ticket-item {
    grid-template-columns: 58px 1fr;
    min-height: 62px;
  }

  .ticket-item-code {
    font-size: 0.88rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease, filter .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: #18342c;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 56%, var(--accent-dark) 100%);
  box-shadow: 0 16px 34px rgba(248,216,54,0.30);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(248,216,54,0.36);
  filter: brightness(1.02);
}

.btn-secondary {
  color: var(--text);
  background: linear-gradient(180deg, rgba(41,171,135,0.18) 0%, rgba(41,171,135,0.09) 100%);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(41,171,135,0.24) 0%, rgba(41,171,135,0.12) 100%);
}

.yape-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(41,171,135,0.14) 0%, rgba(255,255,255,0.03) 100%);
  margin-bottom: 18px;
  border: 1px solid rgba(248,216,54,0.14);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.yape-box:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(41,171,135,0.20) 0%, rgba(255,255,255,0.05) 100%);
}

.yape-box strong {
  font-size: 1.12rem;
  display: block;
  margin-bottom: 4px;
  color: var(--accent-light);
  font-weight: 700;
}

.amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-light);
  white-space: nowrap;
}

.qr-box {
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(41,171,135,0.12) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px dashed rgba(248,216,54,0.22);
  display: grid;
  place-items: center;
  min-height: 290px;
  overflow: hidden;
}

.payment-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .88fr);
  gap: 26px;
  align-items: start;
  margin-top: 18px;
}

.payment-steps {
  background: linear-gradient(180deg, rgba(41,171,135,0.12) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(248,216,54,0.14);
  border-radius: 24px;
  padding: 24px;
}

.payment-steps-title {
  margin: 0 0 18px;
  font-size: 1.08rem;
  color: var(--accent-light);
  font-weight: 700;
}

.step-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.step-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(248,216,54,0.12);
}

.step-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #18342c;
  font-weight: 800;
  background: linear-gradient(180deg, #fff397 0%, var(--accent) 56%, var(--accent-dark) 100%);
  box-shadow: 0 10px 20px rgba(248,216,54,0.18);
}

.step-item strong {
  display: block;
  color: var(--accent-light);
  font-size: 1rem;
  margin-bottom: 4px;
}

.step-item span {
  color: rgba(255,253,244,0.82);
  line-height: 1.65;
}

.payment-summary {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.payment-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(41,171,135,0.12) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(248,216,54,0.12);
}

.payment-summary-row strong {
  color: var(--accent-light);
  font-size: 1rem;
}

.payment-summary-row span {
  color: rgba(255,253,244,0.84);
  font-weight: 600;
  text-align: right;
}

.payment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.payment-tab {
  border: 1px solid rgba(248,216,54,0.18);
  background: linear-gradient(180deg, rgba(41,171,135,0.14) 0%, rgba(255,255,255,0.03) 100%);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.payment-tab:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
}

.payment-tab.active {
  color: #18342c;
  background: linear-gradient(180deg, #fff397 0%, var(--accent) 56%, var(--accent-dark) 100%);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(248,216,54,0.24);
}

.payment-view {
  display: grid;
  gap: 16px;
}

.payment-panel {
  display: none;
}

.payment-panel.active {
  display: block;
  animation: fadePay .25s ease;
}

@keyframes fadePay {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.payment-qr-image {
  width: min(100%, 330px);
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(0,0,0,.28);
  background: #fff;
}

.payment-meta {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(41,171,135,0.12) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(248,216,54,0.14);
}

.payment-meta-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 10px;
  color: rgba(255,253,244,0.86);
}

.payment-meta-row:last-child {
  margin-bottom: 0;
}

.payment-meta-row strong {
  color: var(--accent-light);
  font-size: .95rem;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  word-break: break-all;
  font-size: .94rem;
}

.contact-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .95rem;
}

.details {
  background: linear-gradient(180deg, rgba(41,171,135,0.14) 0%, rgba(248,216,54,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: var(--accent-light);
}

summary::-webkit-details-marker { display: none; }

details p {
  margin: 12px 0 0;
  color: rgba(255,253,244,0.76);
  line-height: 1.72;
}

.footer {
  padding: 40px 0 58px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(41,171,135,0.22);
  margin-top: 24px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(41,171,135,0.08) 0%, rgba(248,216,54,0.03) 100%);
}

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

.footer-brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.footer a {
  color: var(--accent-light);
  font-weight: 600;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(41,171,135,0.16) 0%, rgba(248,216,54,0.07) 100%);
  border: 1px solid var(--border);
  color: var(--accent-light);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-soft);
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(41,171,135,0.22) 0%, rgba(248,216,54,0.12) 100%);
  box-shadow: 0 16px 36px rgba(0,0,0,0.24);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-title {
  margin: 0 0 0px;
  font-weight: 800;
  font-size: 1.15rem;
  text-wrap: balance;
}

.footer-copy {
  margin: 0 auto;
  max-width: 560px;
  color: rgba(255,253,244,0.88);
  line-height: 1.75;
  text-wrap: balance;
  text-align: center;
}

.floating-wsp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
  color: #fffdf4;
  font-size: 1.65rem;
  font-weight: 800;
  border: 1px solid rgba(248,216,54,0.18);
  box-shadow: 0 18px 38px rgba(0,0,0,0.34);
  z-index: 40;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.floating-wsp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 42px rgba(0,0,0,0.42);
  filter: brightness(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .payment-flow-layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .pay-grid,
  .grid-3,
  .winner {
    grid-template-columns: 1fr;
  }

  .winner-photo {
    width: 100%;
    max-width: 320px;
    height: 420px;
    margin: 0 auto;
  }

  .hero-stats,
  .timer {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding-bottom: 22px;
  }

  .brand {
    justify-content: center;
    width: min(100%, 640px);
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 10px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(248,216,54,0.16);
    background: linear-gradient(180deg, rgba(41,171,135,0.14) 0%, rgba(255,255,255,0.03) 100%);
    font-size: 1rem;
    font-weight: 700;
  }

  .hero-left {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    width: 100%;
    align-items: center;
  }

  .hero-title-top,
  .hero-title-promo-small,
  .hero-title-promo-big,
  .hero-title-promo-ahora {
    text-align: center;
    text-wrap: balance;
  }

  .hero-title-top {
    font-size: clamp(2.6rem, 9vw, 4.4rem);
  }

  .hero-title-promo {
    transform: rotate(-2.5deg);
    align-self: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-title-promo-small {
    font-size: clamp(1.6rem, 5.6vw, 2.4rem);
  }

  .hero-title-promo-big {
    font-size: clamp(2.2rem, 8.2vw, 3.8rem);
  }

  .hero-title-promo-ahora {
    font-size: clamp(2.8rem, 10vw, 4.6rem);
    margin-left: 0;
  }

  .hero-title-promo-ahora::after {
    left: .08em;
    right: .08em;
  }

  .hero-description {
    max-width: 680px;
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .upload-dropzone {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .upload-button {
    justify-self: start;
  }

  .prize-overlay-text {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .hero { padding-bottom: 64px; }
  .hero h1 { letter-spacing: -0.04em; }
  .timer,
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .prizes-carousel .prize-item { flex-basis: 100%; }
  .container { width: min(calc(100% - 22px), var(--maxw)); }
  .btn { width: 100%; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .winner { gap: 18px; }
  .carousel-wrap,
  .card,
  .pay-card,
  .hero-card,
  .prize-item { border-radius: 22px; }
  .brand-logo { width: clamp(200px, 58vw, 280px); }
  .brand-mascot { width: clamp(82px, 24vw, 112px); }
  .brand span { display: none; }
  .nav-links {
    gap: 8px;
    padding-bottom: 6px;
  }
  .nav-links a {
    padding: 9px 12px;
    font-size: .95rem;
    font-weight: 700;
  }
  .hero-title {
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .hero-title-top {
    font-size: clamp(2.2rem, 11.4vw, 3.5rem);
    line-height: .96;
  }
  .hero-title-promo {
    transform: none;
  }
  .hero-title-promo-small {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }
  .hero-title-promo-big {
    font-size: clamp(2rem, 10.4vw, 3rem);
    line-height: .9;
  }
  .hero-title-promo-ahora {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
    line-height: .9;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  .eyebrow {
    width: 100%;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: .95rem;
  }
  .prize-overlay { inset: auto 14px 14px 14px; }
}

  /* Voucher dropzone and preview (Dinamitando Premios green/gold) */
  .voucher-dropzone {
    border: 1.5px dashed rgba(255, 215, 64, 0.75);
    background: rgba(8, 55, 39, 0.55);
    border-radius: 18px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .voucher-dropzone.dragover {
    border-color: #ffe25a;
    background: rgba(255, 215, 64, 0.10);
    box-shadow: 0 0 22px rgba(255, 215, 64, 0.18);
    transform: scale(1.01);
  }

  .voucher-dropzone.has-file {
    border-color: rgba(54, 211, 153, 0.75);
    background: rgba(54, 211, 153, 0.08);
  }

  .voucher-preview { margin-top: 12px; }

  .voucher-preview-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(9, 41, 31, 0.85);
    border: 1px solid rgba(255, 215, 64, 0.12);
    border-radius: 12px;
    padding: 12px;
  }

  .voucher-preview-img {
    width: 92px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 64, 0.12);
  }

  .voucher-preview-info { flex: 1; color: #ffffff; display: flex; flex-direction: column; gap: 4px; }
  .voucher-preview-info span { color: rgba(255,255,255,0.7); font-size: 14px; }

  .voucher-remove-btn {
    border: 1px solid rgba(255, 215, 64, 0.45);
    background: rgba(255, 215, 64, 0.12);
    color: #ffd93d;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 700;
  }

  .voucher-remove-btn:hover { background: rgba(255, 215, 64, 0.22); }

  @media (max-width: 768px) {
    .voucher-dropzone { flex-direction: column; text-align: center; align-items: stretch; }
    .voucher-preview-card { flex-direction: column; text-align: center; }
    .voucher-preview-img { width: 100%; max-width: 220px; height: auto; }
  }

.hero-grid--referencia {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
  min-height: auto;
  padding-bottom: 6px;
}

.hero-left {
  max-width: 640px;
}

.hero-title {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: none;
}

.hero-title-top {
  display: block;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  text-shadow: 0 0 18px rgba(255,255,255,.08);
}

.hero-title-promo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  color: #ffd633;
  font-weight: 900;
  line-height: .92;
  transform: rotate(-4deg);
  transform-origin: left center;
  position: relative;
  filter: drop-shadow(0 0 12px rgba(255,214,51,.18));
  margin-left: 16px;
  margin-right: 8px;
}

.hero-title-promo-small {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -.04em;
  line-height: .95;
  text-shadow: 0 0 14px rgba(255,214,51,.32), 0 2px 0 rgba(0,0,0,.18);
}

.hero-title-promo-big {
  display: block;
  font-size: clamp(2.2rem, 5vw, 5rem);
  letter-spacing: -.05em;
  line-height: .84;
  text-transform: none;
  color: #ffd633;
  text-shadow: 0 0 18px rgba(255,214,51,.34), 0 2px 0 rgba(0,0,0,.22);
}

.hero-title-promo-big strong {
  font-weight: 900;
  font-size: 1.1em;
  display: inline-block;
}

.hero-title-promo-ahora {
  display: block;
  color: #fff;
  font-size: clamp(3.1rem, 6.6vw, 5.4rem);
  line-height: .86;
  letter-spacing: -.05em;
  text-transform: uppercase;
  margin-left: .32em;
  margin-top: .06em;
  position: relative;
  text-shadow: 0 0 14px rgba(255,255,255,.16), 0 2px 0 rgba(0,0,0,.18);
}

.hero-title-promo-ahora::after {
  content: '';
  position: absolute;
  left: .15em;
  right: -.02em;
  bottom: -.14em;
  height: .08em;
  background: #ffd633;
  border-radius: 999px;
  transform: skewX(-24deg);
  box-shadow: 0 0 10px rgba(255,214,51,.55);
}

.hero-description {
  max-width: 620px;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.hero-prize-card {
  background: linear-gradient(180deg, rgba(26, 105, 83, 0.82) 0%, rgba(14, 55, 43, 0.9) 100%);
  border: 1px solid rgba(250, 210, 54, 0.32);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.28);
}

.hero-prize-media {
  position: relative;
  background: linear-gradient(180deg, rgba(45, 182, 145, 0.18) 0%, rgba(7, 35, 28, 0.92) 100%);
  padding: 24px 24px 0;
}

.hero-prize-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px 28px 0 0;
  object-fit: cover;
}

.hero-prize-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.hero-prize-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(250, 210, 54, 0.36);
  background: rgba(75, 85, 23, 0.65);
  color: #f7e57a;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 0.95rem;
  margin-bottom: 10px;
  backdrop-filter: blur(10px);
}

.hero-prize-overlay h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.02;
  color: #ffffff;
  text-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.hero-prize-content {
  padding: 22px 24px 24px;
}

.hero-prize-status {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(250, 210, 54, 0.28);
  background: rgba(105, 110, 22, 0.4);
  color: #f7e57a;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.hero-prize-content h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  line-height: 1.05;
}

.hero-prize-content p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.55fr;
  gap: 0;
  width: 100%;
  max-width: 100%;
  grid-column: 1 / -1;
  margin-top: 28px;
  align-self: stretch;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(255,214,51,0.20), 0 0 34px rgba(255,214,51,0.22);
  background: linear-gradient(180deg, rgba(10,58,41,.58), rgba(7,38,28,.88));
}

.hero-prize-content .timer {
  margin-top: 24px;
}

.hero-prize-content .time-box {
  padding: 18px 10px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-stat-card {
  position: relative;
  min-height: 312px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0;
  padding: 28px 24px 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 92%, rgba(214,255,81,.22), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255,230,89,.12), transparent 26%),
    linear-gradient(180deg, rgba(15,88,58,.92), rgba(8,45,31,.96));
  box-shadow: inset 0 0 0 1px rgba(86,255,160,.16);
}

.hero-stat-card + .hero-stat-card {
  border-left: 1px solid rgba(255,214,51,0.18);
}

.hero-stat-badge {
  align-self: center;
  background: #ffd633;
  color: #17311b;
  font-weight: 900;
  font-size: .95rem;
  line-height: 1;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255,214,51,.16);
  text-transform: uppercase;
}

.hero-stat-badge--green {
  background: #44e76e;
  color: #0f2c15;
}

.hero-stat-body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 0 4px;
  min-height: 146px;
}

.hero-stat-body--ambassador {
  min-height: 170px;
  gap: 18px;
  align-items: flex-start;
}

.hero-stat-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-icon--ticket {
  width: 86px;
  height: 120px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffe66c, #d7ea58);
  position: relative;
  box-shadow: 0 0 24px rgba(239,255,106,.35), 12px 10px 0 rgba(210,255,90,.2);
  transform: rotate(-14deg);
}

.hero-stat-icon--ticket::before,
.hero-stat-icon--ticket::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 18px;
  background: rgba(9,54,38,.96);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-stat-icon--ticket::before {
  top: -1px;
  border-radius: 0 0 16px 16px;
}

.hero-stat-icon--ticket::after {
  bottom: -1px;
  border-radius: 16px 16px 0 0;
}

.hero-stat-icon--green {
  background: linear-gradient(180deg, #8bff77, #49ef5d);
  box-shadow: 0 0 24px rgba(114,255,132,.35), 12px 10px 0 rgba(84,255,125,.2);
}

.ticket-star {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotate(14deg);
  font-size: 2rem;
  color: #194d23;
  text-shadow: 0 0 6px rgba(255,255,255,.12);
  z-index: 3;
  line-height: 1;
}

.hero-stat-icon--ambassador {
  width: 120px;
  min-width: 120px;
  height: 136px;
  position: relative;
  color: #ffd94a;
  filter: drop-shadow(0 0 12px rgba(255,214,51,.3));
}

.hero-stat-icon--ambassador::before {
  content: '👑';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4.1rem;
  line-height: 1;
}

.hero-stat-icon--ambassador::after {
  content: '👤';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5.7rem;
  line-height: 1;
}

.hero-stat-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 8px;
}

.hero-stat-card h3 {
  margin: 0;
  font-size: clamp(3rem, 3.2vw, 4rem);
  line-height: .95;
  color: #fff;
  word-break: normal;
  letter-spacing: -0.04em;
  text-shadow: 0 0 18px rgba(255,255,255,.08);
}

.hero-stat-card--best h3,
.hero-stat-card--best p,
.hero-stat-card--ambassador h3,
.hero-stat-card--ambassador p {
  color: #ffd633;
}

.hero-stat-card p {
  margin: 0;
  color: rgba(255,253,244,0.94);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.26;
  text-transform: uppercase;
  max-width: none;
  text-wrap: balance;
}

.hero-stat-accent {
  color: #ffd633;
}

.hero-stat-ambassador-text {
  font-size: 1.06rem;
  line-height: 1.15;
  font-weight: 900;
  color: #55ff88;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.hero-stat-ambassador-text strong {
  display: block;
  color: #ffd633;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: .95;
  letter-spacing: -0.04em;
  text-shadow: 0 0 16px rgba(255,214,51,.18);
}

.hero-stat-foot {
  align-self: stretch;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(56,218,110,0.16);
  border: 1px solid rgba(96,255,148,0.22);
  color: rgba(255,253,244,.92);
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-align: center;
}

.hero-stat-card--ambassador .hero-stat-foot {
  color: #d8ff72;
  background: rgba(57,201,109,0.18);
  border-color: rgba(255,214,51,0.2);
}

.footer .container {
  max-width: 1180px;
}

.footer-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  margin: 0 0 0px;
  font-weight: 800;
  font-size: 1.15rem;
  text-wrap: balance;
}

.footer-copy {
  margin: 0 auto;
  max-width: 560px;
  color: rgba(255,253,244,0.88);
  line-height: 1.75;
  text-wrap: balance;
  text-align: center;
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding-bottom: 22px;
  }

  .brand {
    justify-content: center;
    width: min(100%, 640px);
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 10px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(248,216,54,0.16);
    background: linear-gradient(180deg, rgba(41,171,135,0.14) 0%, rgba(255,255,255,0.03) 100%);
    font-size: 0.95rem;
    font-weight: 700;
  }

  .hero-title-top {
    font-size: clamp(2.7rem, 5.2vw, 4.2rem);
  }

  .hero-title-promo-small {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  }

  .hero-title-promo-big {
    font-size: clamp(2rem, 4.6vw, 4rem);
  }

  .hero-title-promo-ahora {
    font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  }
}

@media (max-width: 1100px) {
  .hero-grid--referencia {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-left {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    width: 100%;
    align-items: center;
  }

  .hero-title-top,
  .hero-title-promo-small,
  .hero-title-promo-big,
  .hero-title-promo-ahora,
  .hero-description {
    text-align: center;
  }

  .hero-title-promo {
    align-self: center;
    align-items: center;
    transform: rotate(-2.5deg);
    margin-left: 0;
    margin-right: 0;
  }

  .hero-description {
    max-width: 720px;
  }

  .hero-aside,
  .hero-prize-card {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (min-width: 1100px) {
  .footer-inner {
    max-width: 1120px;
  }

  .footer-title,
  .footer-copy {
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .footer-copy {
    max-width: none;
    font-size: .98rem;
  }
}

@media (max-width: 1099px) {
  .footer-title,
  .footer-copy {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 1040px) {
  .hero-grid--referencia {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-left {
    max-width: none;
  }

  .hero-aside {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .hero { padding-bottom: 64px; }
  .hero h1 { letter-spacing: -0.04em; }
  .timer,
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .prizes-carousel .prize-item { flex-basis: 100%; }
  .container { width: min(calc(100% - 22px), var(--maxw)); }
  .btn { width: 100%; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .winner { gap: 18px; }
  .carousel-wrap,
  .card,
  .pay-card,
  .hero-card,
  .prize-item { border-radius: 22px; }
  .brand-logo { width: clamp(200px, 58vw, 280px); }
  .brand-mascot { width: clamp(82px, 24vw, 112px); }
  .brand span { display: none; }
  .nav-links {
    gap: 8px;
    padding-bottom: 6px;
  }
  .nav-links a {
    padding: 9px 12px;
    font-size: .95rem;
    font-weight: 700;
  }
  .hero-title {
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .hero-title-top {
    font-size: clamp(2.2rem, 11.4vw, 3.5rem);
    line-height: .96;
  }
  .hero-title-promo {
    transform: none;
  }
  .hero-title-promo-small {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }
  .hero-title-promo-big {
    font-size: clamp(2rem, 10.4vw, 3rem);
    line-height: .9;
  }
  .hero-title-promo-ahora {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
    line-height: .9;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  .eyebrow {
    width: 100%;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: .95rem;
  }
  .prize-overlay { inset: auto 14px 14px 14px; }
}




.tickets-section {
  padding: 72px 0;
}

.tickets-header {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.mis-tickets-hero {
  text-align: center;
  margin: 40px auto 30px;
}

.mis-tickets-hero__title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.mis-tickets-hero__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(255, 210, 42, 0.25));
}

.mis-tickets-hero__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.mis-tickets-hero__subtitle {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.tickets-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.tickets-title-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,214,42,0.16);
  position: relative;
}

.tickets-title-icon::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid #ffd42a;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.section-title {
  margin: 0;
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
}

.section-subtitle {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 760px;
}

.tickets-box {
  background: rgba(3, 38, 29, 0.92);
  border: 1px solid rgba(248,216,54,0.22);
  border-radius: 32px;
  box-shadow: 0 32px 82px rgba(0,0,0,0.32);
  padding: 38px;
}

.tickets-form {
  display: grid;
  gap: 18px;
}

.tickets-form label {
  display: block;
  margin-bottom: 12px;
  color: #ffd42a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.tickets-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
}

.tickets-form input[type="text"] {
  width: 100%;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 1rem;
}

.tickets-form input[type="text"]::placeholder {
  color: rgba(255,255,255,0.55);
}

.btn.btn-primary.btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 26px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(180deg, #ffe863, #f1b500);
  color: #18220c;
  font-weight: 900;
  font-size: 1rem;
}

.btn.btn-primary.btn-search::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.btn.btn-primary.btn-search::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  top: 40px;
  left: 23px;
}

.tickets-hint {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.tickets-message {
  margin-top: 18px;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.tickets-message.success {
  border-color: rgba(68,231,110,0.28);
  background: rgba(68,231,110,0.12);
  color: #c6ffcb;
}

.tickets-message.error {
  border-color: rgba(255,76,76,0.28);
  background: rgba(255,76,76,0.14);
  color: #ffd1d1;
}

.tickets-message.info {
  border-color: rgba(248,216,54,0.28);
  background: rgba(248,216,54,0.12);
  color: #fffbe6;
}

.tickets-summary-card {
  margin-top: 28px;
}

.tickets-found-alert {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  margin: 22px 0 28px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(15,72,45,0.92), rgba(5,48,35,0.82));
  border: 1px solid rgba(255,214,42,0.28);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.tickets-found-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  border: 3px solid #d6ff18;
  color: #d6ff18;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(214,255,24,0.20);
  background: rgba(15,72,45,0.96);
}

.tickets-found-title,
.tickets-found-subtitle {
  margin: 0;
}

.tickets-found-title {
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 800;
}

.tickets-found-subtitle {
  color: rgba(255,255,255,0.90);
  font-size: 0.98rem;
}

.text-gold,
.tickets-found-subtitle strong {
  color: #ffd42a;
  font-weight: 900;
}

.promo-ticket {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,210,42,0.95), rgba(255,166,0,0.90));
  box-shadow: 0 0 0 1px rgba(255,225,85,0.8), 0 0 30px rgba(255,210,42,0.40), inset 0 0 18px rgba(255,255,255,0.22);
  overflow: visible;
}

.promo-ticket::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 2px solid rgba(255,225,85,0.65);
  pointer-events: none;
  z-index: 2;
}

.promo-ticket__inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  padding: 34px 52px 38px;
  border-radius: 22px;
  background: radial-gradient(circle at 18% 20%, rgba(255,213,49,0.18), transparent 24%), radial-gradient(circle at 85% 30%, rgba(255,213,49,0.14), transparent 22%), linear-gradient(180deg, rgba(4,46,31,0.98), rgba(2,28,22,0.98));
  overflow: hidden;
}

.promo-ticket__cut {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 110px;
  transform: translateY(-50%);
  background: #05251c;
  border: 15px solid #f6bf14;
  border-radius: 999px;
  z-index: 5;
}

.promo-ticket__cut--left {
  left: -35px;
  border-left-color: transparent;
}

.promo-ticket__cut--right {
  right: -35px;
  border-right-color: transparent;
}

.promo-ticket__top {
  display: grid;
  grid-template-columns: 1fr 190px 230px;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}

.promo-ticket__brand img {
  width: 290px;
  max-width: 100%;
  height: auto;
  display: block;
}

.promo-ticket__avatar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.promo-ticket__avatar img {
  width: 250px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.35));
}

.promo-ticket--summary .promo-ticket__brand img {
  width: 300px;
}

.promo-ticket--summary .promo-ticket__avatar img {
  width: 240px;
}

.promo-ticket__draw {
  color: #ffd42a;
  text-align: left;
  font-weight: 900;
}

.promo-ticket__draw > span {
  display: block;
  font-size: 16px;
  line-height: 1;
}

.promo-ticket__date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.promo-ticket__date strong {
  font-size: 62px;
  line-height: 0.9;
  font-weight: 900;
}

.promo-ticket__date div {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.promo-ticket__divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,212,42,0.45), transparent);
  margin: 18px 0;
}

.promo-ticket__participant,
.promo-ticket__opportunities {
  text-align: center;
}

.promo-ticket__participant span,
.promo-ticket__opportunities span,
.promo-ticket__numbers > span {
  display: block;
  color: #ffd42a;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.promo-ticket__participant strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.promo-ticket__content-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 22px;
}

.promo-ticket__opportunities {
  text-align: center;
  border-right: 1px dashed rgba(255,212,42,0.55);
  padding-right: 28px;
}

.promo-ticket__opportunities strong {
  display: block;
  color: #ffffff;
  font-size: 66px;
  font-weight: 900;
  line-height: 1;
  margin: 12px 0 4px;
}

.promo-ticket__opportunities small {
  color: #ffd42a;
  font-size: 18px;
  font-weight: 900;
}

.promo-ticket__numbers {
  margin-top: 26px;
}

.promo-ticket__numbers-title {
  display: block;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.promo-ticket__ticket-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}

.promo-ticket__ticket-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.promo-ticket__ticket-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd42a;
  flex-shrink: 0;
}

.tickets-luck-box {
  max-width: 900px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px dashed rgba(255,212,42,0.55);
  border-radius: 16px;
  background: rgba(3,50,34,0.72);
  color: #ffffff;
}

.tickets-luck-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 14px;
  background: rgba(255,212,42,0.08);
  border: 1px solid rgba(255,212,42,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd42a;
}

.tickets-luck-icon svg {
  width: 34px;
  height: 34px;
}

.tickets-luck-content p {
  margin: 0 0 6px;
  font-size: 18px;
  color: #ffffff;
}

.tickets-luck-content strong {
  color: #d8ffb0;
  font-size: 18px;
}

.tickets-full-list-wrapper {
  margin-top: 28px;
}

.tickets-full-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tickets-full-header h2 {
  margin: 0;
  color: #ffd42a;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.btn.btn-secondary {
  background: rgba(4,42,31,0.92);
  color: #ffd42a;
  border: 1px solid rgba(255,212,42,0.45);
}

.btn-copy-small {
  min-height: 42px;
  padding: 0 22px;
  background: rgba(4,42,31,0.85);
  color: #ffd42a;
  font-size: 0.95rem;
  border-radius: 12px;
}

.ticket-full-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ticket-full-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-weight: 700;
  white-space: normal;
}

.ticket-full-item__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd42a;
  flex-shrink: 0;
}

.tickets-actions {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 24px;
}

.btn-wide {
  min-width: 220px;
}

@media (max-width: 1024px) {
  .promo-ticket__top {
    grid-template-columns: 1fr 170px 200px;
  }

  .promo-ticket__brand img {
    width: 230px;
  }

  .promo-ticket__avatar img {
    width: 190px;
  }

  .promo-ticket__participant strong {
    font-size: 25px;
  }

  .promo-ticket__ticket-list {
    grid-template-columns: 1fr;
  }

  .ticket-full-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   Estilos de formulario y errores
   =============================== */

.section-subtitle {
  text-align: center;
  margin: 0 auto 24px;
  max-width: 720px;
}

.form-errors {
  margin: 18px 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 90, 90, 0.55);
  background: rgba(120, 20, 20, 0.35);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  animation: slideDown 0.3s ease-out;
}

.form-errors strong {
  display: block;
  margin-bottom: 8px;
  color: #ffb4b4;
  font-weight: 600;
}

.form-errors ul {
  margin: 0;
  padding-left: 20px;
}

.form-errors li {
  margin: 4px 0;
  list-style-type: disc;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tickets-found-alert {
    align-items: flex-start;
    padding: 18px;
  }

  .tickets-found-title {
    font-size: 1rem;
  }

  .tickets-found-subtitle {
    font-size: 0.95rem;
  }

  .promo-ticket {
    padding: 12px;
    border-radius: 22px;
  }

  .promo-ticket__inner {
    min-height: auto;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .promo-ticket__cut {
    display: none;
  }

  .promo-ticket__top,
  .promo-ticket__top--summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promo-ticket__brand img {
    width: 210px;
    margin: 0 auto;
  }

  .promo-ticket__avatar {
    justify-content: center;
  }

  .promo-ticket__avatar img {
    width: 170px;
  }

  .tickets-luck-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .tickets-luck-icon svg {
    width: 28px;
    height: 28px;
  }

  .promo-ticket__draw {
    text-align: center;
  }

  .promo-ticket__date {
    justify-content: center;
  }

  .promo-ticket__content-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .promo-ticket__opportunities {
    border-right: none;
    border-bottom: 1px dashed rgba(255,212,42,0.45);
    padding-right: 0;
    padding-bottom: 20px;
  }

  .promo-ticket__ticket-list {
    grid-template-columns: 1fr;
  }

  .promo-ticket__ticket-line {
    white-space: normal;
    font-size: 14px;
  }

  .tickets-luck-box {
    align-items: flex-start;
    padding: 18px;
  }

  .tickets-actions {
    grid-template-columns: 1fr;
  }

  .ticket-full-list-grid {
    grid-template-columns: 1fr;
  }

  .tickets-full-header {
    flex-direction: column;
    align-items: stretch;
  }
}


