/* Full-screen modal — MOSE square/editorial style (matches the Eventos page):
   sharp corners, black + white + magenta, Archivo uppercase CTA. */
.mose-geo{
  position:fixed; inset:0; z-index:100000;
  display:flex; align-items:center; justify-content:center; padding:20px;
  background:rgba(0,0,0,.5);
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  animation:mose-geo-fade .2s ease;
}
@keyframes mose-geo-fade{ from{ opacity:0; } to{ opacity:1; } }

.mose-geo__box{
  background:#fff; color:#000; border-radius:0;
  padding:40px 40px 30px; width:min(460px, 92vw); text-align:center;
  box-shadow:0 24px 70px rgba(0,0,0,.4);
  animation:mose-geo-pop .26s cubic-bezier(.2,.8,.25,1);
}
@keyframes mose-geo-pop{ from{ opacity:0; transform:translateY(12px); } to{ opacity:1; transform:none; } }

.mose-geo__t{ margin:0 0 26px; font-weight:700; font-size:20px; line-height:1.35; color:#000; }

.mose-geo__btns{ display:flex; flex-direction:column; align-items:center; gap:16px; }

/* Switch: square magenta block with the brand conveyor-belt texture (same moving
   diagonal stripes as the product CAT bar) — the site's signature animated fill. */
.mose-geo__switch{
  display:inline-block; color:#fff !important;
  text-decoration:none !important; border-radius:0;
  padding:15px 40px; font-family:"Archivo-SemiBold", Archivo, sans-serif;
  font-weight:700; font-size:14px; text-transform:uppercase; letter-spacing:.06em;
  background-color:#e6007e;
  background-image:linear-gradient(45deg,
    rgba(255,255,255,.30) 25%, transparent 25%, transparent 50%,
    rgba(255,255,255,.30) 50%, rgba(255,255,255,.30) 75%, transparent 75%);
  background-size:16px 16px;
  animation:mose-geo-belt .55s linear infinite;
  transition:transform .12s ease;
}
@keyframes mose-geo-belt{ from{ background-position:0 0; } to{ background-position:16px 0; } }
.mose-geo__switch:hover{ transform:translateY(-1px); animation-duration:.3s; }
.mose-geo__switch:active{ transform:translateY(0); }
@media (prefers-reduced-motion: reduce){ .mose-geo__switch{ animation:none; } }

/* Stay: bare uppercase text link — force-kill the theme's button box on every state */
.mose-geo__stay,
.mose-geo__stay:hover,
.mose-geo__stay:focus,
.mose-geo__stay:active{
  all:unset; cursor:pointer; display:inline;
  font-family:"Archivo-SemiBold", Archivo, sans-serif;
  font-size:12px; text-transform:uppercase; letter-spacing:.06em;
  background:transparent !important; box-shadow:none !important; outline:none !important;
  transition:color .15s ease;
}
.mose-geo__stay{ color:#8a8a8a !important; }
.mose-geo__stay:hover{ color:#000 !important; }
