:root {
  --blue-900: #08364c;
  --blue-800: #075374;
  --blue-700: #087fb4;
  --blue-100: #e9f6fb;
  --green-600: #78bd20;
  --green-700: #5e9b19;
  --green-100: #eef8e5;
  --warm: #fffaf2;
  --surface: #ffffff;
  --surface-soft: #f4f9fb;
  --text: #102532;
  --muted: #647783;
  --line: rgba(8, 54, 76, 0.12);
  --shadow-soft: 0 18px 60px rgba(8, 54, 76, 0.12);
  --shadow-card: 0 12px 34px rgba(8, 54, 76, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--warm);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  color: white;
  background: var(--blue-900);
  border-radius: 999px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 242, 0.86);
  border-bottom: 1px solid rgba(8, 54, 76, 0.08);
  backdrop-filter: blur(18px);
}

.nav-container {
  min-height: 76px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.logo-frame,
.footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.logo-frame {
  width: 232px;
  height: 75px;
}

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

.navbar-toggler {
  border: 0;
  min-width: 44px;
  min-height: 44px;
}

.navbar-toggler:focus,
.btn-primary-action:focus,
.btn-secondary-action:focus,
.btn-whatsapp:focus,
.floating-whatsapp:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(120, 189, 32, 0.36);
  outline-offset: 3px;
  box-shadow: none;
}

.nav-link {
  color: var(--blue-900);
  font-weight: 700;
  padding: 12px 11px !important;
}

.nav-link:hover {
  color: var(--blue-700);
}

.nav-link-raffle {
  position: relative;
  color: white !important;
  padding-inline: 16px !important;
  background: linear-gradient(100deg, var(--blue-700), var(--green-600), var(--blue-900), var(--blue-700));
  background-size: 260% 100%;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(8, 127, 180, 0.18);
}

.nav-link-raffle:hover {
  color: white !important;
  box-shadow: 0 14px 32px rgba(94, 155, 25, 0.24);
}

@media (prefers-reduced-motion: no-preference) {
  .nav-link-raffle {
    animation: raffleNavGradient 4.6s ease-in-out infinite;
  }
}

@keyframes raffleNavGradient {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.btn-primary-action,
.btn-secondary-action,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn-primary-action {
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  box-shadow: 0 16px 36px rgba(8, 127, 180, 0.24);
}

.btn-secondary-action {
  color: var(--blue-900);
  background: white;
  border: 1px solid var(--blue-900);
}

.btn-whatsapp {
  color: white;
  background: linear-gradient(135deg, #26d367, var(--green-700));
  box-shadow: 0 16px 36px rgba(94, 155, 25, 0.24);
}

.btn-primary-action:hover,
.btn-secondary-action:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0 68px;
  min-height: calc(100dvh - 76px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(120, 189, 32, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(8, 127, 180, 0.11), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #eef8fb 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 720px;
  height: 360px;
  background: rgba(8, 127, 180, 0.08);
  border-radius: 80% 0 0 0;
  transform: rotate(-7deg);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 250, 242, 0.62), rgba(255, 250, 242, 0.32) 34%, transparent 62%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.2), rgba(238, 248, 251, 0.16));
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-orb-blue {
  width: 360px;
  height: 360px;
  right: 9%;
  top: 120px;
  background: rgba(8, 127, 180, 0.08);
}

.hero-orb-green {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: 20px;
  background: rgba(120, 189, 32, 0.12);
}

.hero-prize-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-prize {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 0.28;
  filter: saturate(1.05) drop-shadow(0 22px 42px rgba(8, 54, 76, 0.13));
}

.hero-prize-moto {
  left: 0.7vw;
  top: 0.8vw;
  width: min(31vw, 570px);
  opacity: 0.36;
}

.hero-prize-play {
  left: 1.4vw;
  right: auto;
  bottom: 2.5vw;
  width: min(34vw, 650px);
  opacity: 0.3;
}

.hero-prize-tele {
  right: 1.2vw;
  top: 1.2vw;
  width: min(27vw, 500px);
  opacity: 0.31;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 60px;
  align-items: center;
}

.hero-marketplace {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.hero-anniversary-grid {
  position: relative;
  z-index: 3;
  display: block;
}

.hero-anniversary-copy {
  width: min(100%, 1080px);
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  justify-self: center;
}

.hero-anniversary-copy h1,
.hero-anniversary-copy p {
  margin-inline: auto;
  text-align: center;
}

.hero-anniversary-copy h1 {
  max-width: 1080px;
}

.hero-anniversary-copy p {
  max-width: 820px;
  color: rgba(8, 54, 76, 0.82);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-anniversary-copy .hero-actions {
  justify-content: center;
}

.hero-anniversary-copy .btn-primary-action {
  min-width: 260px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: var(--blue-900);
  background: rgba(120, 189, 32, 0.13);
  border: 1px solid rgba(120, 189, 32, 0.22);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-copy h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: var(--blue-900);
  font-size: clamp(2.7rem, 6.1vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.hero-copy-centered {
  max-width: 920px;
  text-align: center;
}

.hero-copy-centered .eyebrow {
  margin-inline: auto;
}

.hero-copy-centered h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 8vw, 7rem);
}

.hero-copy-centered p {
  max-width: 720px;
  margin-inline: auto;
}

.hero-copy p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-anniversary-copy.hero-copy h1 {
  max-width: 1080px;
  margin: 0 auto 22px;
  text-align: center;
}

.hero-anniversary-copy.hero-copy p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(8, 54, 76, 0.82);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 54, 76, 0.11);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 96px;
  height: 96px;
  background: var(--green-100);
  border-radius: 50%;
  z-index: -1;
}

.hero-logo-card,
.hero-question-card {
  background: white;
  border: 1px solid rgba(8, 54, 76, 0.09);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.hero-logo-card {
  display: flex;
  justify-content: center;
  padding: 22px;
}

.hero-logo-card img {
  width: min(100%, 360px);
  height: 92px;
  object-fit: contain;
}

.hero-question-card {
  padding: 26px;
}

.hero-question-card span {
  color: var(--green-700);
  font-weight: 900;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-question-card strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-900);
  font-size: 1.7rem;
  line-height: 1.1;
}

.hero-question-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-mini-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  background: var(--green-100);
  border: 1px solid rgba(94, 155, 25, 0.14);
  border-radius: 999px;
  font-weight: 900;
}

