* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  flex-direction: column;
  font-family: 'Montserrat', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  background: #ff1978;
  font-display: swap;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
        
.infofooter .emoji {
  font-family: 'EmojiFont', sans-serif;
}


.container-about {
display: flex;
flex-direction: column;
text-align: center;
width: 100%;
height: 100%;
z-index: 10;
overflow-y: auto;
overflow-x: hidden;
}


.file-container {
    margin-bottom: 15px;
}

.file-label {
    display: block;
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background-color: white;
    width: 100%;
}

.file-drop-container {
    
    display: none;
}

.file-drop-area {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background-color: #f9f9f9;
}

.file-drop-area:hover {
    background-color: #f0f0f0;
}

#file-drop-text {
    font-size: 16px;
    color: #333;
}

#file-drop-area.dragover {
    border-color: #5c9ded;
    background-color: #eaf7ff;
}

/* Mostrar el área de drag and drop solo en pantallas más grandes que 768px */
@media (min-width: 768px) {
    .file-drop-container {
        display: block; /* Mostrar el contenedor en pantallas grandes */
    }

    #choose-file-label {
        display: none; /* Ocultar el botón Choose File */
    }
}

/* Ocultar el área de drag and drop por defecto (en pantallas pequeñas) */
@media (max-width: 768px) {
    .file-drop-container {
        display: none; /* Ocultar completamente el contenedor en móviles */
    }

    #choose-file-label {
        display: block; /* Mostrar solo el botón Choose File */
    }
}



.section-about {

width: 100%;

padding: 90px 20px;

position: relative;

}



.purple {

background-color: #ff1978;

color: white;

}



.white {

background-color: white;

color: black;

}


.content-about {
max-width: 100%;
width: 100%;
height:100%;
text-size-adjust: 100%;
margin: auto;
}

.image-about-container {
  width: 100%;
  min-height: 200px;
  background-color: transparent;
  position: relative;
  z-index: 10;
  margin-top: -50px;
  overflow: hidden;
}

.image-about-container img {
  width: 100%;
  display: block;
  object-fit: cover !important;
}

.Title-about {
  font-weight: bold;
  text-align: left;
  color: white;
}

.Title-about-anim{
	font-size: 48px !important;
font-weight: bold;
word-break: break-word;
}

.Title-about span {
  display: inline-block;
  font-size: 48px;
  animation: wave 1s ease-in-out 1;
}

.Title-about span:nth-child(1) {
  animation-delay: 0s;
}

.Title-about span:nth-child(2) {
  animation-delay: 0.2s;
}

.Title-about span:nth-child(3) {
  animation-delay: 0.4s;
}

.Title-about span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.container-about p {
font-size: 24px !important;
margin-top: 40px;
margin-bottom:25px;
line-height: 1.5;
}
    
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
   
.navbar {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 10px;
  background: rgba(128, 128, 128, 0.7);
  border-radius: 20px;
  z-index: 1000;
}


.navbar .logo {
  color: white;
  font-size: 2rem !important;
  font-weight: bold;
}

.menu-btn {
  font-size: 16px;
  padding: 10px;
  font-weight: bold;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(128, 128, 128, 0.7);
  border-radius: 0 0 20px 20px;
}

.dropdown a {
  display: block;
  padding: 10px;
  padding-left: 20px;
  text-decoration: none;
  color: white;
}

.dropdown a:hover {
  background: rgba(128, 128, 128, 0.7);
}

.navbar.closed {
  border-radius: 20px;
}

.navbar.open {
  border-radius: 20px 20px 0 0;
}

.language-selector {
  position: relative;
  display: inline-flex;
}

.language-btn {
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  font-size: 17px;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  background: none;
}

.info-footer{
font-family: 'Montserrat', sans-serif;
font-size: 12px;
color: yellow;
}

.language-dropdown {
  display: none;
  background: white;
  position: absolute;
  color: black;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  min-width: 200px;
  z-index: 1010;
}

.language-dropdown a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  background: white;
  color: black !important;
}

.language-dropdown a:hover {
  background: #f0f0f0;
}

.language-dropdown.show {
  display: block;
}

