:root {
  --ck-bg: #050505;
  --ck-bg-2: #0c0c0c;
  --ck-card: #111111;
  --ck-line: rgba(255, 255, 255, .08);
  --ck-lime: #c6ff2a;
  --ck-lime-dark: #9fd400;
  --ck-gold: #e4c15a;
  --ck-gold-2: #f3d98a;
  --ck-muted: #9aa09a;
  --ck-white: #f7f7f7;
}

.caktus-body {
  background: var(--ck-bg);
  color: var(--ck-white);
  font-family: Lexend, system-ui, sans-serif;
}

.caktus-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 1.25rem;
  background: #000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ck-line);
}

.caktus-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.caktus-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}
.caktus-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.caktus-brand-name strong {
  font-size: 1.05rem;
  letter-spacing: .04em;
}
.caktus-brand-name span {
  font-size: .62rem;
  color: var(--ck-gold);
  letter-spacing: .16em;
  margin-top: .15rem;
}

.caktus-menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.caktus-menu a {
  color: #d7d7d7;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.caktus-menu a.is-active,
.caktus-menu a:hover {
  color: var(--ck-lime);
}

.caktus-nav-actions,
.caktus-nav-end {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}
.caktus-bell {
  color: #fff;
  width: 38px;
  height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
}
.caktus-bell:hover { color: var(--ck-lime); }
.caktus-menu { flex: 1; justify-content: center; }
.caktus-menu-extra { display: none; }

.ck-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  padding: .7rem 1.15rem;
  min-height: 42px;
}
.ck-btn-lime {
  background: var(--ck-lime);
  color: #111;
}
.ck-btn-lime:hover { background: var(--ck-lime-dark); color: #111; }
.ck-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.ck-btn-ghost:hover { border-color: var(--ck-lime); color: var(--ck-lime); }
.ck-btn-lg { min-height: 48px; padding: .85rem 1.4rem; font-size: .92rem; }
.ck-btn-block { width: 100%; }

.caktus-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  color: #fff;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}
.caktus-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.caktus-tabbar { display: none; }

.caktus-hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 6vw 4rem;
  background:
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(198, 255, 42, .12), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(228, 193, 90, .1), transparent 50%),
    linear-gradient(160deg, #050505 0%, #0d1408 50%, #050505 100%);
}
.caktus-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -28deg,
    transparent 0 42px,
    rgba(198, 255, 42, .035) 42px 43px
  );
}

.caktus-hero-copy { position: relative; z-index: 1; max-width: 34rem; }
.caktus-kicker {
  color: var(--ck-gold);
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 700;
  margin: 0 0 .85rem;
}
.caktus-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 1rem;
}
.caktus-hero h1 em {
  color: var(--ck-lime);
  font-style: normal;
}
.caktus-hero p {
  color: var(--ck-muted);
  margin: 0 0 1.4rem;
  font-size: 1.02rem;
}
.caktus-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.caktus-hero-prize {
  position: relative;
  z-index: 1;
  text-align: center;
}
.caktus-hero-prize .gold {
  color: var(--ck-gold);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .85rem;
  margin-bottom: .35rem;
}
.caktus-hero-prize strong {
  display: block;
  color: var(--ck-gold-2);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: .2rem;
}
.caktus-hero-prize .gold-em {
  color: var(--ck-gold);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: .85rem;
}
.caktus-hero-prize img {
  width: min(100%, 520px);
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
}
.caktus-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
  z-index: 2;
}
.caktus-hero-dots span {
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}
.caktus-hero-dots span.is-on { background: var(--ck-lime); }

.caktus-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.4rem 6vw;
  border-top: 1px solid var(--ck-line);
  border-bottom: 1px solid var(--ck-line);
  background: #080808;
}
.caktus-trust article {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .85rem .9rem;
  border: 1px solid rgba(228, 193, 90, .18);
  border-radius: 14px;
  background: #0e0e0e;
}
.caktus-trust i {
  color: var(--ck-lime);
  font-size: 1.35rem;
}
.caktus-trust h3 {
  margin: 0 0 .2rem;
  font-size: .78rem;
  letter-spacing: .08em;
}
.caktus-trust p {
  margin: 0;
  color: var(--ck-muted);
  font-size: .78rem;
}

.caktus-section {
  padding: 3rem 6vw;
}
.caktus-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.caktus-section-head h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.caktus-section-head h2 em {
  color: var(--ck-lime);
  font-style: normal;
}
.caktus-section-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.caktus-section-head a {
  color: var(--ck-lime);
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
}