.hero-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(980px, 100%);
  margin-top: 8px;
}

.hero-coverage-card {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 142px;
  padding: 22px 18px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-coverage-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 112px;
  height: 112px;
  background: rgba(120, 189, 32, 0.13);
  border-radius: 50%;
}

.hero-coverage-card:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 189, 32, 0.42);
  box-shadow: 0 22px 54px rgba(8, 54, 76, 0.14);
}

.coverage-symbol {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-coverage-card strong {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-help {
  margin-top: 4px;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: #f3f9fb;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.guide-copy h2,
.companies-copy h2 {
  margin: 0 0 16px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.section-heading p,
.guide-copy p,
.companies-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.protect-section {
  background: white;
}

.protect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.protect-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 34px 28px 28px 34px;
  background: linear-gradient(180deg, white 0%, #fbfdfe 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.protect-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  background: rgba(8, 127, 180, 0.07);
  border-radius: 50%;
}

.protect-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  background: linear-gradient(180deg, var(--blue-700), var(--green-600));
  border-radius: 0 999px 999px 0;
}

.protect-card h3,
.aftercare-card h3 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-size: 1.38rem;
  font-weight: 900;
}

.protect-card p,
.aftercare-card p {
  margin: 0;
  color: var(--muted);
}

.guide-section {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 16%, rgba(120, 189, 32, 0.32), transparent 26%),
    linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.guide-copy h2 {
  color: white;
}

.guide-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.steps-list {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.guide-step-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 118px;
  margin-left: 0;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
}

.guide-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
}

.guide-step-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 560px;
  min-width: 0;
}

.guide-step-content strong {
  color: white;
  font-size: 1.08rem;
}

.guide-step-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  overflow-wrap: anywhere;
}

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

.aftercare-card {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.companies-section {
  background: white;
}

.companies-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: center;
}

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

.companies-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px;
  color: var(--blue-900);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-card);
  font-weight: 900;
  text-align: center;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(120, 189, 32, 0.12), transparent 28%),
    linear-gradient(180deg, #f4f9fb 0%, #fffaf2 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.contact-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 0 auto 22px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.contact-choice-button {
  min-height: 48px;
  color: var(--blue-900);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.contact-choice-button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 12px 28px rgba(8, 54, 76, 0.18);
}

.contact-choice-button.is-active[data-contact-tab="whatsapp"] {
  background: linear-gradient(135deg, #26d367, var(--green-700));
  box-shadow: 0 12px 28px rgba(94, 155, 25, 0.2);
}

.contact-panel-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.contact-panel-wrap .contact-card[hidden] {
  display: none;
}

.contact-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.whatsapp-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 248, 229, 0.9) 100%);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  color: var(--blue-900);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-heading h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: 1.75rem;
  font-weight: 900;
}

.form-heading p,
.form-note,
.direct-contact span {
  margin: 0;
  color: var(--muted);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  color: var(--text);
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--text);
  background: white;
  border: 1px solid rgba(8, 54, 76, 0.14);
  border-radius: 16px;
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.direct-contact {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  text-align: center;
}

.direct-contact a {
  color: var(--green-700);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 8px;
  color: white;
  background: #25d366;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  background: white;
  -webkit-mask: url("/images/whatsapp.svg") center / contain no-repeat;
  mask: url("/images/whatsapp.svg") center / contain no-repeat;
}