@media (min-width: 1201px) {
  .menu-btn {
    display: none;
  }

  .dropdown {
    display: flex !important;
    position: static;
    background: none;
    width: auto;
    border-radius: 0;
  }

  .dropdown a {
    padding: 0 15px;
  }

  .navbar {
    justify-content: space-between;
  }
}

@media (max-width: 1200px) {
  .menu-btn {
    display: block;
  }

  .dropdown {
    display: none;
  }
}

.swiper-container {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  margin-bottom: 20%;
}

.swiper-slide {
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}


.section-1 {
  text-align: center;
  padding: 20px;
  background-color: transparent;
  width: 90%;
  height: 90%;
  display: flex;
  gap: 2.5vh !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.section-2 {
  width: 90%;
  max-width: 800px;
  text-align: center;
  padding: 20px;
  display: flex;
  gap: 2.5vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.section-chat {
  width: 90%;
  max-width: 800px;
  text-align: center;
  padding: 20px;
  display: flex;
  gap: 2.5vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}


.section-vid {
  text-align: center;
  padding: 20px;
  background-color: transparent;
  width: 90%;
  height: 90%;
  display: flex;
  gap: 3vh !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.section-2 h2,
.section-2 p,
.section-2 img {
  margin: 0px; 
  padding: 0;
}

.section-1 h2,
.section-1 p,
.section-1 img {
  margin: 0;
  padding: 0;
}

.section-vid h2,
.section-vid p{
margin: 0;
padding: 0;
}
.section-vid video{
  margin: 0;
  padding: 0;
}

.section-1 h2,
.section-2 h2,
.section-vid h2,
.section-chat h2 {
  font-size: clamp(1vh, 5vh, 6rem) !important;
  font-stretch: normal; /* Asegura que no se estiren */
  letter-spacing: normal; /* Controla el espacio entre letras */
  white-space: normal; /* Evita que el texto se expanda en una sola línea */
  max-width: 100%; /* Limita el ancho del contenedor */
  word-break: break-word; /* Permite que las palabras largas se dividan */
}

.section-1 h3, .section-2 h3, .section-vid h3, .section-chat h3 {
  font-size: clamp(1vh, 4vh, 16px) !important;
}

.section-1 p,
.section-2 p,
.section-vid p,
.section-chat p{
  font-size: clamp(1vh, 2vh, 4rem) !important;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1.4; /* Mejora la legibilidad */
  max-width: 95%;
  word-break: break-word;
  white-space: normal;
}

#footer a{
	font-size: clamp(1vh, 1.5vh, 16px) !important;
}

#infofooter {
  width: 100%;
  text-align: center;
  margin-top: 15px;
  font-size: clamp(1vh, 1.5vh, 16px) !important;
  }


.recargando-texto {
  font-family: 'Montserrat', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif !important;
  position: absolute;
  font-weight: bold;
  display:flex;
  font-size: 6vh;
  top: 5px;
  background: linear-gradient(90deg, #a0e9ff, #6ecbff, #55aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;/* Detrás del swiper */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.icono-1 {
  width: 12vh !important;
  max-width: 200px;
  height: 12vh !important;
  max-height: 200px;
  display: block !important;
  object-fit: cover !important;
  border-radius: 50%;
}

.video-1 {
  width: 20vh !important;
  max-width: 300px;
  height: 20vh !important;
  max-height: 300px;
  display: block !important;
  object-fit: cover !important;
  border-radius: 20%;
  border:10px solid white;
}

.icono-2 {
  width: 20vh !important;
  max-width: 280px;
  height: 20vh !important;
  max-height: 280px;
  display: block !important;
  object-fit: cover !important;
  border-radius: 50%;
  }

.icono-monster {
  width: 20vh !important;
  max-width: 280px;
  height: 20vh !important;
  max-height: 280px;
  display: block !important;
  object-fit: cover !important;
  
}

.icono-square{
  width: 20vh !important;
  max-width: 280px;
  height: 20vh !important;
  max-height: 280px;
  display: block !important;
  object-fit: cover !important;
  border-radius: 0%;
}

.box-title {
  font-size: 2rem;
  margin-top: 20px;
  color: #fff; 
}

.box-subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #fff;
}

.swipe-for-more {
  font-size: 1rem;
  margin-top: 30px;
  color: #fff; /* Asegura que el texto sea visible */
}

@media (max-width: 768px) {
  .box-title {
    font-size: 1.5rem;
  }
  .box-subtitle {
    font-size: 1rem;
  }
  .swipe-for-more {
    font-size: 0.9rem;
  }
}

.partnerc{
  position: relative;
  overflow: hidden;
}

.partnerc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://pub-2db4bfd89c3e4da0b7ad17a3f64b1160.r2.dev/partner.webp') center/cover no-repeat;
  filter: blur(1px) brightness(0.7); /* Ajusta el valor de 0.7 a tu preferencia */
  z-index: 1;
}

