html, body { max-width: 100%; overflow-x: hidden; }


@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-Bold.woff') format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-Regular.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-Light.woff') format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('../fonts/Aeonik-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('../fonts/Aeonik-RegularItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('../fonts/Aeonik-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('../fonts/Aeonik-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('../fonts/Aeonik-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aeonik;
  src: url('../fonts/Aeonik-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Ppmondwest;
  src: url('../fonts/PPMondwest-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ppmondwest;
  src: url('../fonts/PPMondwest-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  background-color: #0000;
  font-family: Ppneuemontreal, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
  line-height: 1;
}

a {
  text-decoration: none;
}

.page-inner {
  grid-column-gap: 7.5rem;
  grid-row-gap: 7.5rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.hero {
  background-image: url('../images/hero.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  position: relative;
}

.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay; /* 💡 combina visualmente con el fondo */
  opacity: 1;            /* más visual, sin cubrir */
  pointer-events: none;     /* no interfiere con los clics */
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #fff;
  letter-spacing: .12px;
  border: 1px solid #fff;
  border-radius: 4rem;
  justify-content: center;
  align-items: center;
  padding: .875rem 2.25rem;
  font-family: Ppmondwest, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.hero .shine {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  opacity: 0;
  animation: shineFade 3s infinite ease-in-out;
}

@keyframes shineFade {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

.hola-fade {
  opacity: 0;
  transform: translateY(-60px);
}

.scroll-btn {
  margin-top: 24px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
  animation: floatPulse 2.5s infinite ease-in-out;
}

.scroll-btn:hover {
  transform: scale(1.05) translateY(-3px);
  color: #ff9df8;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.text_section {
  height: 380px; /* 🔽 Más bajo para acercar el texto al borde superior */
  background: linear-gradient(to bottom, #ff5cab, #ffa9cc);
  display: flex;
  justify-content: center;
  align-items: flex-start;  /* 👈 Alinea el contenido arriba */
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  overflow: hidden;
}

.text-center-wrap {
  width: 100%;
  text-align: center;
}

.content-text.venue-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  flex-wrap: nowrap; /* keeps icons on the same line */
  
  font-family: 'Dancing Script', cursive;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 0;
  margin-top: -155px; /* original offset */
  
  /* Fluid font sizing between 14px and 24px depending on screen width */
  font-size: clamp(14px, 2.5vw, 24px);
}

.content-text.venue-location i {
  font-size: 0.9em;
  flex-shrink: 0; /* prevents icons from shrinking */
}

/* center the text block and allow wrapping */
.venue-address{
  text-align: center;
  white-space: normal;
}

.no-link-blue {
  text-decoration: none;
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px){
  .content-text.venue-location{
    font-size: 1.4rem;        /* smaller type on phones */
    margin-top: -24px;        /* gentler offset on phones */
    column-gap: 6px;
  }
  .content-text.venue-location i{
    font-size: 1em;
  }
}


.padding-section-medium {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.about-main-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: auto;
  text-align: center;
}


html:not(.w-editor) [data-text-split] {
visibility: hidden;
}
.content-text .word {
  display: inline-flex; /* Helps align characters properly */
  flex-wrap: nowrap;    /* Prevents breaking */
}
.content-text .char {
  display: inline-block; /* Ensures characters animate properly */
}

.footer {
  color: #fff;
  background-image: linear-gradient(#000000, #9b6ce5);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 14.625rem 2rem 1.5rem;
  font-family: Ppmondwest, Arial, sans-serif;
  display: flex;
}

.footer.black {
  opacity: .5;
  color: #e3e1de;
  font-family: Ppmondwest, Arial, sans-serif;
}

.footer.white {
  opacity: .5;
}

.footer-link {
  color: #fff;
  font-family: Exo, sans-serif;
  font-size: .75rem;
  font-weight: 500;
}

.footer-link.white {
  opacity: .5;
  color: #fff;
}

.body-black {
  color: #e3e1de;
  background-color: #f4e6cd;
}

.home-hero-marquee_item {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  backface-visibility: hidden;
  transition-property: transform opacity;
  background-color: #0000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.btn-wrap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.btn-wrap.hide-desk {
  display: none;
}

.heading_text {
  color: #0a0a0a;
  letter-spacing: -2px;
  font-size: 6rem;
  line-height: 1;
}

.heading_text.white {
  color: #fff;
  text-align: center;
  font-family: Great Vibes, cursive;
  font-size: 12rem;
  font-weight: 500;
}

.social-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: #000;
  flex-flow: row;
  font-family: Exo, sans-serif;
  display: flex;
}

.heading-wrap {
  text-align: center;
}

.social-link {
  color: #fff;
  font-size: .75rem;
}

.social-link.black {
  color: #fff;
}

.hide {
  display: none;
}

.footer-text {
  color: #fff;
  font-family: Exo, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.3;
}

.cta_arrow-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ar_1, .ar_2 {
  position: absolute;
  inset: 0%;
}

.text-wrap {
  position: relative;
  overflow: hidden;
}

.nav {
  z-index: 9999;
  position: relative;
}

.grid {
  background-image: linear-gradient(#9b6ce5, #000000);  
  min-height: 100svh;
  padding: 5rem 2%;
}

.grid_wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.grid_card {
  border-radius: 32px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 684px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid_card.card_1 {
  background-image: url('../images/hacienda1.webp');
  background-position: 50%;
  border: #fff solid 4px;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  min-height: 616px;
}

.grid_card.card_2 {
  background-image: url('../images/hacienda2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  border: #fff solid 4px;
  background-size: cover;
  flex: 1;
  min-height: 756px;
}

.grid_card.card_3 {
  background-image: url('../images/hacienda3.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  border: #fff solid 4px;
  background-size: cover;
  min-height: 756px;
}

.grid_card.card_4 {
  background-image: url('../images/hacienda4.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  border: #fff solid 4px;
  background-size: cover;
  min-height: 616px;
}

.grid_text-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #fff;
  flex-flow: column;
  font-family: Ppmondwest, Arial, sans-serif;
  display: flex;
}

.card_inner-flex {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.card_inner-flex._1 {
  min-height: 752px;
}

.card_inner-flex._2.hide-desk, .card_inner-flex.hide-desk {
  display: none;
}

.card_heading {
  color: #fff;
  font-family: Great Vibes, cursive;
  font-size: 2.25rem;
  line-height: 1.2;
}

.card_para {
  color: #fff;
  font-family: Aeonik, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.text_24 {
  color: #fff;
  letter-spacing: -.3px;
  font-family: Exo, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.text_section {
  color: #fff;
  background-image: linear-gradient(#ff4598, #fff);
  min-height: 88.75rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.container-large.cc-large {
  max-width: 90rem;
}

.content-text {
  color: #fff;
  text-align: center;
  letter-spacing: -0.9px;
  width: 100%;
  font-family: Great Vibes, cursive;
  font-size: 8.5rem;
  font-weight: 500;
  line-height: 1;
}

.about_text-wrap {
  z-index: 1;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 60rem;
  display: flex;
  position: relative;
}

.about-main-wrap {
  color: #fff;
  justify-content: center;
  align-items: center;
  padding-top: 22.5rem;
  padding-bottom: 22.5rem;
  display: flex;
  position: relative;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.padding-global.padding-section-medium {
  color: #fff;
}

.left-wrap {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  flex-flow: column;
  display: flex;
}

.card_para-wrap {
  max-width: 28rem;
}

.card_para-wrap.cc-35 {
  max-width: 35rem;
}

.card_para-wrap.cc-32 {
  max-width: 32rem;
}

.right_wrap {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  flex-flow: column;
  display: flex;
}

.fotter-bottom {
  color: #000;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.footer_text-wrap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 15.5rem;
  display: flex;
}

.footer_heading {
  color: #fff;
  letter-spacing: -5px;
  font-family: Great Vibes, cursive;
  font-size: 12rem;
  font-weight: 500;
  line-height: 1;
}

.footer_para {
  color: #fff;
  text-align: center;
  max-width: 45rem;
  font-family: Ppneuemontreal, Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.icon-embed-custom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.3125rem;
  height: 1.25rem;
  display: flex;
}

.nav_border {
  background-image: linear-gradient(90deg, #25203000, #0a0a0a80 50%, #25203000);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto auto 0%;
}

.nav_border.white {
  background-image: linear-gradient(90deg, #fff0, #ffffff80 50%, #fff0);
}

.navigation {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding: 2rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation-button {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: #e3e1de;
  background-color: #161616;
  border: 1px solid #fff;
  border-radius: 6.25rem;
  justify-content: space-between;
  align-items: center;
  padding: .875rem 1.84375rem;
  font-family: Ppmondwest, Arial, sans-serif;
  font-size: 1.25rem;
  display: flex;
}

.navigation-button.no-bg {
  background-color: #0000;
  padding-left: 1.53125rem;
  padding-right: 1.53125rem;
}

.navigation-button.no-bg.hide-mobile.hide {
  display: none;
}

.navigation-button.white {
  color: #0a0a0a;
  background-color: #fff;
}

.navigation_buttons-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-wrap-2 {
  position: relative;
  overflow: hidden;
}

.code-embed-2 {
  width: 1.5rem;
  margin-bottom: -12px;
}

.text-block {
  color: #fff;
  font-family: Exo, sans-serif;
  font-weight: 500;
}

.text-block-2 {
  color: #000;
  font-weight: 500;
}

.background-video {
  display: block;
  position: relative;
  overflow: visible;
}

@media screen and (max-width: 991px) {
  .button {
    font-size: 1rem;
  }

  .heading_text.white {
    font-size: 8rem;
  }

  .grid_wrapper {
    flex-flow: column;
  }

  .card_inner-flex._2.hide-desk {
    display: flex;
  }

  .card_inner-flex.hide-tablet {
    display: none;
  }

  .card_inner-flex.hide-desk {
    display: flex;
  }

  .text_section {
    min-height: 50rem;
  }

  .content-text {
    font-size: 4rem;
  }

  .about-main-wrap {
    padding-top: 10rem;
    padding-bottom: 15rem;
  }

  .left-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .card_para-wrap, .card_para-wrap.cc-35, .card_para-wrap.cc-32 {
    max-width: none;
  }

  .right_wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .footer_heading {
    font-size: 8rem;
  }
}

@media screen and (max-width: 767px) {
  .button {
    font-size: .8rem;
  }

  .footer {
    padding-top: 4rem;
  }

  .btn-wrap.hide-desk {
    display: flex;
  }

  .heading_text.white {
    font-size: 5rem;
  }

  .grid_card.card_1, .grid_card.card_2, .grid_card.card_3, .grid_card.card_4 {
    width: auto;
  }

  .content-text {
    text-align: center;
    font-size: 3rem;
  }

  .about-main-wrap {
    padding-bottom: 10rem;
  }

  .fotter-bottom {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
  }

  .footer_text-wrap {
    padding-bottom: 5rem;
  }

  .footer_heading {
    font-size: 5rem;
  }

  .navigation {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    height: auto;
    padding-left: 5%;
    padding-right: 5%;
  }

  .navigation-button.no-bg.hide-mobile {
    display: none;
  }

  .navigation-button.no-bg.hide-mobile.show {
    display: flex;
  }

  .navigation-button.white {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: center;
    padding: .5rem 1rem;
  }

  .text-wrap-2 {
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  .button {
    padding-top: .8rem;
    padding-bottom: .8rem;
    font-size: .7rem;
  }

  .footer {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
  }

  .heading_text.white {
    letter-spacing: normal;
    font-size: 7rem;
  }

  .grid_card.card_1 {
    background-position: 15%;
  }

  .grid_card.card_3 {
    background-position: 10%;
  }

  .grid_card.card_4 {
    background-position: 80%;
    background-size: cover;
  }

  .card_heading {
    font-size: 2rem;
  }

  .text_section {
    min-height: 0;
  }

  .content-text {
    letter-spacing: normal;
    font-size: 1.5rem;
  }

  .about_text-wrap {
    flex-flow: wrap;
    display: flex;
  }

  .footer_heading {
    text-align: center;
    letter-spacing: normal;
    font-size: 3rem;
  }

  .footer_para {
    font-size: 1rem;
  }

  .navigation {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .navigation-button {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .navigation-button.white {
    display: flex;
  }

  .navigation_buttons-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    align-items: stretch;
  }
}


@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/Aeonik-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ppmondwest';
  src: url('../fonts/PPMondwest-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppmondwest';
  src: url('../fonts/PPMondwest-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.empezar-btn {
  display: inline-block;
  padding: 15px 30px;  
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff94c6 0%, #dd24be 100%);  
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.empezar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.empezar-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.code-gate {
  position: fixed; inset: 0; z-index: 99999;
  display: grid; place-items: center;
  background: rgba(10, 6, 18, .65);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  backdrop-filter: blur(4px) saturate(120%);
}

.code-gate[hidden] { display: none !important; }

.gate-card {
  width: min(92vw, 520px);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #ff9ce3 0%, #8a5bff 100%);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08) inset;
  transform: translateY(8px) scale(.98);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}

.code-gate.show .gate-card { opacity: 1; transform: translateY(0) scale(1); }

.gate-head {
  display: flex;
  flex-direction: column;       /* Stack icon and text vertically */
  align-items: center;          /* Center horizontally */
  justify-content: center;      /* Center vertically if needed */
  gap: 10px;
  text-align: center;           /* Center text lines */
  font: 800 20px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  letter-spacing: .2px;
}

.gate-sub {
  margin: 8px 0 14px; opacity: .9; font-weight: 500;
  text-align: center;
}

.gate-form { display: grid; gap: 10px; }
.gate-input-wrap { position: relative; }
.gate-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  text-align: center;
  border: none;
  outline: none;
  font: 700 16px/1.1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1a1026;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.20);
}

.gate-actions {
  display: block; /* Only one button */
}

.gate-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 16px;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

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

.gate-btn.primary {
  background: linear-gradient(135deg, #ff9ce3 0%, #8a5bff 100%);
  border: #fff solid 2px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.gate-btn.primary:hover {
  box-shadow: 0 0 12px rgba(255,122,217,0.7),
              0 0 24px rgba(138,91,255,0.6);
  border: #e6e6e6 solid 2px;
}

.gate-btn.ghost {
  background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}

.gate-msg { min-height: 18px; font-size: 13px; }
.gate-msg.ok { 
  color: #fff; 
  text-align: center;
  display: block;
  padding: 6px 6px;
  margin: 0 auto;
  font-weight: 600;
  width: 120px;
  border-radius: 2rem;
  background: #008b01;
  justify-content: center;

}
.gate-msg.err { 
  color: #fff; 
  text-align: center;
  display: block;
  padding: 6px 6px;
  margin: 0 auto;
  font-weight: 600;
  width: 150px;
  border-radius: 2rem;
  background: #df002d;
  justify-content: center;
}

.gate-mini{
  margin:10px 2px 0;
  font-size:14px;
  text-align:center;
  opacity:.9;
}
.gate-mini a{
  color:#fff; font-weight:800; text-decoration:underline;
}

.gate-final{
  margin-top:8px;
  display:flex; gap:8px; justify-content:center; align-items:center;
}
.gate-final-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  border: #fff solid 2px;           
  outline: none;
  background-clip: padding-box;
  cursor: pointer;
  font-weight: 800;
  margin-top: 25px;
  font-size: 15px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff9ce3 0%, #8a5bff 100%);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: all .2s ease-in-out;
  width: 100%;
  text-align: center;
}

.gate-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35),
              0 0 14px rgba(255,122,217,0.7),
              0 0 24px rgba(138,91,255,0.6);
}

.gate-final-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}


/* NEW: visual pill for the final code in the afterparty popup */
.final-code{
  margin:10px auto 8px;
  padding:12px 16px;
  border-radius:12px;
  background:#fff; color:#1a1026;
  font: 900 18px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing:.14em; text-align:center; text-transform:uppercase;
  width:180px;
  box-shadow:0 6px 20px rgba(0,0,0,.20);
}

/* Shake on error */
@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.gate-card.shake { animation: gateShake .32s ease; }

/* Prevent page scroll while gate open */
body.gate-locked { overflow: hidden; }


.afterparty-map {
  padding: 2rem 1rem;
  text-align: center;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.event-info {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.event-info li strong {
  font-weight: 700;
  color: #fff;
}

.event-info li::before {
  font-size: 18px;
}

/* ===== Important Notice (popup) ===== */
.notice-btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:12px;
  border: #fff solid 2px;
  font-weight:800;
  margin-top: 15px;
  letter-spacing:.3px;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(135deg,#ffb700 0%,#ffb700 100%);
  box-shadow:0 8px 24px rgba(0,0,0,.25);
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.notice-btn:hover{ transform:translateY(-1px); box-shadow:0 12px 28px rgba(0,0,0,.3); }
.notice-btn:active{ transform:translateY(1px); }

/* Overlay */
.notice-overlay{
  position:fixed; inset:0; z-index:99998;
  display:grid; place-items:center;
  background:rgba(10,6,18,.55);
  -webkit-backdrop-filter:blur(4px) saturate(120%);
  backdrop-filter:blur(4px) saturate(120%);
  opacity:0; transform:translateY(6px) scale(.985);
  transition:opacity .2s ease, transform .2s ease;
}
.notice-overlay[hidden]{ display:none !important; }
.notice-overlay.show{ opacity:1; transform:translateY(0) scale(1); }

/* Card */
.notice-card{
  width:min(92vw,560px);
  border-radius:16px;
  padding:20px 18px 16px;
  color:#fff;
  background:linear-gradient(135deg,#ff9ce3 0%,#8a5bff 100%);
  box-shadow:0 18px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08) inset;
  position:relative;
}

/* Close “X” */
.notice-close{
  position:absolute; top:10px; right:10px;
  width:36px; height:36px; border-radius:2rem;
  border:none; background:rgba(255,255,255,.18);
  color:#fff; font-size:22px; line-height:1;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,.22);
}
.notice-close:hover{ background:rgba(255,255,255,.28); }

/* Header */
.notice-head{
  display:flex; align-items:center; gap:10px; justify-content:center;
  margin:4px 0 10px;
  text-align:center;
}
.notice-head .fa{ font-size:20px; }
.notice-head h3{
  margin:0; font:800 20px/1.2 system-ui,-apple-system,"Segoe UI",Roboto,Arial;
}

/* List as rounded “cards” */
.notice-list{
  list-style:none; padding:0; margin:0 0 10px 0;
  display:flex; flex-direction:column; gap:10px;
}
.notice-list li{
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  box-shadow:0 6px 16px rgba(0,0,0,.22);
  font-size:15px; font-weight:500;
}
.notice-list li strong{ color:#fff; }

/* Footer button */
.notice-actions{ display:flex; justify-content:center; margin-top:6px; }
.notice-ok{
  padding:12px 18px;
  border-radius:12px;
  border: #fff solid 2px;
  font-weight:800; letter-spacing:.3px; text-transform:uppercase;
  color:#fff;
  background:linear-gradient(135deg,#ff99e2 0%,#8a5bff 100%);
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
}
.notice-ok:hover{ transform:translateY(-1px); box-shadow:0 12px 26px rgba(0,0,0,.32); }
.notice-ok:active{ transform:translateY(1px); }

/* Prevent scroll when open (optional) */
body.notice-locked{ overflow:hidden; }

.important-item {
  display: flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  padding: 10px 14px;
  margin: 6px 0; /* reduced vertical margin */
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px;
  line-height: 1.3;
}

.important-item i {
  flex-shrink: 0;
  font-size: 16px;
}

.important-item strong {
  font-weight: 700;
}


/* ===== Countdown ===== */
.event-countdown{
  margin: 12px auto 10px;
  padding: 12px 14px;
  border: 2px solid #fff;
  margin-top: 25px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,122,217,.18), rgba(138,91,255,.18));
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  backdrop-filter: blur(6px) saturate(150%);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  width: max-content;
  max-width: 92vw;
  text-align: center;
}

.event-countdown .cd-title{
  font: 800 14px/1.1 system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  letter-spacing: .3px;
  opacity: .95;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cd-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 8px;
}

.cd-box{
  padding: 10px 10px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), 0 6px 18px rgba(0,0,0,.18);
}

.cd-box span{
  display: block;
  font: 900 24px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .06em;
}

.cd-box small{
  display: block;
  margin-top: 4px;
  font: 700 11px/1.1 system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  text-transform: uppercase;
  opacity: .9;
}

/* 3D headline when it’s the day or after */
.cd-3d{
  display: inline-block;
  font: 900 clamp(28px, 6vw, 46px)/1.05 "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  border: 2px solid #fff;
  background: linear-gradient(135deg, rgba(255,122,217,.22), rgba(138,91,255,.22));
  box-shadow:
    0 10px 28px rgba(0,0,0,.28),
    0 1px 0 #fff inset;
  text-shadow:
    0 1px 0 rgba(0,0,0,.3),
    0 2px 0 rgba(0,0,0,.25),
    0 3px 0 rgba(0,0,0,.2),
    0 6px 14px rgba(0,0,0,.35),
    0 0 16px rgba(255,255,255,.35);
}

/* Responsive tweaks */
@media (max-width: 540px){
  .cd-grid{ gap:6px; }
  .cd-box{ padding: 9px 8px 7px; }
  .cd-box span{ font-size: 20px; }
  .event-countdown{ padding: 10px 12px; }
}


#site-audio { position: fixed; z-index: 9999; left: 16px; bottom: 16px; }
#site-audio audio { display:none; }
.bgm-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; cursor: pointer; font: 700 16px/1 system-ui,Arial;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  background: linear-gradient(135deg,#8a5bff,#ff7ad9);
  color: #fff; transition: transform .12s ease, opacity .2s ease;
}
.bgm-toggle:hover { transform: scale(1.06); }
.bgm-toggle.is-on { outline: 3px solid rgba(255,255,255,.65); }

 /* 2) Fixed host anchored at the corner via transform (no layout push) */
  #site-wa{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;           /* host doesn't catch clicks */
    transform: translate(-16px, -16px);
  }
  @media (max-width: 480px){
    #site-wa{ transform: translate(-12px, -12px); }
  }

  /* 3) The actual button (clickable) */
  #site-wa .wa-float{
    pointer-events: auto;
    display: grid; place-items: center;

    width: 40px; height: 40px; border-radius: 50%;
    text-decoration: none; margin: 0 !important; border: 0;

    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff;

    /* permanent outline — exactly as requested */
    outline: 3px solid rgba(255,255,255,.65) !important;
    outline-offset: 0;

    box-shadow: 0 8px 20px rgba(0,0,0,.25);

    /* make sure it can’t create layout jitter */
    transform: translate3d(0,0,0);
    transform-origin: center;
    contain: paint;
    will-change: transform;

    transition: transform .12s ease, opacity .2s ease;
  }
  #site-wa .wa-float:hover,
  #site-wa .wa-float:focus-visible{
    transform: translate3d(0,0,0) scale(1.06);
    /* keep same outline on hover/focus */
    outline: 3px solid rgba(255,255,255,.65) !important;
    outline-offset: 0;
  }

  #site-wa .wa-float i{
    font-size: 20px; line-height: 1;
  }
  
    
/* Venue location block */
.venue-location{
  display:flex;
  flex-direction:column;
  align-items:center;           /* centers both lines */
  gap:4px;
}

/* Address line (with icons) */
.address-line{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
}

/* Address text link */
.address-link{
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

/* Small, centered "Abrir en Google Maps" link below */
.gmaps-link{
  font-size:14px;               /* smaller than address */
  color:#fff;
  text-decoration:underline;
  text-underline-offset:2px;
  opacity:.9;
}
.gmaps-link:hover{ opacity:1; }


/* clickable stack: address on top, CTA below */
.venue-map-link{
  display:inline-flex; flex-direction:column; align-items:flex-start;
  gap:2px; text-decoration:none; color:inherit; line-height:1.15;
}

/* keep your existing address look (inherits color) */
.venue-map-link .venue-address{ font-weight:600; }

/* smaller, underlined CTA below */
.venue-map-link .map-cta{
  font-size:.85em; font-weight:600;
  text-decoration:underline; text-underline-offset:2px;
  opacity:.95; display:block;
}

/* optional: underline gets a touch stronger on hover/focus */
.venue-map-link:hover .map-cta,
.venue-map-link:focus-visible .map-cta{ text-decoration:underline; opacity:1; }


