* {
  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%;
}


.navbar a{
  color: white !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px !important;
  line-height: 1.2;
}

.language-btn {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px !important;
  line-height: 1.2;
  background: none;
  border: none;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
}

a:hover {
  text-decoration: none;
}

.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-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 2vh, 14px);
  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);
  border-radius: 0;
}

.navbar.closed {
  border-radius: 20px;
}

.navbar.open {
  border-radius: 20px 20px 0 0;
}

.language-selector {
  position: relative;
  display: inline-flex;
  padding-bottom: 10px;
  padding-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px !important;
}

.language-dropdown {
  display: none;
  position: absolute;
  color: black;
  top: 100%;
  bottom: 10px;
  left: 10px;
  background: rgba(128, 128, 128, 0.7);
  min-width: 200px;
  z-index: 1010;
}

.language-dropdown a {
  display: block;
  background: white;
  padding: 10px 12px;
  text-decoration: none;
  color: black !important;
}

.language-dropdown a:first-child  {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.language-dropdown a:first-child:hover {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.language-dropdown a:last-child{
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.language-dropdown a:last-child:hover{
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.language-dropdown a:hover {
  background: white;
  color: #ff1978 !important;
  border-radius: 0;
  user-select: none;
}

.language-dropdown.show {
  display: block;
}

@media (min-width: 1201px) {
  .menu-btn {
    display: none;
  }
 
 .language-selector {
  position: relative;
  display: inline-flex;
  padding-bottom: 0px;
  padding-top: 0px;
}

.dropdown {
    display: flex !important;
    position: static;
    background: none;
    width: auto;
    border-radius: 0;
    padding-bottom: 0px;
  padding-top: 0px;
}

  .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;
}

.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;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.swiper-slide {
  position: relative;
 overflow: hidden;
 inset: 0 !important;
 width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.section-global {
  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-global h2,
.section-global p,
.section-global img {
  margin: 0px; 
  padding: 0;
}

.section-global h2 {
  font-size: clamp(1vh, 5vh, 6rem) !important;
  font-stretch: normal; 
  letter-spacing: normal; 
  white-space: normal; 
  max-width: 100%; 
  word-break: break-word;
}

.section-global h3 {
  font-size: clamp(1vh, 4vh, 16px) !important;
}

.section-global p{
  font-size: clamp(1vh, 2vh, 4rem) !important;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1.4; 
  max-width: 95%;
  word-break: break-word;
  white-space: normal;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.icon {
  width: 4vh !important;
  height: 4vh !important;
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 2vh;
  transition: background-color 0.3s, color 0.3s;
}

.icon:hover {
  background-color: #333;
  color: #fff;
}

.facebook { background-color: black; color: white; }
.instagram { background-color: black; color: white; }
.twitter { background-color: black; color: white; }

.footer {
  text-align: center;
  padding: 20px;
  background-color: transparent;
  font-size: clamp(1vh, 1.5vh, 2rem) !important;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1.4; 
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-row a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer-row a:hover {
  color: white;
}

.footer-info {
  color: white;
  font-size: clamp(1vh, 1.5vh, 15px) !important;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1.4; 
}

.store-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  color-scheme: black only;
  forced-color-adjust: none;
  -webkit-print-color-adjust: exact;
}

.store-btn {
  position: relative;
  margin-top: 15px;
  font-size: clamp(1vh, 3vh, 3.5rem) !important;
  padding: 15px 25px;
  margin-left: 6px;
  margin-right: 10px !important;
  border: 2px solid transparent; 
  border-radius: 10vh;
  background-color: white;
  color:black;
  cursor: pointer;
  font-weight: 900;
  transition: background-color 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.store-btn:hover {
  background-color: #ff1978;
}

.store-btn img {
  width: 4vh !important;
  height: 4vh !important;
  max-width: 70px;
  max-height: 70px;
}

.store-btn ios-btn img {
  width: 5vh !important;
  height: 5vh !important;
  max-width: 80px;
  max-height: 80px;
}

.button_download{
  position: relative;
  margin-top: 15px;
  font-size: clamp(1vh, 3vh, 3.5rem) !important;
  padding: 10px 20px;
  margin-left: 6px;
  margin-right: 10px !important;
  border: 2px solid transparent; 
  border-radius: 10vh;
  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;
}

.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);
  }
}

.icono-1 {
  width: 12vh !important;
  max-width: 200px;
  height: 12vh !important;
  max-height: 200px;
  display: block !important;
  object-fit: cover !important;
  border-radius: 50%;
}

.icono-lp{
  width: 30vh !important;
  max-width: 450px;
  display: block !important;
  object-fit: cover !important;
}

.icono-dino {
  width: 15vh !important;
  max-width: 250px;
  height: 15vh !important;
  max-height: 250px;
  display: block !important;
  object-fit: cover !important;
}

#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;
}

.text-gradient {
   font-size: clamp(1vh, 5vh, 6rem) !important;
  font-stretch: normal; 
  letter-spacing: normal; 
  white-space: normal; 
  max-width: 100%; 
  word-break: break-word;
  font-weight: bold;
      background: linear-gradient(to right, #ff0000, #ff6600, #ffa500);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
     
      background-clip: text;
      color: transparent;
    }
    
    .text-gradient1 {
   font-size: clamp(1vh, 5vh, 6rem) !important;
  font-stretch: normal; 
  letter-spacing: normal; 
  white-space: normal; 
  max-width: 100%; 
  word-break: break-word;
  font-weight: bold;
      background: linear-gradient(135deg, #a0e9ff, #00cfff, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.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/friendship-rizee.webp') center/cover no-repeat;
  filter: blur(0.5px) brightness(0.6);
  z-index: -1;
}

.swiper-slide:nth-child(2) video.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(1);
  z-index: -1;
  pointer-events: none;
}

.swiper-slide:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url('https://pub-61fc579dd1b34337825d49e443f261d9.r2.dev/ldp.webp') center/cover no-repeat;
  filter: blur(0.5px) brightness(0.6);
  z-index: -1;
}

.swiper-slide:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url('https://pub-61fc579dd1b34337825d49e443f261d9.r2.dev/rizee-chat.webp') center/cover no-repeat; ;
  filter: blur(0.5px) brightness(0.6);
  z-index: -1;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease , transform 0.6s ease;
}

.slide-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

.swiper-slide:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url('https://pub-61fc579dd1b34337825d49e443f261d9.r2.dev/rizee-vibes.webp') center/cover no-repeat;
  filter: blur(0.5px) brightness(0.6);
  z-index: -1;
}

a {
  color: white !important;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1vh, 1.5vh, 15px) !important;
  line-height: 1.4;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* privacy */

.Main-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}

.header{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: black;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
  gap: 10px;
}

.header-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.faq-answer a {
  color: #ff1978 !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px !important;
  line-height: 1.4;
  text-decoration: none;
}

.header a:hover {
  text-decoration: none;
}

.header img{
  width: 6.5vh !important;
  height: 6.5vh !important;
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.Main-header.header.one img{
  width: 40px !important;
  height:  40px !important;
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.search-box {
  width: 90%;
  max-width: 500px;
  padding: 0.75rem;
  margin: 1rem auto;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  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);
}

.no-results {
    display: none;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #666;
    background: white;
    border-radius: 8px;
    margin-top: 20px;
}

.faq-container {
  display: inherit;
  flex-direction: column;
  align-items: center;
  width: 90vw !important;
  margin: 1rem auto; 
  background: white;
  border-radius: 10px;
}

.faq-category{ 
  margin-bottom: 1rem; 
}

.faq-category h2 { 
  display: block;
  width: 95vw;
  font-weight: bold !important;
  font-size: 22px !important;
  font-weight: normal;
  color: #ff1978;
  padding: 10px;
  text-decoration: none;
}

.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 !important;
    font-stretch: normal;
    letter-spacing: normal;
    line-height: 1.4; 
    max-width: 98%;
    color: black;
    word-break: break-word;
    white-space: normal;
}

.faq-answer {
    display: none; 
    padding: 10px; 
    color: black;
    background: #fff; 
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px !important;
    font-stretch: normal; 
    letter-spacing: normal; 
    white-space: normal; 
    max-width: 100%; 
    word-break: break-word;
}

.Main-header .header h1,{
  all: unset;
  display: block;
  font-size: 20px !important;
  font-weight: normal;
  color: white !important;
  padding: 15px;
  text-decoration: none;
}

.Main-header .header h2, .Main-header .header a {
  all: unset;
  display: block;
  font-size: 16px !important;
  font-weight: normal;
  color: white !important;
  padding: 15px;
  text-decoration: none;
}