.site-footer {
  color: white;
  background: var(--blue-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.05fr;
  gap: 42px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 28px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-logo-frame {
  width: 230px;
  height: 74px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
}

.site-footer p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer-legal-note {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-trademark {
  max-width: 330px !important;
  padding-top: 10px;
  margin-top: -4px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem !important;
  line-height: 1.45;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-social {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-links strong {
  margin-bottom: 4px;
  color: white;
  font-size: 0.95rem;
}

.footer-links a,
.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.footer-links > a:not(:has(svg)) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-text-item {
  min-height: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.footer-small-text {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.84rem !important;
  line-height: 1.55;
}

.footer-regulatory {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.footer-regulatory p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links span,
.footer-links p,
.footer-bottom-content span {
  overflow-wrap: anywhere;
}

.footer-links svg,
.footer-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.14);
  font-size: 0.84rem;
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr) minmax(0, 0.75fr);
  gap: 22px;
  align-items: center;
}

.footer-credit {
  justify-self: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.footer-bottom-content a {
  color: white;
  font-size: 0.96rem;
  font-weight: 800;
}

.footer-bottom-content a:hover {
  text-decoration: underline;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.error-section {
  min-height: 62vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(120, 189, 32, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(8, 127, 180, 0.18), transparent 32%),
    linear-gradient(180deg, #fffaf2 0%, #e9f6fb 100%);
}

.error-card {
  max-width: 860px;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.error-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 40px;
  margin-bottom: 16px;
  color: white;
  background: linear-gradient(135deg, var(--blue-800), var(--green-700));
  border-radius: 999px;
  font-weight: 900;
}

.error-card h1 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.error-card p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  font-weight: 700;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.error-card small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
}

.raffle-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: var(--blue-900);
  background:
    radial-gradient(circle at 18% 18%, rgba(120, 189, 32, 0.2), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(8, 127, 180, 0.18), transparent 32%),
    linear-gradient(180deg, #fffaf2 0%, #e9f6fb 100%);
}

.raffle-hero-layout {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.raffle-hero-copy h1,
.raffle-success-card h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--blue-900);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.raffle-hero-copy p,
.raffle-success-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.raffle-hero .raffle-hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.raffle-hero .raffle-hero-copy h1,
.raffle-hero .raffle-hero-copy p {
  margin-right: auto;
  margin-left: auto;
}

.raffle-hero .raffle-hero-copy h1 {
  max-width: 1500px;
}

.raffle-anniversary-title {
  color: var(--blue-900);
  line-height: 1.08;
}

.raffle-hero-copy h1.raffle-anniversary-title {
  line-height: 1.12;
}

.raffle-anniversary-title span {
  display: block;
  line-height: 1.16;
  padding-bottom: 0.08em;
}

.raffle-anniversary-title span + span {
  margin-top: -0.12em;
}

.raffle-anniversary-title span:last-child {
  white-space: nowrap;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .raffle-anniversary-title span {
    color: transparent;
    background: linear-gradient(90deg, var(--blue-900), var(--blue-700), var(--green-600), var(--blue-900));
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
  }

  @media (prefers-reduced-motion: no-preference) {
    .raffle-anniversary-title span {
      animation: raffleTitleFlag 5.8s ease-in-out infinite;
    }

  }
}

@keyframes raffleTitleFlag {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.raffle-hero-actions,
.raffle-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.raffle-form-card,
.raffle-info-card,
.raffle-promo-card,
.raffle-success-card {
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.raffle-prize-stage {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(8, 54, 76, 0.08);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 10% 20%, rgba(120, 189, 32, 0.18), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(8, 127, 180, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(232, 247, 252, 0.52));
}

.raffle-prize-stage::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% 40%;
  height: 58%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8, 127, 180, 0.12), rgba(120, 189, 32, 0.18));
  filter: blur(4px);
}

.raffle-prize-title,
.raffle-prize-showcase,
.raffle-image-note,
.raffle-weekly-callout {
  position: relative;
  z-index: 1;
}

.raffle-prize-title {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
  text-align: center;
}

.raffle-weekly-callout {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 3vw, 28px);
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(8, 54, 76, 0.06);
  backdrop-filter: blur(12px);
  text-align: center;
}

.raffle-weekly-callout span {
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.raffle-weekly-callout strong {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.08rem, 2.2vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.raffle-prize-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: clamp(12px, 2vw, 22px);
  align-items: stretch;
}

.raffle-prize-item {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(170px, 1fr) auto;
  gap: 10px;
  min-height: clamp(300px, 28vw, 410px);
  padding: clamp(16px, 2vw, 22px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.32));
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 34px;
  box-shadow: 0 16px 38px rgba(8, 54, 76, 0.08);
}

.raffle-prize-item::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.66));
  pointer-events: none;
}

.raffle-prize-main {
  min-height: clamp(330px, 32vw, 460px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(227, 246, 236, 0.78));
}

.raffle-prize-secondary {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(233, 247, 252, 0.74));
}

.raffle-prize-image {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.raffle-prize-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(8, 54, 76, 0.22));
  transform: scale(1.12);
}

.raffle-prize-main .raffle-prize-image img {
  transform: scale(1.2);
}

.raffle-prize-rank,
.raffle-prize-name {
  position: relative;
  z-index: 1;
}

.raffle-prize-rank {
  align-self: start;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.raffle-prize-name {
  display: block;
  align-self: end;
  padding-top: 18px;
  color: var(--blue-900);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.04;
  font-weight: 900;
  text-align: center;
}

.raffle-prize-main .raffle-prize-name {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.raffle-image-note {
  justify-self: end;
  margin: -4px 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
}

.raffle-section {
  background: var(--warm);
}

.raffle-steps,
.raffle-info-grid,
.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.raffle-info-grid,
.admin-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.raffle-info-grid {
  grid-template-columns: minmax(0, 1fr);
}

.raffle-step,
.raffle-info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-card);
}