.swiper-slide:nth-child(1), swiper-slide:nth-child(2), .swioer-slide:nth-child(3), .swiper-slide:nth-child(4), .swiper-slide:nth-child(7), .swiper-slide:nth-child(8){
position: relative;
 overflow: hidden;
 inset: 0 !important;
   width: 100 vw;
  height: 100%;
}

.swiper-slide:nth-child(2) video.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0px) brightness(0.5); /* Ajusta aquí si quieres */
  z-index: -1;
  pointer-events: none; /* Para que no bloquee clics */
}

.swiper-slide:nth-child(4) video.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0px) brightness(0.8); /* Ajusta aquí si quieres */
  z-index: -1;
  pointer-events: none; /* Para que no bloquee clics */
}



@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



.swiper-slide:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url('https://pub-61fc579dd1b34337825d49e443f261d9.r2.dev/party1-rizee.webp') center/cover no-repeat;
  filter: blur(1px) brightness(0.5); /* Ajusta el valor de 0.7 a tu preferencia */
  z-index: -1;
}

.swiper-slide:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url('say.png') center/cover no-repeat;
  filter: blur(0.5px) brightness(0.7); /* Ajusta el valor de 0.7 a tu preferencia */
  z-index: -1;
}

.swiper-slide:nth-child(8)::before {
  content: "";
  position: absolute;
  inset: 0; /* top: 0; right: 0; bottom: 0; left: 0; más rápido */
  background: url('friends1-rizee.jpg') center/cover no-repeat;
  filter: blur(0.5px) brightness(0.5);
  z-index: -1;
  pointer-events: none;
}




.swiper-slide:nth-child(8) img {
  position: relative;
  z-index: 1;
  filter: none !important;
}



