body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  text-align: center;
  min-height: 100vh;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 100px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: center;
  gap: 45px;
}

nav a {
  display: flex;
  flex-direction: column;
  /* Acomoda el ícono arriba del texto */
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 991.98px) {

  /* Aplica en móviles y tabletas */
  .navbar-nav {
    text-align: right;
    /* Centrar texto */
    width: 100%;
    /* Ocupar todo el ancho */
  }

  .nav-item {
    width: 100%;
    /* Asegurar que los elementos ocupen todo el ancho */
  }

  .subscribe {
    display: none !important;
  }

  .follow {
    display: none !important;
  }
}

.nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item a:hover {
  transform: scale(1.2);
  color: #ffd700;
}

.nav-item a i {
  font-size: 24px;
  margin-bottom: 5px;
  color: #000000;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item a:hover i {
  transform: scale(1.2);
  color: #ffd700;
}

.nav-item a.deshabilitado {
  color: #a0a0a0 !important;
  /* Un gris más fuerte */
  pointer-events: none;
  /* Desactiva el clic */
  cursor: not-allowed;
  /* Cambia el cursor */
}

.nav-item a.deshabilitado i {
  color: #a0a0a0 !important;
  /* Hace que el ícono también sea gris */
  transform: none !important;
  /* Evita que el hover lo agrande */
}

.Preguntas {
  pointer-events: none;
  color: rgba(153,
      153,
      153,
      0.479);
  /* Opcional: Cambia el color para indicar que está deshabilitado */
}

nav a:hover i {
  transform: scale(1.2);
  /* Efecto de agrandamiento al pasar el mouse */
  color: #ffd700;
  /* Cambia el color al pasar el mouse */
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Aplica la animación al cargar la página */
.navbar-brand img.start-animation {
  animation: levantarYGirar 1.8s ease-in-out forwards;
}

/* Reinicia la animación al hacer hover */
.navbar-brand img:hover {
  animation: levantarYGirar 1.8s ease-in-out forwards;
}

/* Definición de la animación */
@keyframes levantarYGirar {
  0% {
    transform: translateY(0) rotateY(0deg);
  }

  30% {
    transform: translateY(-10px) rotateY(0deg);
  }

  60% {
    transform: translateY(-10px) rotateY(360deg);
  }

  100% {
    transform: translateY(0) rotateY(360deg);
  }
}

.subscribe {
  display: flex;
  background: #ffd700 !important;
  border-color: #ffd700 !important;
  padding: 10px 20px;
  font-size: 10px;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 4px 4px 0px black, 6px 6px 0px rgba(0, 0, 0, 0.3);
  text-shadow: 0.5px 0.5px 0 black, 0.5px 0.5px 0 black;
  transition: all 0.3s ease-in-out;
  margin: 0px 8px;
}

.subscribe:hover {
  animation: bounce 0.5s ease infinite;
}

.follow {
  background: #ffd700 !important;
  border-color: #ffd700 !important;
  padding: 10px 20px;
  font-size: 10px;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 4px 4px 0px black, 6px 6px 0px rgba(0, 0, 0, 0.3);
  text-shadow: 0.5px 0.5px 0 black, 0.5px 0.5px 0 black;
  transition: all 0.3s ease-in-out;
  margin: 0px 5px;
}

.follow:hover {
  animation: bounce 0.5s ease infinite;
}

.mobile-only {
  display: none;
  /* Oculto por defecto */
}

/* Mostrar solo en pantallas pequeñas */
@media (max-width: 768px) {
  .mobile-only {
    margin-top: 10px;
    text-align: center;
    background: #ffd700;
    color: white;
    font-size: 25px;
    text-transform: uppercase;
    padding: 26px 26px;
    border: 4px solid black;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 4px 4px 0px black, 6px 6px 0px rgba(0, 0, 0, 0.3);
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 60px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-shadow: 2px 1px 0 black, 2px 2px 0 black;
    letter-spacing: -0.5px;
    line-height: 110%;
    text-decoration: none;
    margin-top: 18px
  }
}

main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  background-image: linear-gradient(135deg, rgb(151 31 234 / 40%), rgb(51 26 240 / 40%)), url(/img/banner.jpg);
  color: white;
  flex-wrap: wrap;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: 100vh;
  gap: 40px;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.5);
  /* Capa oscura (ajusta la opacidad) */
  z-index: 1;
}

main * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  main {
    min-height: 80vh;
    gap: 50px
  }
}

.somos {
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 45px 20px 40px 20px;
  font-size: 18px;
  line-height: 1.6;
  width: 100%;
}

.somos h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #6a0dad;
  /* Color acorde a la página */
}

.somos p {
  max-width: 825px;
  margin: 0 auto 15px;
  text-align: center;
  justify-content: center;
  font-family: "Boldonse", system-ui;
}

.somos .QuienesSomos {
  font-size: 36px;
  font-weight: bold;
  color: #6a0dad;
  /* Color acorde al diseño */
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.somos .QuienesSomos::after {
  content: "";
  display: block;
  width: 410;
  /* Largo de la línea */
  height: 4px;
  /* Grosor de la línea */
  background-color: #24fccb;
  /* Color de la línea */
  border-radius: 4px;
  margin: 10px auto 0;
  /* Espaciado superior e inferior */
}

.promo h1 {
  font-size: 50px;
  z-index: 1000;
}

.highlight {
  color: white;
  font-weight: bold;
}

.promo p {
  font-size: 30px;
  font-family: "Boldonse", system-ui;
  font-style: normal;
  font-weight: 1000;
  color: white;
  text-shadow: 2.2px -1.8px 0 black, 4.8px 0.2px 0 black, 6.2px 2.8px 0 black,
    5.8px 1.8px 0 black,
    /* Simula el contorno */
    7.5px 0.9px 0px rgba(0, 0, 0, 1);
    margin-bottom: 40px;
    top: -5px
}



@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.join-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin-top: 95px;
}