.raffle-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: white;
  background: var(--blue-900);
  border-radius: 16px;
  font-weight: 900;
}

.raffle-step strong,
.raffle-info-card h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: 1.28rem;
}

.raffle-requirements-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.raffle-requirements-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  color: var(--blue-900);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(233, 246, 251, 0.66));
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(8, 54, 76, 0.07);
  font-weight: 800;
}

.raffle-requirements-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--green-700);
  border-radius: 12px;
  font-weight: 900;
}

.raffle-form-section,
.admin-raffle-section {
  background: linear-gradient(180deg, var(--surface-soft), #fffaf2);
}

.raffle-section-stack {
  display: grid;
  gap: 28px;
}

.raffle-wide-card {
  max-width: 100%;
}

.raffle-mobile-disclosure {
  display: block;
}

.raffle-mobile-disclosure > summary {
  display: none;
}

.raffle-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.raffle-form-grid > .raffle-form-card:first-child {
  grid-row: span 2;
}

.raffle-single-card {
  max-width: 920px;
}

.raffle-form-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 94% 0%, rgba(120, 189, 32, 0.17), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(8, 127, 180, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(233, 246, 251, 0.72));
  backdrop-filter: blur(14px);
}

.raffle-form-card::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -12%;
  width: 360px;
  height: 360px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(120, 189, 32, 0.16), transparent 62%);
  opacity: 0.8;
}

.raffle-form-card > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .raffle-form-card::before {
    animation: raffleCardGlow 9s ease-in-out infinite alternate;
  }
}

@keyframes raffleCardGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }

  to {
    transform: translate3d(24px, 18px, 0) scale(1.08);
    opacity: 0.88;
  }
}

.form-row,
.raffle-item-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.raffle-person-row {
  grid-template-columns: minmax(260px, 1.25fr) minmax(150px, 0.65fr) minmax(190px, 0.8fr);
}

.raffle-social-row {
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 0.75fr) minmax(180px, 0.75fr);
}

.raffle-form-card .form-field {
  gap: 6px;
  margin-bottom: 8px;
}

.raffle-form-card .form-field label {
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 900;
}

.raffle-form-card .form-field input,
.raffle-form-card .form-field select,
.raffle-form-card .form-field textarea {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(8, 54, 76, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.raffle-form-card .form-field input:focus,
.raffle-form-card .form-field select:focus,
.raffle-form-card .form-field textarea:focus {
  background: rgba(255, 255, 255, 0.94);
}

.raffle-form-note {
  margin: -2px 0 4px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.raffle-item-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) max-content;
  align-items: end;
  padding: 14px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 20px;
}

.form-row > *,
.raffle-item-row > *,
.raffle-items,
.raffle-checks {
  min-width: 0;
}

.raffle-item-row .form-field {
  margin-bottom: 0;
}

.raffle-remove-item {
  min-height: 48px;
  padding: 10px 14px;
  white-space: nowrap;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--blue-900);
  border-radius: 999px;
  font-weight: 800;
}

.raffle-add-item {
  width: fit-content;
}

.raffle-checks,
.raffle-existing-items {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 22px;
}

.raffle-checks label,
.raffle-existing-item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--blue-900);
  line-height: 1.28;
  font-weight: 800;
}

.raffle-checks input[type="checkbox"],
.raffle-existing-item input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid rgba(8, 54, 76, 0.28);
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.raffle-checks input[type="checkbox"]::after,
.raffle-existing-item input[type="checkbox"]::after {
  content: "";
  width: 6px;
  height: 11px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transform: rotate(45deg) scale(0.7) translate(-1px, -1px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.raffle-checks input[type="checkbox"]:checked,
.raffle-existing-item input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--blue-700), var(--green-700));
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(8, 127, 180, 0.2);
}

.raffle-checks input[type="checkbox"]:checked::after,
.raffle-existing-item input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1) translate(-1px, -1px);
}

.raffle-checks input[type="checkbox"]:focus-visible,
.raffle-existing-item input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(8, 127, 180, 0.25);
  outline-offset: 3px;
}

.raffle-checks a {
  color: var(--blue-700);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.raffle-help-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 22px;
}

.raffle-items h3,
.raffle-existing-items strong {
  margin: 0 0 2px;
  color: var(--blue-900);
  font-size: 1.05rem;
  font-weight: 900;
}

.raffle-help-card strong {
  color: var(--blue-900);
  font-size: 1.08rem;
  font-weight: 900;
}

.raffle-help-card p {
  margin: 0;
  color: var(--muted);
}

.raffle-help-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 220px));
  gap: 10px;
  justify-content: start;
}

.raffle-help-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 12px 18px;
  color: white;
  background: var(--blue-900);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 54, 76, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.raffle-help-links a:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(8, 54, 76, 0.18);
  filter: saturate(1.06);
}

.raffle-help-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #c13584 38%, #e1306c 66%, #f77737 100%) !important;
}