.caktus-bingo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.caktus-bingo {
  background: var(--ck-card);
  border: 1px solid var(--ck-line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.caktus-bingo-media {
  position: relative;
  background: #161616;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caktus-bingo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caktus-badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  border-radius: 999px;
  padding: .22rem .6rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.caktus-badge.is-ok { background: var(--ck-lime); color: #111; }
.caktus-badge.is-off { background: #5a1d1d; color: #ffb4b4; }
.caktus-bingo-body { padding: 1rem 1rem 1.1rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.caktus-bingo-head { padding-bottom: .35rem; }
.caktus-bingo-body h3 { margin: 0; font-size: 1rem; }
.caktus-bingo-date { color: var(--ck-muted); font-size: .78rem; }
.caktus-bingo-prize { color: var(--ck-gold); font-size: 1.05rem; font-weight: 800; margin: .1rem 0; }
.caktus-bingo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .7rem;
  background: #0a0a0a;
  border-radius: 10px;
  padding: .55rem .65rem;
  margin: .15rem 0 .45rem;
}
.caktus-bingo-meta span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: #ddd;
  line-height: 1.25;
}
.caktus-bingo-meta i { color: var(--ck-lime); }

.caktus-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.caktus-video {
  background: var(--ck-card);
  border: 1px solid var(--ck-line);
  border-radius: 16px;
  overflow: hidden;
}
.caktus-video h3 {
  margin: 0;
  padding: .8rem 1rem 0;
  font-size: .9rem;
}
.caktus-video p {
  margin: 0;
  padding: .35rem 1rem 1rem;
  color: var(--ck-muted);
  font-size: .8rem;
}

.caktus-results {
  background: #080808;
}
.caktus-results .container-resultado,
.caktus-results .h1-responsive,
.caktus-results h1,
.caktus-results h5 {
  color: #fff;
}
.caktus-results .text-secondary { color: var(--ck-muted) !important; }

.caktus-cta {
  margin: 0 6vw 2rem;
  padding: 1.5rem 1.6rem;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(198,255,42,.12), rgba(12,12,12,.9) 42%, #111);
  border: 1px solid rgba(198,255,42,.2);
  display: grid;
  grid-template-columns: auto 1.2fr 1.2fr auto;
  gap: 1.2rem;
  align-items: center;
}
.caktus-cta-cactus {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
}
.caktus-cta h2 {
  margin: 0 0 .35rem;
  font-size: 1.35rem;
}
.caktus-cta h2 em { color: var(--ck-lime); font-style: normal; }
.caktus-cta-note {
  margin: 0;
  color: var(--ck-lime);
  font-weight: 700;
}
.caktus-cta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d0d0d0;
  font-size: .88rem;
}
.caktus-cta li { margin: .25rem 0; }
.caktus-cta small { display: block; margin-top: .45rem; color: var(--ck-muted); text-align: center; }
.caktus-cta small a { color: var(--ck-lime); }

.caktus-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 6vw 2.4rem;
  text-align: center;
}
.caktus-values i {
  display: block;
  color: var(--ck-lime);
  font-size: 1.7rem;
  margin-bottom: .4rem;
}
.caktus-values span {
  color: #d8d8d8;
  font-size: .78rem;
  line-height: 1.3;
}

.caktus-contact {
  padding-bottom: 3rem;
}
.caktus-contact .card {
  background: var(--ck-card);
  color: #eee;
  border: 1px solid var(--ck-line);
}
.caktus-contact .card-header { background: #171717; color: #fff; border-color: var(--ck-line); }
.caktus-contact .form-control {
  background: #0b0b0b;
  border-color: #2a2a2a;
  color: #fff;
}
.caktus-contact .text-mms, .caktus-contact p, .caktus-contact label { color: #d8d8d8; }
.caktus-contact .bg-mms, .caktus-contact .btn-primary {
  background: var(--ck-lime) !important;
  border-color: var(--ck-lime) !important;
  color: #111 !important;
}

.caktus-footer {
  background: #000;
  border-top: 1px solid var(--ck-line);
  padding: 2.2rem 6vw 1.4rem;
  color: #cfcfcf;
}
.caktus-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.4rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.caktus-footer-nav a {
  color: #ddd;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
}
.caktus-footer-nav a:hover { color: var(--ck-lime); }
.caktus-footer-legal {
  font-size: .75rem;
  line-height: 1.5;
  color: #9a9a9a;
  max-width: 920px;
  margin: 0 auto 1rem;
  text-align: justify;
}
.caktus-footer-social {
  display: flex;
  justify-content: center;
  gap: .8rem;
  font-size: 1.35rem;
}
.caktus-footer-social a { color: var(--ck-lime); }
.caktus-body .mt-96 {
  margin-top: 0 !important;
  padding-top: 1.25rem;
}

@media (max-width: 1100px) {
  .caktus-bingo-grid, .caktus-videos, .caktus-trust { grid-template-columns: 1fr 1fr; }
  .caktus-cta { grid-template-columns: auto 1fr; text-align: left; }
  .caktus-cta ul, .caktus-cta-action { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .caktus-body {
    padding-bottom: calc(4.7rem + env(safe-area-inset-bottom));
  }

  .caktus-nav {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    grid-template-areas:
      "toggle brand end"
      "menu menu menu";
    align-items: center;
    gap: .35rem .45rem;
    padding: .45rem .7rem;
    background: #000;
  }
  .caktus-toggle {
    display: inline-flex;
    grid-area: toggle;
  }
  .caktus-brand {
    grid-area: brand;
    justify-self: center;
    gap: .4rem;
  }
  .caktus-brand img {
    width: 36px;
    height: 36px;
  }
  .caktus-brand-name strong {
    font-size: .82rem;
    letter-spacing: .08em;
  }
  .caktus-brand-name span {
    font-size: .52rem;
    letter-spacing: .12em;
  }
  .caktus-nav-end { grid-area: end; }
  .caktus-bell { display: inline-flex; }
  .ck-btn-criar-desk { display: none !important; }
  .ck-btn-entrar {
    border-radius: 10px;
    min-height: 34px;
    padding: .35rem .75rem;
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .caktus-menu,
  .caktus-nav-actions {
    display: none;
  }
  .caktus-nav.is-open .caktus-menu {
    display: flex;
    grid-area: menu;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .55rem 0 .2rem;
    border-top: 1px solid var(--ck-line);
  }
  .caktus-nav.is-open .caktus-menu a {
    display: block;
    padding: .65rem .2rem;
    font-size: .82rem;
  }
  .caktus-menu-extra { display: list-item; }

  .caktus-tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: #000;
    border-top: 1px solid var(--ck-line);
    padding: .45rem 0 calc(.4rem + env(safe-area-inset-bottom));
  }
  .caktus-tabbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .12rem;
    color: #cfcfcf;
    text-decoration: none;
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    line-height: 1.1;
  }
  .caktus-tabbar i { font-size: 1.15rem; }
  .caktus-tabbar a.is-active { color: var(--ck-lime); }

  .caktus-hero {
    grid-template-columns: 1.15fr .85fr;
    min-height: 0;
    gap: .7rem;
    padding: 1rem .9rem 2.1rem;
    align-items: start;
  }
  .caktus-hero-copy { max-width: none; }
  .caktus-kicker { display: none; }
  .caktus-hero-extra { display: none; }
  .caktus-hero h1 {
    font-size: 1.12rem;
    margin-bottom: .5rem;
  }
  .caktus-hero p {
    font-size: .72rem;
    margin-bottom: .75rem;
    line-height: 1.35;
  }
  .caktus-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .45rem;
  }
  .caktus-hero-actions .ck-btn {
    width: 100%;
    border-radius: 10px;
    min-height: 40px;
    padding: .55rem .8rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .caktus-hero-prize .gold,
  .caktus-hero-prize .gold-em {
    font-size: .58rem;
    letter-spacing: .06em;
  }
  .caktus-hero-prize strong {
    font-size: .95rem;
    margin-bottom: .15rem;
  }
  .caktus-hero-prize img {
    max-height: 150px;
    width: 100%;
  }
  .caktus-hero-dots { bottom: .7rem; }

  .caktus-trust {
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    padding: .9rem;
  }
  .caktus-trust article {
    border-color: rgba(198, 255, 42, .22);
    border-radius: 12px;
    padding: .7rem .65rem;
    gap: .5rem;
    align-items: center;
  }
  .caktus-trust i { font-size: 1.15rem; }
  .caktus-trust h3 { font-size: .62rem; }
  .caktus-trust p { font-size: .62rem; line-height: 1.25; }

  .caktus-section { padding: 1.5rem .9rem; }
  .caktus-section-head {
    align-items: center;
    margin-bottom: 1rem;
  }
  .caktus-section-head h2 { font-size: 1.02rem; }
  .caktus-section-head a { font-size: .68rem; white-space: nowrap; }

  .caktus-bingo-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: .85rem;
    scroll-snap-type: x mandatory;
    padding-bottom: .35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .caktus-bingo-grid::-webkit-scrollbar { display: none; }
  }
  .caktus-bingo {
    flex: 0 0 78vw;
    max-width: 320px;
    scroll-snap-align: start;
    border-radius: 14px;
    border: 1px solid rgba(198, 255, 42, .22);
  }
  .caktus-bingo-media .caktus-badge { display: none; }
  .caktus-bingo-head { padding: .75rem .85rem 0; }
  .caktus-bingo-body h3 { font-size: .88rem; }
  .caktus-bingo .ck-btn { border-radius: 10px; text-transform: uppercase; }

  .caktus-videos { grid-template-columns: 1fr; }

  .caktus-cta {
    margin: 0 .9rem 1.2rem;
    padding: 1rem;
    grid-template-columns: auto 1fr;
    text-align: left;
    border-radius: 14px;
  }
  .caktus-cta ul { display: none; }
  .caktus-cta-action { grid-column: 1 / -1; }
  .caktus-cta h2 { font-size: 1.05rem; }
  .caktus-cta-cactus { width: 64px; height: 64px; }
  .caktus-cta .ck-btn { border-radius: 10px; text-transform: uppercase; }

  .caktus-values {
    grid-template-columns: repeat(4, 1fr);
    gap: .35rem;
    padding: 0 .7rem 1.4rem;
  }
  .caktus-values i { font-size: 1.25rem; }
  .caktus-values span { font-size: .58rem; }

  .caktus-contact { padding-bottom: 1.2rem; }
  .caktus-footer {
    padding: 1.6rem .9rem calc(1.2rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .caktus-hero {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .caktus-hero-prize { order: -1; }
  .caktus-tabbar a { font-size: .48rem; }
}