.join-link::before,
.join-link::after,
.join-link .arrow-top-left,
.join-link .arrow-top-right,
.join-link .arrow-bottom-left,
.join-link .arrow-bottom-right {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background-image: url("data:image/svg+xml,%3Csvg width='400px' height='400px' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' aria-hidden='true' role='img' class='iconify iconify--gis' preserveAspectRatio='xMidYMid meet'%3E%3Cpath d='M17.09 1.853a4.999 4.999 0 0 0-5.276 5.596l7.557 81.087c.483 3.938 5.137 5.773 8.176 3.223l15.947-12.932l7.15 12.385c4.112 7.122 10.636 8.872 17.758 4.76s8.87-10.638 4.758-17.76l-7.125-12.34l18.896-7.244c3.728-1.357 4.467-6.306 1.3-8.693L19.784 2.847a4.995 4.995 0 0 0-2.695-.994z' fill='%23FFD700'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2000;
}

@media (max-width: 768px) {
  .join-link::before,
  .join-link::after,
  .join-link .arrow-top-left,
  .join-link .arrow-top-right,
  .join-link .arrow-bottom-left,
  .join-link .arrow-bottom-right {
    width: 40px;
    /* Ajuste opcional del tamaño */
    height: 44px;
    background-image: url("data:image/svg+xml,%3Csvg width='300px' height='300px' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' aria-hidden='true' role='img' class='iconify iconify--gis' preserveAspectRatio='xMidYMid meet'%3E%3Cpath d='M17.09 1.853a4.999 4.999 0 0 0-5.276 5.596l7.557 81.087c.483 3.938 5.137 5.773 8.176 3.223l15.947-12.932l7.15 12.385c4.112 7.122 10.636 8.872 17.758 4.76s8.87-10.638 4.758-17.76l-7.125-12.34l18.896-7.244c3.728-1.357 4.467-6.306 1.3-8.693L19.784 2.847a4.995 4.995 0 0 0-2.695-.994z' fill='%23FFD700'%3E%3C/path%3E%3C/svg%3E");
  }
  .join-link::before {
    left: -52px !important;
    top: 21% !important;
    transform: rotate(120deg) !important;
}
  
  /* Right arrow */
  .join-link::after {
    right: -51px !important;
    top: 11% !important;
    transform: rotate(303deg) !;
}
  /* Top arrow */
  .join-link .arrow-top {
    top: -106px !important;
    left: 34% !important;
    transform: rotate(213deg) !important;
  }

  /* Bottom arrow */
  .join-link .arrow-bottom {
    bottom: -119px !important;
    left: 37% !important;
    transform: rotate(29deg) !important;
  }

  /* Top-left arrow */
  .join-link .arrow-top-left {
    top: -55px !important;
    left: 14px !important;
    transform: rotate(174deg) !important;
}

  /* Top-right arrow */
  .join-link .arrow-top-right {
    top: -65px !important;
    right: 23px !important;
    transform: rotate(247deg) !important;
}

  /* Bottom-left arrow */
  .join-link .arrow-bottom-left {
    bottom: -55px !important;
    left: 2px !important;
    transform: rotate(65deg) !important;
}

  /* Bottom-right arrow */
  .join-link .arrow-bottom-right {
    bottom: -46px !important;
    right: -34px !important;
    transform: rotate(353deg) !important;
}
}

/* Left arrow */
.join-link::before {
  left: -110px;
  top: 0%;
  transform: rotate(120deg);
}

/* Right arrow */
.join-link::after {
  right: -120px;
  top: -15%;
  transform: rotate(303deg);
}

/* Top arrow */
.join-link .arrow-top {
  top: -106px;
  left: 34%;
  transform: rotate(213deg);
}

/* Bottom arrow */
.join-link .arrow-bottom {
  bottom: -119px;
  left: 37%;
  transform: rotate(29deg);
}

/* Top-left arrow */
.join-link .arrow-top-left {
  top: -97px;
  left: -50px;
  transform: rotate(169deg);
}

/* Top-right arrow */
.join-link .arrow-top-right {
  top: -108px;
  right: -55px;
  transform: rotate(247deg);
}

/* Bottom-left arrow */
.join-link .arrow-bottom-left {
  bottom: -107px;
  left: -29px;
  transform: rotate(65deg);
}

/* Bottom-right arrow */
.join-link .arrow-bottom-right {
  bottom: -97px;
  right: -51px;
  transform: rotate(353deg);
}

.join {
  display: flex;
  background: #ffd700;
  color: white;
  font-size: 26px;
  text-transform: uppercase;
  padding: 35px 40px;
  border: 4px solid black;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 4px 4px 0px black, 6px 6px 0px rgba(0, 0, 0, 0.3);
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-shadow: 2px 1px 0 black, 2px 2px 0 black;
  letter-spacing: -0.5px;
  line-height: 110%;
  text-decoration: none;
}

.join:hover {
  animation: bounce 0.5s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .prizes {
    height: 55vh;
    /* Permite que la sección se ajuste al contenido */
    padding: 30px 0;
    /* Reduce el espacio superior e inferior */
  }

  .promo {
    padding: 40px 10px;
    /* Reduce los espacios internos */
    height: 55vh;
  }

  .promo h1 {
    margin: -10px 0;
    /* Reduce margen negativo */
  }

  .prizes h2 {
    font-size: 40px;
    /* Ajusta tamaño de texto */
    margin-bottom: 15px;
    /* Reduce separación con la imagen */
  }

  .somos {
    padding: 30px 15px;
  }

  .somos .QuienesSomos {
    margin-top: 8px;
  }

  .join {
    display: flex !important;
  }
}

@media (max-width: 1024px) {
  .prizes {
    height: 55vh;
    /* Permite que la sección se ajuste al contenido */
    padding: 30px 0;
    /* Reduce el espacio superior e inferior */
  }

  .promo {
    padding: 40px 10px;
    /* Reduce los espacios internos */
    height: 55vh;
  }
}

.prizes {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.premio {
  position: relative;
  z-index: 2;
  /* Higher z-index to appear above the image */
  margin-bottom: 20px;
  /* Space between text and image */
}

.premio-text {
  font-size: 60px;
  color: #ffd700;
  text-shadow: 7.5px 4.5px 0 black, 0.5px 0.5px 0 black;
  margin-bottom: 10px;
  font-family: "Alfa Slab One", serif;
}

.prizes h2 {
  font-size: 60px;
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-style: normal;
  color: #ffd700;
  text-shadow: 7.5px 4.5px 0 black, 0.5px 0.5px 0 black;
}

.image-container {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: -160px;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  transition: transform 0.3s ease;
}

/* Add hover effect */
.image-container:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .prizes h2 {
    font-size: 35px;
  }

  .image-container {
    margin-top: -110px;
  }
}

.prizes img {
  width: 100%;
  /* Para que se ajuste dinámicamente */
  max-width: 600px;
  margin-top: -90px;
  /* Ajusta este valor si aún desajusta la imagen */
}



.logo img {
  height: 105px;
  width: auto;
  transform: rotateY(15deg);
  /* Inclinación en el eje Y */
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: rotateY(-15deg);
  /* Cambio al pasar el mouse */
}

img {
  height: 105px;
  width: auto;
  filter: drop-shadow(0px 5px 0px rgba(0, 0, 0, 0.8));
  /* Sombra con transparencia */
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Efecto de elevación al pasar el mouse */
img:hover {
  transform: translateY(-10px);
  /* Hace que el logo flote */
}

.promo {
  display: flex;
  flex-direction: column;
  /* Asegura que los elementos estén en columna */
  align-items: center;
  /* Centra horizontalmente */
  justify-content: center;
  /* Centra verticalmente si la sección tiene altura definida */
  text-align: center;
  height: 100vh;
  z-index: 1;
  position: relative;
}

.promo h1 {
  font-family: Arial, sans-serif !important;
  font-size: 120px;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: white;
  margin: -46px;
  text-shadow: 6px 2px 0 black, 6px 2px 0 black;
}

.eslogan {
  position: relative;
  top: -20px;
}

.highlight {
  font-family: Arial, sans-serif !important;
  color: transparent;
  -webkit-text-stroke: 3px #ffd700;
  paint-order: stroke fill;
  font-weight: 800;
  display: block;
  font-size: 120px;
  position: absolute;
  top: -152%;
  right: -12%;
}

@media (max-width: 768px) {
  .highlight {
    font-size: 75px;
    top: -189%;
    right: -17%;
  }

  .promoEslogan {
    font-size: 75px;
  }

  .promo h1 {
    font-size: 75px;
  }

  .eslogan {
    top: 0px;
  }
}

.promoEslogan {
  font-size: 135px;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: white;
  margin: -40px;
}

.promo h1::before {
  position: absolute;
  top: -5px;
  /* Ajusta para superponerlo */
  left: 0;
  color: transparent;
  -webkit-text-stroke: 3px #ffd700;
  /* Contorno morado sin relleno */
  z-index: -1;
  /* Lo coloca debajo */
}

.premio {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
}

.premio:hover {
  transform: scale(1.1);
}

/* Efecto de dinero saliendo */
@keyframes money-fall {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-50px) scale(1.5);
  }
}

.money {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  animation: money-fall 0.8s ease-out forwards;
}

/*footer*/
footer {
  text-align: center;
  background-color: #000000;
  /* Fondo negro */
  color: white;
  padding: 20px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {
  justify-content: center;
}

p {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Espacio entre el texto y los iconos */
  flex-wrap: wrap;
  /* Evita problemas en pantallas pequeñas */
}

.social-icons {
  display: flex;
  gap: 10px;
  /* Espacio entre los iconos */
}

.social-icons img {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.034);
  border-radius: 50%;
  transition: transform 0.3s ease, filter 0.3s ease, border-color 0.3s ease;
}

.social-icons a[href*="tiktok.com"] img {
  border: 0.5px solid #696565;
}
.social-icons a[href*="kick.com"] img {
  border: 0.5px solid #696565;
}


.social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(1.5);
}

@media (max-width: 768px) {
  .prizes {
    margin-top: -140px;
  }

  .promo {
    margin-top: -80px;
  }
}