.raffle-help-facebook {
  background: linear-gradient(135deg, #1877f2, #0b4fb3) !important;
}

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

.raffle-help-links svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.raffle-correction-help {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  color: var(--blue-900);
  font-weight: 900;
}

.raffle-correction-help span {
  min-width: 0;
}

.raffle-correction-help a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 9px 12px;
  color: white;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(18, 140, 126, 0.18);
}

.raffle-correction-help a:hover {
  color: white;
  transform: translateY(-1px);
}

.raffle-inline-result,
.raffle-inline-form {
  display: grid;
  gap: 16px;
}

.raffle-inline-result[hidden] {
  display: none;
}

.raffle-inline-message {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  font-weight: 700;
}

.raffle-inline-message strong {
  color: var(--blue-900);
  font-size: 1.08rem;
  font-weight: 900;
}

.raffle-inline-success {
  color: var(--blue-900);
  background: rgba(120, 189, 32, 0.14);
  border: 1px solid rgba(120, 189, 32, 0.26);
}

.raffle-inline-info {
  color: var(--blue-900);
  background: #fff7db;
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.raffle-inline-error {
  color: #7f1d1d;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.raffle-entry-detail-list {
  display: grid;
  gap: 8px;
  margin: 4px 0;
}

.raffle-entry-detail {
  display: grid;
  grid-template-columns: minmax(78px, auto) minmax(100px, 0.65fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 16px;
}

.raffle-entry-detail strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.raffle-entry-detail span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.raffle-promo-section {
  background: var(--warm);
}

.raffle-promo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  background:
    radial-gradient(circle at 92% 4%, rgba(120, 189, 32, 0.24), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(8, 127, 180, 0.16), transparent 32%),
    white;
}

.raffle-promo-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--green-600), var(--blue-700));
}

.raffle-promo-card::after {
  content: "";
  position: absolute;
  inset: 18px 22px auto auto;
  width: 150px;
  height: 58px;
  opacity: 0.8;
  background:
    radial-gradient(circle, var(--green-600) 0 3px, transparent 4px) 8px 10px / 34px 24px,
    radial-gradient(circle, var(--blue-700) 0 3px, transparent 4px) 28px 30px / 38px 26px,
    linear-gradient(45deg, transparent 42%, var(--green-600) 43% 57%, transparent 58%) 72px 4px / 28px 28px,
    linear-gradient(-45deg, transparent 42%, var(--blue-700) 43% 57%, transparent 58%) 114px 26px / 28px 28px;
  background-repeat: no-repeat;
  pointer-events: none;
}

.raffle-promo-card > div:first-child::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 18px;
  width: 120px;
  height: 54px;
  opacity: 0.42;
  background:
    radial-gradient(circle, var(--blue-700) 0 3px, transparent 4px) 6px 8px / 32px 24px,
    radial-gradient(circle, var(--green-600) 0 3px, transparent 4px) 34px 28px / 36px 26px,
    linear-gradient(35deg, transparent 42%, var(--green-600) 43% 57%, transparent 58%) 82px 6px / 26px 26px;
  background-repeat: no-repeat;
  pointer-events: none;
}

.raffle-promo-card h2 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.raffle-success-card {
  max-width: 900px;
  padding: 42px;
}

.raffle-success-number,
.raffle-entry-list {
  padding: 20px;
  margin-top: 14px;
  color: white;
  background: var(--blue-900);
  border-radius: 24px;
  font-size: 1.2rem;
  font-weight: 900;
}

.admin-raffle-header,
.admin-raffle-actions {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-raffle-header {
  justify-items: start;
}

.admin-raffle-actions {
  grid-template-columns: minmax(360px, 1fr) auto;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 54, 76, 0.1);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(8, 54, 76, 0.08);
}

.admin-raffle-header h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.admin-raffle-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-raffle-metrics article {
  min-height: 108px;
  padding: 18px 20px;
  color: white;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  border-radius: 24px;
}

.admin-raffle-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.admin-raffle-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 2.05rem;
  line-height: 1;
}

.admin-search-form {
  display: flex;
  gap: 10px;
  flex: 1;
}

.admin-search-form input {
  width: 100%;
  min-height: 54px;
  padding: 15px 18px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(8, 54, 76, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font: inherit;
  font-weight: 800;
}

.admin-search-form input::placeholder {
  color: rgba(8, 54, 76, 0.56);
}

.admin-search-form input:focus {
  outline: none;
  border-color: rgba(8, 127, 180, 0.42);
  box-shadow: 0 0 0 4px rgba(8, 127, 180, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.admin-pagination > div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-table-wrap {
  overflow-x: auto;
  padding: 18px;
  margin-top: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--blue-900);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-table a {
  color: var(--blue-700);
  font-weight: 900;
}

.admin-table input,
.admin-table select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--blue-900);
  background: white;
  border: 1px solid rgba(8, 54, 76, 0.14);
  border-radius: 14px;
  font: inherit;
  font-weight: 800;
}

.admin-table input:focus,
.admin-table select:focus {
  outline: none;
  border-color: rgba(8, 127, 180, 0.42);
  box-shadow: 0 0 0 4px rgba(8, 127, 180, 0.12);
}

.admin-item-actions {
  display: inline-flex;
  margin: 2px 4px 2px 0;
}

.admin-item-actions .btn-secondary-action {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.86rem;
}

.admin-panel-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.admin-panel-card h3 {
  margin: 0 0 18px;
  color: var(--blue-900);
  font-weight: 900;
}

.admin-participant-edit-form {
  display: grid;
  gap: 12px;
}

.admin-participant-edit-form .form-field {
  gap: 6px;
  margin: 0;
}

.admin-participant-edit-form label {
  color: var(--blue-900);
  font-size: 0.86rem;
  font-weight: 900;
}

.admin-participant-edit-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  color: var(--blue-900);
  background: white;
  border: 1px solid rgba(8, 54, 76, 0.14);
  border-radius: 16px;
  font: inherit;
  font-weight: 800;
}