.swiper-slide:nth-child(2) { background-color: black !important; } 
.swiper-slide:nth-child(3) { background-color: black;} 
.swiper-slide:nth-child(4) { background-color: trasnparent; }
.swiper-slide:nth-child(5) { background-color: purple; }
.swiper-slide:nth-child(6) { background-color: #ff1978; }
.swiper-slide:nth-child(7) { background: linear-gradient(135deg, #ff1978 0%, #ff5ca0 50%, #ff1978 100%);}

.swiper-slide:nth-child(7) {
  background: linear-gradient(270deg, #cc125e, #ff1978, #990f48);
  background-size: 600% 600%;
  animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section-logo img {
  width: 90px;
  height: auto;
  margin-bottom: 20px;
}

.box-title {
  padding-left: 10px;
  padding-right:10px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: clamp(34px, 6vw, 46px);
  font-weight: bold;
  word-break: break-word;
}

.box-subtitle {
  padding-left: 10px;
  padding-right:10px;
  padding-top: 25px;
  padding-bottom: 25px;
  word-break: break-word;
  font-size: clamp(18px, 7vw, 30px);
}

.box-title-little{
  margin: 20px 0;
  padding: 10px;
  font-size: clamp(34px, 6vw, 46px);
  font-weight: bold;
  word-break: break-word;
  color: white;
}

.box-subtitle-little {
  padding: 20px !important;
  text-align: center;
  margin: 10px 10px;
  word-break: break-word;
  font-size: clamp(16px, 5vw, 28px);
}

.box-subtitle-position{
  padding: 20px !important;
  text-align: center;
  margin: 10px 10px;
  word-break: break-word;
  font-size: clamp(16px, 5vw, 28px);
}

.swipe-for-more {
  position: absolute;
  bottom:4%;
  left: 50%;
  transform: translateX(50%);
  font-size: 0.9rem;
  animation: swipeMove 1.5s ease-in-out infinite;
}

@keyframes swipeMove {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.infoec{
  padding-bottom: 12px;
  padding-top: 12px;
  font-size: 1rem;
}

.infoc{
  padding-bottom: 12px;
  padding-top: 12px;
  font-size: 1rem;
  color: black;
}

.section-content{
	width:100%;
}

.button_001 {
  background: #066FD8;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: clamp(18px, 6vw, 30px);
  font-weight: bold;
}


.button_1347 {
  position: relative;
  margin-top: 15px;
  margin-bottom:45px !important;
  font-size: clamp(18px, 6vw, 30px);
  padding: 10px 20px;
  border: 2px solid transparent; 
  border-radius: 40px;
  background-color: #066FD8;
  color: white;
  cursor: pointer;
  font-weight: 900;
  transition: background-color 0.3s ease;
  overflow: hidden; 
}

.button_download {
  position: relative;
  margin-top: 15px;
  font-size: clamp(1vh, 3vh, 4rem) !important;
  padding: 10px 20px;
  margin-left: 6px;
  margin-right: 10px !important;
  border: 2px solid transparent; 
  border-radius: 40px;
  background-color: #066FD8;
  color: white;
  cursor: pointer;
  font-weight: 900;
  transition: background-color 0.3s ease;
  overflow: hidden; 
}


.button_download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: linear-gradient(45deg, rgba(135, 206, 235, 0.5), rgba(135, 206, 235, 0.8));
  transform: rotate(45deg);
  opacity: 0;
  pointer-events: none;
}

.button_download.animate::before {
  animation: brillar 2s ease-out forwards;
  opacity: 1;
}

@keyframes brillar {
    0% {
        transform: translateX(-150%) rotate(45deg);
        opacity: 1;
    }
    50% {
        transform: translateX(150%) rotate(45deg);
    }
    100% {
        transform: translateX(-150%) rotate(45deg);
    }
}

.button_download:hover, .button_001:hover {
  background: #0447a1;
}

.store-links {
  display: flex;
  justify-content: center; 
  gap: 40px;
  margin-top: 10px;
}

.store-links img{
  width: 6vh !important;
  height: 6vh !important;
  max-width: 100px !important;
  max-height: 100px !important;
  display: block !important;
  object-fit: cover !important;
  gap:10px;
}

.social-links {
  display: flex;
  justify-content: center; 
  gap: 30px;
  margin-top: 10px;
}

.social-links img , .store-links img{
  color-scheme: light only;
  forced-color-adjust: none;
  -webkit-print-color-adjust: exact;
}

.social-links img {
  width: 6vh !important;
  height: 6vh !important;
  max-width: 100px !important;
  max-height: 100px !important;
  display: block !important;
  object-fit: cover !important;
  gap:10px;
  border-radius: 50%;
}

.info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
}

.info1 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
}

.vid_content2 {
  width: 100%;
  display: flex;
  background: transparent;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.video-container2 video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.vid_content {
  width: 100%;
  display: flex;
  background: transparent;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}


.video-container video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vid-content-global{
  width: 100%;
  display: flex;
  background: transparent;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.video-container3 video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-container4 video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img_content {
  width: 100%;
  display: flex;
  background: transparent;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes grow {
  0% {
    transform: scale(0.1); 
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shrink {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.1);
  }
}

.icon {
   font-size: 30px;
   margin: 0 5px;
   vertical-align: middle;
}

.icon-play {
   color: #ff5733;
}

.icon-music {
   color: green;
}

.icon-heart {
   color: blue;
}

.icon-bolt {
   color: #fff;
}        
       
.headers {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: scroll;
  box-sizing: border-box;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #2a6df4, #ff1978);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.header img{
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.header-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  width: 100%;
  height: 100%;
  overflow: scroll;
  box-sizing: border-box;
}

.header-csupport {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
}

.header-support img{
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.search-box {
  width: 90%;
  max-width: 500px;
  padding: 0.75rem;
  margin: 1rem auto;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  display: block;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  outline: none;
}

.search-box::placeholder {
  color: #666;
}

.search-box:focus {
  background: rgba(255, 255, 255, 1); 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90vw !important;
  margin: 1rem auto; 
  background: white;
  border-radius: 10px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90vw !important;
  margin: 1rem auto; 
  background: white;
  border-radius: 10px;
}

.header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.faq-category, .category{ 
    margin-bottom: 1rem; 
}

.faq-category h2, .category h2 { 
    width: 90vw !important;
    font-size: 1.25rem;
    color: #ff1978;
    margin-bottom: 16px;
}

.privacy-category{ 
	padding: 10px;
    width: 90vw !important;
    font-size: 12px;
    color: #fff;
    margin-bottom: 16px;
}

.faq-item, .item {
    font-weight: bold; 
    background: white;
    padding: 10px;
    width: 95vw;
    border-radius: 0px;
    cursor: pointer; 
    margin-top: 5px;
    margin-bottom: 5px;
    transition: background 0.3s;
    font-size: 16px;
}

.link {
  color: #ff1978;
}

.link:hover {
  color: red;
}

.faq-item:hover, .item:hover { 
    background: #e0e0e0; 
}

.faq-answer, .answer {
    display: none; 
    padding: 10px; 
    background: #fff; 
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
}

.no-results {
    display: none; 
    text-align: center; 
    color: #888; 
    margin-top: 1rem;
}

.rules-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90vw !important;
  margin: 1rem auto; 
  background: white;
  border-radius: 10px;
}

.header-rules{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #22c1c3, #fdbb2d);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.header-rules img{
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.header-partner{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ff1978;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.header-partner img{
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.imgpartner{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  color: white;
  text-align: center;
  padding: 0;
  width: 100%;
  max-height: 125px;
  box-sizing: border-box;
}

.imgpartner img{
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.header-privacy, .header-terms{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: black;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.header-privacy img, .header-terms img{
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.header-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.rules-category { 
    margin-bottom: 1rem; 
}

.rules-category h2 { 
    width: 90vw !important;
    font-size: 1.25rem;
    color: #ff1978;
    margin-bottom: 0.5rem; 
}

.rules-item {
    font-weight: bold; 
    background: white;
    padding: 0.75rem; 
    width: 95vw;
    border-radius: 5px;
    cursor: pointer; 
    margin-top: 0.5rem; 
    margin-bottom: 0.5rem; 
    transition: background 0.3s;
    font-size: 1rem;
}

.rules-item:hover { 
    background: #e0e0e0; 
}

.rules-answer {
    display: none; 
    padding: 0.75rem; 
    background: #fff; 
    border-radius: 5px;
    margin-top: 0.5rem; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
}

.container-job {
   background-color: black;
   border-radius: 15px;
   margin-bottom: 40px;
   width:90vw;
}

.container-job .box-subtitle-little{
	color:white;
}

.main-container {
  width: 100%;
  display: flex;
  margin-top: 70px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.main-container img {
  display: block;
  border-radius: 50%;
  width: 120px;
  position: relative;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
    animation: zoomIn 0.5s ease-out;
}


.squareimg {
  text-align: center;
  max-width: 200px;
  max-height: 200px !important;
}

.squareimg img {
  display: inline-block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.endimg img{
  display: block;
  padding-top: 20px;
  padding-bottom: 10px;
  border-radius: 0% !important;
  margin: 0 auto 20px;
  width: 100px !important;
}

.main-container ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.team-members {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

.team-member {
  text-align: center;
  margin-bottom: 20px;
}

.team-member img {
  border-radius: 50%;
  margin-bottom: 10px;
  width: 150px;
  height: 150px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.headers .header-rules a{
 padding-top: 15px !important;
 padding-bottom: 5px !important;
 color: white;
 font-weight: bold;
 font-size: 1rem;
}

.headers .header a{
 padding-top: 15px !important;
 padding-bottom: 5px !important;
 color: white;
 font-weight: bold;
 font-size: 1rem;
}

.section-form {
    width: 85% !important;
    padding: 20px;
    overflow: visible;
    background: White;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
}

.support-form {
	display: block;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.support-form input, .support-form select, .support-form textarea {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.section-form label {
    display: block;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;
}

.support-form textarea {
    resize: vertical;
}

.support-form p {
    font-size: 14px;
    color: red;
    padding-top: 5px;
    text-align: left;
    margin-bottom: 10px;
}

.btn {
    width: 100%;
    text-align: center;
    margin-top: 20px; 
    margin-bottom: 40px; 
    
}

.support-form button {
    display: block;
    width: 90%;
    padding: 15px;
    font-family: 'Montserrat', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background-color: #ff1978;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto; 
}

.support-form button:hover {
    background-color: #e31665;
}

.support-form input[type="file"] {
    padding: 5px;
}



.custom-file-label {
    display: inline-block;
    padding: 20px !important;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    color: black;
    font-weight: normal !important;
    border-radius: 5px;
    cursor: pointer;
    text-align: center !important;
    font-size: 16px;
    width: 100%;
}

.file-name-text {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    display: none;
}

.file-names-container {
    margin-top: 10px;
    font-size: 14px;
}

.file-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #f1f1f1;
    margin-bottom: 5px;
    border-radius: 5px;
}

.file-container {
  display: flex;
  align-items: center; 
  gap: 8px; 
}

.limited-text {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 6px !important;
}

.remove-file {
  color: #ff1978;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  padding: 6px !important;
}

.video-container2 {
  border: 1px solid transparent;
  border-radius: 20% 20% 0 0;
  overflow: hidden;
  width: 210px;
  height: 210px;
}

.video-container3 {
  border: 12px solid #fff;
  border-radius: 20%;
  overflow: hidden;
  width: 210px;
  height: 210px;
}

.video-container4 {
  border-radius: 20%;
  overflow: hidden;
  width: 210px;
  height: 210px;
}

.section-content-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 60px 20px 20px;
  flex-grow: 1;
}

.img-socialmedia img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  filter: none !important;
  mix-blend-mode: normal !important;
  color: unset !important;
  background: none !important;
  isolation: isolate !important;  
}

.footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  text-align: center;
  width: 100%;
  padding: 20px;
}


.clases, .clases-p {
  position: absolute; 
  gap: 2.5vh;
  width: 100%;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
}

.class-chat{
  position: absolute; 
  gap: 2.5vh;
 
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
}

.wrapper {
  position: absolute; 
  gap: 2.5vh;
  width: 100%;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
}
  
  
/* Solo centramos verticalmente en pantallas altas */
@media (max-height: 400px) {
	.clases{
  position: absolute;
  bottom: 0px !important;
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  color: white;
}


.clases-p{
  position: absolute;
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  color: white;
}

.wrapper {
  position: absolute;
  width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  color: white;
}

}

  .image-container {
  display: flex;
  justify-content: center; 
  align-items: center;  
  margin-bottom: 40px;
  }



}	
@media (max-width: 320px) {
	
	

  .social-icon {
  width: 25px !important;
  height: 25px !important;
  }
  
  .store-icon {
  width: 50px !important;
  height: 50px !important; 
  }
  
  .swiper-slide:nth-child(8) .section-content-social .img-socialmedia img{
  width: 120px !important;
  height: auto;
  border-radius: 50%;
  margin-top: 5%;
  }
  
  .swiper-slide:nth-child(7) .section-content-social .img-socialmedia img{
  width: 120px !important;
  height: auto;
  border-radius: 50%;
  margin-top: 5%;
  }
  
  .image-about-container {
  width: 100%;
  min-height: 200px;
}

.image-container img {
  width: 120px; 
  height: 120px; 
  border-radius: 50%; 
  object-fit: cover; 
}
  
  .video-container , .video-container3{
  border: 6px solid #fff;
  border-radius: 20%;
  overflow: hidden;
  width: 120px !important;
  height: 120px !important;
  }
  
  .video-container4 {
  border-radius: 20%;
  overflow: hidden;
  width: 120px !important;
  height: 120px !important;
  }
  
  .video-container2 {
  border-radius: 20% 20% 0 0;
  overflow: hidden;
  width: 120px !important;
  height: 120px !important;
  }

.section-logo img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

  .box-title {
  padding-left: 10px;
  padding-right:10px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;
  word-break: break-word;
  font-size: 1rem;
  }

.container-about h1 {
  font-size: 1rem
}

  .box-subtitle {
  padding-left: 10px;
  padding-right:10px;
  padding-top: 20px;
  padding-bottom: 20px;
  word-break: break-word;
  font-size: 0.5rem;
  }

  .button_download {
  font-size: 0.6rem;
  padding: 6px 12px;
  }

  .swipe-for-more {
  font-size: 0.6rem; 
  bottom: 5px;
  }
  
  .infofooter {
  width: 100%;
  text-align: center;
  margin-top: 15px;
  font-size: 6px;
  }

  .footer a {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  font-size: 12px;
  }

   .squareimg {
  display: block;
  margin: 10px auto 30px;
  border-radius:50%;
  width: 200px !important;
  height: 170px !important;
  overflow: hidden;
  }
  
  .endimg img{
  display: block;
  padding-top: 20px;
  padding-bottom: 10px;
  border-radius: 0% !important;
  margin: 0 auto 20px;
  width: 250px !important;
  }
  
}

@media (min-width: 321px) and (max-width: 575px) {
  .swiper-slide:nth-child(8) .section-content-social .img-socialmedia img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: 10%;
  }

  .swiper-slide:nth-child(7) .section-content-social .img-socialmedia img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: 10%;
  }
  
  .image-about-container {
  width: 100%;
  min-height: 200px;
}

.footer a {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  font-size: 14px !important;
  }
  
  .video-container , .video-container3  {
  border: 12px solid #fff;
  border-radius: 20%;
  overflow: hidden;
  width: 210px !important;
  height: 210px !important;
  }
  
  .video-container4  {
  border-radius: 20%;
  overflow: hidden;
  width: 210px !important;
  height: 210px !important;
  }
  
  .video-container2 {
  border-radius: 20% 20% 0 0;
  overflow: hidden;
  width: 210px !important;
  height: 210px !important;
  }
  
  .image-container img {
  width: 200px; 
  height: 200px; 
  border-radius: 50%; 
  object-fit: cover; 
  }

  .section-logo img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  }
  
  .language-btn {
  padding-top:10px;
  padding-bottom:10px;
  }
  
  .squareimg {
  display: block;
  margin: 10px auto 30px;
  border-radius:50%;
  width: 300px !important;
  height: 250px !important;
  overflow: hidden;
  }
  
  .endimg img{
  display: block;
  padding-top: 20px;
  padding-bottom: 10px;
  border-radius: 0% !important;
  margin: 0 auto 20px;
  width: 200px !important;
  }
  
}

@media (min-width: 576px) and (max-width: 991px) {
 @media (orientation: landscape) {
 	
.box-title {
font-size: 12px !important;
padding: 2px !important;
}
 
.swipe-for-more{
font-size: 10px !important;
}

.box-subtitle {
font-size: 10px !important;
padding: 2px !important;
}
 
.navbar {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px;
  background: rgba(128, 128, 128, 0.7);
  border-radius: 20px;
  z-index: 1000;
}

.button_001 {
  background: #066FD8;
  color: white;
  padding: 5px 10px;
  margin-top: 10px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 10px;
  font-weight: bold;
}

 .button_download {
  position: relative;
  margin-top: 10px;
  font-size: 10px;
  padding: 5px 10px;
  border: 2px solid transparent; 
  border-radius: 40px;
  background-color: #066FD8;
  color: white;
  cursor: pointer;
  font-weight: 900;
  transition: background-color 0.3s ease;
  overflow: hidden; 
}
 
 .swiper-slide:nth-child(8) .section-content-social .img-socialmedia img,
.swiper-slide:nth-child(7) .section-content-social .img-socialmedia img {
  border-radius: 50%;
  width: 85px;
  height: 85px;
}

.image-about-container {
  width: 100%;
  min-height: 100px;
}

.image-container img {
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  object-fit: cover; 
}

.section-logo img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.video-container,
.video-container2,
.video-container3,
.video-container4 {
  border: 3px solid #fff;
  border-radius: 20%;
  overflow: hidden;
  width: 77.5px !important;
  height: 77.5px !important;
}

.video-container2 {
  border-radius: 20% 20% 0 0;
}

.language-btn {
  padding-top: 2.5px;
  padding-bottom: 2.5px;
}

.footer a {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  font-size: 3.5px !important;
}

.squareimg {
  display: block;
  border-radius: 50%;
  margin: 10px auto 30px;
  width: 150px !important;
  height: 125px !important;
  overflow: hidden;
}

.endimg img {
  display: block;
  padding-top: 5px;
  padding-bottom: 2.5px;
  border-radius: 0% !important;
  margin: 0 auto 20px;
  width: 55px !important;
}

.infofooter {
  text-align: center;
  margin-top: 1px;
  font-size: 5px !important;
  }
  
  .social-icon {
  width: 20px !important;
  height: 20px !important;
}

.store-icon {
  width: 20px !important;
  height: 20px !important; 
}


}
   
@media (orientation: portrait) {
.swiper-slide:nth-child(8) .section-content-social .img-socialmedia img{
  border-radius: 50%;
  width: 340px;
  height: 340px
  }
  
   .swiper-slide:nth-child(7) .section-content-social .img-socialmedia img{
  border-radius: 50%;
  width: 340px;
  height: 340px;
  }
  
  .image-about-container {
  width: 100%;
  min-height: 400px;
}
  
  .image-container img {
  width: 300px; 
  height: 300px; 
  border-radius: 50%; 
  object-fit: cover; 
  }

  .section-logo img {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  }
  
  .video-container, .video-container3 {
  border: 12px solid #fff;
  border-radius: 20%;
  overflow: hidden;
  width: 310px !important;
  height: 310px !important;
  }
  
  .video-container4 {
  border-radius: 20%;
  overflow: hidden;
  width: 310px !important;
  height: 310px !important;
  }
  
  .video-container2 {
  border-radius: 20% 20% 0 0;
  overflow: hidden;
  width: 310px !important;
  height: 310px !important;
  }
  
  .language-btn {
  padding-top:10px;
  padding-bottom:10px;
  }
  
  .footer a {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  font-size: 14px !important;
  }
  
  .squareimg {
  display: block;
  border-radius:50%;
  margin: 10px auto 30px;
  width: 600px !important;
  height: 500px !important;
  overflow: hidden;
  }
  
  .endimg img{
  display: block;
  padding-top: 20px;
  padding-bottom: 10px;
  border-radius: 0% !important;
  margin: 0 auto 20px;
  width: 220px !important;
  }
  
  .section-form {
    width: 55% !important;
}
  
}

 
}

@media (min-width: 992px) {
	
  .swiper-slide:nth-child(8) .section-content-social .img-socialmedia img{
  border-radius: 50%;
  width: 300px;
  height: 300px;
  }
  
    .swiper-slide:nth-child(7) .section-content-social .img-socialmedia img{
  border-radius: 50%;
  width: 300px;
  height: 300px;
  }
  
  .image-about-container {
  width: 100%;
  min-height: 900px;
}

.image-container img {
  width: 300px; 
  height: 300px; 
  border-radius: 50%; 
  object-fit: cover; 
}
 
  .video-container, .video-container3  {
  border: 12px solid #fff;
  border-radius: 20%;
  overflow: hidden;
  width: 310px !important;
  height: 310px !important;
  }
  
  .video-container4 {
  border-radius: 20%;
  overflow: hidden;
  width: 310px !important;
  height: 310px !important;
  }
  
  .video-container2 {
  border-radius: 20% 20% 0 0;
  overflow: hidden;
  width: 310px !important;
  height: 310px !important;
  }
  
  .footer a {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  font-size: 14px !important;
  }
  
  .squareimg {
  display: block;
  margin: 10px auto 30px;
  border-radius:50%;
  width: 700px !important;
  height: 400px !important;
  overflow: hidden;
  }
  
  .main-container {
  margin-top: 20px !important;
  }
  
  .endimg img{
  display: block;
  padding-top: 20px;
  padding-bottom: 10px;
  border-radius: 0% !important;
  margin: 0 auto 20px;
  width: 230px !important;
  }

.section-form {
    width: 45% !important;
}

}
  
  
 .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
}

.form-consent label {
  line-height: 1.5;
}

.form-consent a {
  color: #007bff;
  text-decoration: underline;
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff1978; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
}


.logo-ic{
  width: 15vh;
  max-width: 300px;
  height: auto;
  animation: fadeIn 1s ease-in-out, pulse 1.5s infinite ease-in-out;
}

/* Animación de entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Animación de palpitación */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}