.admin-participant-edit-form input:not([type="checkbox"]):focus {
  outline: none;
  border-color: rgba(8, 127, 180, 0.42);
  box-shadow: 0 0 0 4px rgba(8, 127, 180, 0.12);
}

.admin-participant-checks {
  padding: 10px 12px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--muted);
  font-size: 0.94rem;
}

.admin-table a {
  color: var(--blue-700);
  font-weight: 900;
}

.admin-detail-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.admin-detail-heading h1 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.admin-detail-heading p {
  margin: 0;
  color: var(--muted);
}

.bot-result-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 14px;
  margin-bottom: 18px;
}

.bot-result-list dt {
  color: var(--blue-900);
  font-weight: 900;
}

.bot-result-list dd {
  margin: 0;
  color: var(--muted);
}

.bot-response-box {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--blue-100);
  border-radius: 20px;
}

.bot-response-box strong {
  color: var(--blue-900);
}

.bot-response-box p {
  margin: 0;
  color: var(--text);
  white-space: pre-wrap;
}

.message-thread {
  display: grid;
  gap: 14px;
}

.message-bubble {
  max-width: 760px;
  padding: 14px 16px;
  border-radius: 20px;
}

.message-bubble span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0.72;
}

.message-bubble p {
  margin: 0;
  white-space: pre-wrap;
}

.message-bubble.inbound {
  justify-self: start;
  color: var(--text);
  background: white;
  border: 1px solid var(--line);
}

.message-bubble.outbound {
  justify-self: end;
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  padding: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.event-list strong {
  color: var(--blue-900);
}

.event-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-summary-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-summary-form label {
  color: var(--blue-900);
  font-weight: 900;
}

.admin-summary-form input {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font: inherit;
}

.summary-output {
  margin: 0;
  white-space: pre-wrap;
  color: var(--text);
  font: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

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

@media (max-width: 1199px) {
  .aftercare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-coverage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .nav-container {
    min-height: 74px;
  }

  .navbar-collapse {
    padding: 16px 0 8px;
  }

  .hero-grid,
  .guide-grid,
  .companies-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-link-raffle {
    width: fit-content;
  }

  .hero-section {
    min-height: auto;
    padding: 54px 0 60px;
  }

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

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

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

  .footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-credit {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .logo-frame {
    width: 184px;
    height: 60px;
  }

  .footer-logo-frame {
    width: 204px;
    height: 66px;
    padding: 6px 9px;
  }

  .hero-copy h1 {
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.65rem, 14vw, 4.1rem);
    line-height: 0.98;
  }

  .hero-anniversary-copy h1 {
    font-size: clamp(3rem, 15vw, 4.75rem);
  }

  .hero-anniversary-copy p {
    font-size: 1.02rem;
  }

  .hero-prize-moto {
    left: -16vw;
    top: 6vw;
    width: 78vw;
    opacity: 0.16;
  }

  .hero-prize-play {
    display: none;
  }

  .hero-prize-tele {
    right: -18vw;
    top: 7vw;
    width: 62vw;
    opacity: 0.12;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-help {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-help .btn-secondary-action {
    width: min(100%, 360px);
  }

  .hero-mini-grid,
  .protect-grid,
  .aftercare-grid,
  .raffle-form-grid,
  .raffle-steps,
  .raffle-info-grid,
  .admin-detail-grid,
  .admin-raffle-metrics,
  .raffle-promo-card {
    grid-template-columns: 1fr;
  }

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

  .companies-grid span {
    min-height: 72px;
    padding: 12px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
  }

  .contact-choice {
    margin-bottom: 16px;
  }

  .contact-choice-button {
    min-height: 44px;
  }

  .raffle-hero {
    padding: 56px 0;
  }

  .raffle-hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
    line-height: 0.96;
  }

  .raffle-hero-copy p {
    font-size: 1rem;
  }

  .raffle-anniversary-title span:last-child {
    white-space: normal;
    font-size: clamp(2.45rem, 13vw, 4.1rem);
  }

  .raffle-section,
  .raffle-form-section {
    scroll-margin-top: 82px;
  }

  .section.raffle-section,
  .section.raffle-form-section {
    padding: 48px 0;
  }

  .raffle-section-stack {
    gap: 16px;
  }

  .raffle-section .section-heading,
  .raffle-form-section .section-heading {
    margin-bottom: 0;
  }

  .raffle-section .section-heading h2,
  .raffle-form-section .section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .raffle-section .section-heading p,
  .raffle-form-section .section-heading p {
    font-size: 1rem;
  }

  .raffle-mobile-disclosure {
    display: grid;
    gap: 14px;
  }

  .raffle-disclosure-content {
    display: grid;
    gap: 14px;
  }

  .raffle-mobile-disclosure > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    color: var(--blue-900);
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    list-style: none;
  }

  .raffle-mobile-disclosure > summary::-webkit-details-marker {
    display: none;
  }

  .raffle-mobile-disclosure > summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    color: white;
    background: var(--blue-900);
    border-radius: 999px;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
  }

  .raffle-mobile-disclosure[open] > summary::after {
    content: "-";
  }

  .raffle-mobile-disclosure > summary span,
  .raffle-mobile-disclosure > summary small {
    display: block;
  }

  .raffle-mobile-disclosure > summary span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.08rem;
    font-weight: 900;
  }

  .raffle-steps {
    gap: 12px;
  }

  .raffle-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 12px;
    align-items: start;
    padding: 18px;
  }

  .raffle-step span {
    grid-row: span 2;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-radius: 14px;
  }

  .raffle-step strong {
    margin: 0;
  }

  .raffle-step p {
    margin: 0;
    font-size: 0.94rem;
  }

  .raffle-requirements-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .raffle-requirements-list li {
    min-height: 54px;
    padding: 11px 12px;
    border-radius: 18px;
    font-size: 0.95rem;
  }

  .raffle-requirements-list span {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .raffle-prize-stage,
  .raffle-form-card,
  .raffle-info-card,
  .raffle-success-card {
    padding: 22px;
    border-radius: 26px;
  }

  .raffle-weekly-callout {
    padding: 14px 16px;
    border-radius: 20px;
  }

  .raffle-prize-title {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .raffle-prize-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .raffle-prize-item,
  .raffle-prize-main {
    grid-row: auto;
    grid-template-rows: auto minmax(170px, 1fr) auto;
    min-height: 280px;
  }

  .raffle-prize-secondary {
    min-height: 250px;
  }

  .raffle-prize-image img,
  .raffle-prize-main .raffle-prize-image img {
    transform: scale(1.08);
  }

  .raffle-form-card {
    gap: 12px;
    padding: 18px;
  }

  .raffle-form-card::before {
    width: 260px;
    height: 260px;
    inset: -90px auto auto -80px;
  }

  .raffle-form-card .form-field {
    margin-bottom: 4px;
  }

  .raffle-form-card .form-field input,
  .raffle-form-card .form-field select,
  .raffle-form-card .form-field textarea {
    min-height: 48px;
    padding: 13px 14px;
  }

  .raffle-promo-card {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 26px;
  }

  .raffle-promo-card::after {
    width: 110px;
    right: 14px;
    top: 12px;
    opacity: 0.55;
  }

  .raffle-promo-card > div:first-child::before {
    left: 16px;
    top: 12px;
    width: 90px;
    opacity: 0.28;
  }

  .form-row,
  .raffle-person-row,
  .raffle-social-row,
  .raffle-item-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .raffle-item-row {
    padding: 12px;
  }

  .raffle-checks,
  .raffle-existing-items,
  .raffle-help-card {
    padding: 14px;
    border-radius: 20px;
  }

  .raffle-checks label,
  .raffle-existing-item {
    min-height: 44px;
    align-items: center;
  }

  .raffle-checks input[type="checkbox"],
  .raffle-existing-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .raffle-form-grid > .raffle-form-card:first-child {
    grid-row: auto;
  }

  .raffle-entry-detail {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .raffle-help-links {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .raffle-correction-help {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .raffle-correction-help a {
    width: 100%;
  }

  .raffle-hero-actions,
  .raffle-promo-actions,
  .admin-raffle-header,
  .admin-raffle-actions,
  .admin-search-form {
    display: grid;
    width: 100%;
  }

  .raffle-add-item,
  .admin-search-form .btn-primary-action,
  .admin-raffle-actions .btn-whatsapp {
    width: 100%;
  }

  .admin-raffle-header {
    gap: 12px;
    margin-bottom: 16px;
  }

  .admin-raffle-header h1 {
    font-size: clamp(2rem, 11vw, 3.15rem);
  }

  .admin-raffle-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 16px;
  }

  .admin-raffle-metrics article {
    min-height: 68px;
    padding: 10px 8px;
    border-radius: 18px;
  }

  .admin-raffle-metrics span {
    font-size: 0.72rem;
    line-height: 1.1;
  }

  .admin-raffle-metrics strong {
    margin-top: 4px;
    display: block;
    font-size: 1.42rem;
  }

  .admin-raffle-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
  }

  .admin-search-form input {
    min-height: 50px;
    padding: 13px 15px;
    border-radius: 18px;
    font-size: 0.94rem;
  }

  .admin-table-wrap {
    overflow: visible;
    padding: 12px;
    border-radius: 22px;
  }

  .admin-table,
  .admin-table tbody {
    display: block;
    width: 100%;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 4px 10px;
    align-items: center;
    padding: 12px 12px 10px;
    background: rgba(233, 246, 251, 0.5);
    border: 1px solid rgba(8, 54, 76, 0.09);
    border-radius: 18px;
  }

  .admin-table tr + tr {
    margin-top: 10px;
  }

  .admin-table td {
    min-width: 0;
    padding: 0;
    border-bottom: 0;
    color: var(--blue-900);
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .admin-table td::before {
    content: none;
  }

  .admin-table td[data-label="Participante"] {
    grid-column: 1;
    grid-row: 1;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
  }

  .admin-table td[data-label="N° chance"] {
    grid-column: 2;
    grid-row: 1;
    padding: 6px 9px;
    color: white;
    background: var(--blue-900);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
  }

  .admin-table td[data-label="Detalle"] {
    grid-column: 3;
    grid-row: 1;
    white-space: nowrap;
  }

  .admin-table td[data-label="Detalle"] a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    color: var(--blue-900);
    background: white;
    border: 1px solid rgba(8, 54, 76, 0.12);
    border-radius: 999px;
    font-size: 0.82rem;
  }

  .admin-table td[data-label="DNI"],
  .admin-table td[data-label="Bien"],
  .admin-table td[data-label="Mes"] {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.22;
  }

  .admin-table td[data-label="DNI"]::before {
    content: "DNI ";
    color: var(--blue-900);
  }

  .admin-table td[data-label="Bien"]::before {
    content: "Bien ";
    color: var(--blue-900);
  }

  .admin-table td[data-label="Mes"]::before {
    content: "Mes ";
    color: var(--blue-900);
  }

  .admin-table td[data-label="Teléfono"] {
    display: none;
  }

  .admin-items-table tr {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: stretch;
    padding: 14px;
  }

  .admin-items-table td[data-label="Estado"] {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    width: fit-content;
    padding: 6px 10px;
    color: white;
    background: var(--blue-900);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .admin-items-table td[data-label="Acciones"] {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
  }

  .admin-items-table td[data-label="Tipo"],
  .admin-items-table td[data-label="Dato"],
  .admin-items-table td[data-label="Observación"] {
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;
  }

  .admin-items-table td[data-label="Tipo"]::before,
  .admin-items-table td[data-label="Dato"]::before,
  .admin-items-table td[data-label="Observación"]::before,
  .admin-items-table td[data-label="Alta"]::before {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .admin-items-table td[data-label="Tipo"]::before {
    content: "Tipo";
  }

  .admin-items-table td[data-label="Dato"]::before {
    content: "Dato";
  }

  .admin-items-table td[data-label="Observación"]::before {
    content: "Observación";
  }

  .admin-items-table td[data-label="Alta"] {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .admin-items-table td[data-label="Alta"]::before {
    content: "Alta";
    margin-right: 6px;
    display: inline;
  }

  .admin-items-table input,
  .admin-items-table select {
    min-height: 48px;
    border-radius: 18px;
  }

  .admin-items-table .admin-item-actions {
    margin: 0;
  }

  .admin-items-table .admin-item-actions .btn-secondary-action {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
  }

  .admin-table td[colspan] {
    grid-column: 1 / -1;
  }

  .admin-table td[colspan]::before {
    content: none;
  }

  .admin-pagination {
    display: grid;
    gap: 10px;
  }

  .admin-pagination > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .admin-pagination > div > span {
    order: -1;
    flex: 0 0 100%;
  }

  .admin-pagination > div > a {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-coverage-card {
    min-height: 118px;
    padding: 18px 12px;
    border-radius: 24px;
  }

  .coverage-symbol {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .protect-card {
    min-height: 0;
    padding: 22px 22px 22px 26px;
  }

  .protect-card::after {
    width: 110px;
    height: 110px;
    right: -52px;
    bottom: -48px;
  }

  .hero-panel,
  .contact-card {
    padding: 20px;
    border-radius: 26px;
  }

  .guide-step-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: 104px;
    margin-left: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .guide-step-number {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 1.18rem;
  }

  .guide-step-content strong {
    font-size: 1rem;
  }

  .guide-step-content p {
    font-size: 0.94rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .site-footer p {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .footer-brand,
  .footer-links {
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links strong {
    padding-bottom: 8px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .footer-links a,
  .footer-item {
    width: 100%;
    min-height: 36px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .footer-links > a:not(:has(svg)) {
    padding: 4px 0;
    font-size: 0.94rem;
  }

  .footer-links svg,
  .footer-item svg {
    margin-top: 2px;
  }

  .footer-social a {
    width: 100%;
    border-radius: 16px;
  }

  .footer-small-text {
    margin-top: 8px !important;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.88rem !important;
  }

  .footer-regulatory {
    background: rgba(255, 255, 255, 0.075);
    border-radius: 22px;
  }

  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 9px;
    align-items: start;
    line-height: 1.5;
  }

  .footer-credit {
    margin-top: 2px;
    justify-self: start;
    font-size: 0.94rem;
    text-align: left;
  }

  .admin-detail-heading {
    display: grid;
  }

  .admin-actions,
  .admin-summary-form {
    display: grid;
  }

  .admin-actions a,
  .admin-actions button,
  .admin-summary-form a,
  .admin-summary-form button,
  .admin-summary-form input {
    width: 100%;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    padding: 8px;
  }

  .floating-whatsapp::before {
    width: 45px;
    height: 45px;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }
}

@media (max-width: 380px) {
  .hero-coverage-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-centered h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
