@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik+Mono+One&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  user-select: none;
}
html {
  scroll-behavior: smooth;
}
/* MODAL */
#background {
  overflow: hidden;
}
.modal-cointainer {
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  inset: 0;
  background-color: #00000048;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 10000;
}

.modal-cointainer.open {
  opacity: 1;
  visibility: visible;
}
#wsp {
  width: 80px;
  height: 80px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10000001;
}
#wsp img {
  width: 100%;
  height: 100%;
}
.modal {
  transform: translateY(-200%);
  transition: transform 0.3s ease; /* 👈 AQUÍ va la transición */
  width: auto;
  height: auto;
  max-height: 95vh;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  user-select: none;
  cursor: pointer;
  overflow: auto;
}

.modal-cointainer.open .modal {
  transform: translateY(0);
}
.close-modal {
  position: fixed;
  width: 30px;
  height: 30px;
  background-color: #2c3e50;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 5px;
  right: 5px;
  border-radius: 50%;
}
.seo-hidden {
  position: absolute;
  left: -9999px;
}
button:focus {
  outline: none;
}
button {
  border: none;
  cursor: pointer;
}
input {
  border: none;
  padding-left: 10px;
}
input:focus {
  outline: none;
}
ul,
ol {
  list-style: none;
}
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}
header {
  width: 100%;
  height: 120px;
  /*   background-color: #ff0385; */
  background: linear-gradient(
    to right,
    #050d6c 0%,
    #08b6f9 35%,
    #4354a1 75%,
    #050d6c 100%
  );
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  z-index: 900;
}

header ul {
  color: #fff;
  display: flex;
  gap: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
header ul li a {
  font-size: 23px;
  font-weight: bold;
}

header > a {
  height: 72px;
  font-size: 30px;
  border-radius: 15px;
  /* background-color: #f6275b; */
  background-color: #0078b9;
  color: #fff !important;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 3px solid #2eb9f4;
}

/* Apertur de link */
.texto {
  position: relative;
  text-decoration: none;
  color: black;
}
.texto::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: -5px;

  width: 0%;
  height: 3px;

  background: #fff;

  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.texto:hover::after {
  width: 100%;
}
main {
  position: relative;
  width: 100%;
  height: auto;
  padding: 20px 0;
  background-image: url("img/fondo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100%;
}
main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.993),
    rgba(255, 255, 255, 0)
  );
  transition: opacity 0.4s ease;
}

main .info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.titulathon {
  margin-top: 30px;
  width: 360px;
  height: 375px;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.titulathon span {
  font-family: "Rubik Mono One", monospace;
  font-size: 45px;
}
.titulathon .gran {
  width: 85%;
}
.titulathon .mother {
  width: 180px;
}
.titulathon .thon {
  width: 85%;
}
.titulos {
  margin-top: -35px;
  width: 300px;
}
.info > button {
  width: 350px;
  height: 60px;
  border-radius: 15px;
  color: #fff;
  background-color: #fc137c;
  font-weight: bold;
  font-size: 16px;
  margin-top: -10px;
}

.disponibilidad {
  position: relative;
  margin-top: 20px;
  border-radius: 15px;
  width: 450px;
  height: 250px;
  background: url("img/video-main.png");
  z-index: 100;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.disponibilidad .play {
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  cursor: pointer;
  transition: scale 0.3s ease;
}
.disponibilidad .play:hover {
  scale: 1.01;
}

.disponibilidad .mensaje {
  position: absolute;

  bottom: 0;
  right: 0;
  width: 250px;
  height: 45px;
  background: linear-gradient(
    to right,
    #050d6c 0%,
    #08b6f9 35%,
    #4354a1 75%,
    #050d6c 100%
  );
  border: 3px solid #fff;
  color: #fff;

  /* empieza arriba */
  transform: translateY(0);

  opacity: 0;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 25px;
  font-weight: bold;
}

.disponibilidad .mensaje img {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 80px;
}

/* hover */
.disponibilidad:hover .mensaje {
  /* baja */
  transform: translateX(250px);

  opacity: 1;
}
.disponibilidad .data {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.disponibilidad .data .coyllor {
  width: 60%;
}
.disponibilidad .data .coyllor img {
  width: 100%;
  height: 100%;
}
.disponibilidad .data .mag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
.disponibilidad .data p {
  font-size: 28px;
  font-weight: bold;
}
.disponibilidad .data span {
  font-size: 10px;
}

.lotes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}
.lotes img {
  width: 85%;
}

.lotes button {
  width: 70%;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(
    to right,
    #4b7516 0%,
    #84ac2d 35%,
    #84ac2d 53%,
    #84ac2d 75%,
    #4b7516 100%
  );
  color: #fff;
  border-radius: 6px;
  border: 2px solid #00ff00;
}
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding: 40px 0;
}
form {
  width: 450px;
  height: 600px;
  background-color: #fff;
  z-index: 200;
  border-radius: 20px;
  background: linear-gradient(to right, #c0eafb 0%, #ffffff 43%, #abe3fa 100%);
  border: 8px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
form h2 {
  font-size: 30px;
  color: #0078b9;
  font-weight: 800;
  text-align: center;
}
form p {
  font-weight: 500;
}
.input-form {
  width: 80%;
  height: 65px;
  border: 2px solid #dadada;
  background-color: #fff;
  border-radius: 15px;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.input-form i {
  font-size: 28px;
  color: #dadada;
}
.input-form input {
  height: 90%;
  width: 80%;
  font-size: 16px;
  border-radius: 15px;
}
.input-form input::placeholder {
  color: #dadada;
  font-weight: bold;
}
.check-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 2px 0;
  cursor: pointer;

  font-family: Arial, sans-serif;

  width: 75%; /* MODIFICAS AQUÍ EL ANCHO */
}

/* ocultar checkbox original */
.check-container input {
  display: none;
}

/* caja */
.check {
  user-select: none;
  width: 23px;
  height: 23px;

  border: 4px solid #2eb9f4;
  border-radius: 3px;

  position: relative;

  box-sizing: border-box;

  flex: 0 0 23px; /* evita deformación */

  margin-top: 2px;

  transition: 0.25s ease;
}

/* check */
.check::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 45%;

  width: 3px;
  height: 10px;

  border-right: 4px solid #3b3b3b;
  border-bottom: 4px solid #3b3b3b;

  transform: translate(-50%, -50%) rotate(45deg) scale(0);

  transition: 0.2s ease;
}

/* activo */
.check-container input:checked + .check::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

/* texto */
.txt {
  color: #706f6f;

  font-size: 11.5px;
  font-weight: 700;

  line-height: 1.15;

  flex: 1;
}
form button {
  width: 80%;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(
    to right,
    #2eb9f4 0%,
    #08b6f9 35%,
    #0089da 65%,
    #0078b9 100%
  );
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  margin-top: 15px;
}
.select-container {
  width: 150px;
  position: relative;
}

/* SELECT */

.custom-select {
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.selected {
  display: flex;
  align-items: center;
  gap: 10px;
}

.selected img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
}

/* DROPDOWN */

.dropdown {
  position: absolute;
  width: 100%;
  background: white;
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 100;
}

.dropdown.active {
  display: block;
}

/* SEARCH */

.search-box {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.search-box input {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  background: #f3f3f3;
  border-radius: 8px;
  font-size: 14px;
}

/* OPTIONS */

.options {
  max-height: 300px;
  overflow-y: auto;
}

.option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: 0.2s;
}

.option:hover {
  background: #f5f7fb;
}

.option img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
}

.country-info {
  display: flex;
  flex-direction: column;
}

.country-name {
  font-size: 14px;
  color: #222;
}

.country-code {
  font-size: 12px;
  color: #666;
}

.arrow {
  transition: 0.3s;
}

.arrow.rotate {
  transform: rotate(180deg);
}

/* live */

.live {
  width: 100%;
  height: 250px;
  background: linear-gradient(
    to right,
    #050d6c 0%,
    #08b6f9 35%,
    #4354a1 75%,
    #050d6c 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.first {
  text-align: center;
  color: #fff;
  font-size: 40px;
}
.first strong {
  font-size: 55px;
}
.second {
  text-align: center;
  color: #fff;
  font-size: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  padding: 0 30px;
}
.second i {
  font-size: 100px;
  margin-right: 10px;
}
.second span {
  font-size: 35px;
}
#contador {
  font-size: 24px;
}
.live-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: bold;
}
.live-data a {
  width: 150px;
  height: 45px;
  background-color: #ff0000;
  color: #fff;
  border-radius: 10px;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
  height: auto;
  padding: 30px 0;
  background: linear-gradient(120deg, #c0eafb 0%, #ffffff 41%, #abe3fa 100%);
}

.titulo-seccion {
  padding: 25px;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  color: #0078b9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.titulo-seccion p {
  background-color: #ffff;
  padding: 10px 15px;
  border-radius: 15px;
}
.line {
  display: inline-block;
  width: 250px;
  height: 10px;
  background-color: #0078b9;
}
.rounda {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0078b9;
  margin-left: 5px;
  margin-right: 15px;
}
.roundb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0078b9;
  margin-left: 15px;
  margin-right: 5px;
}

.proyectos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.proyecto {
  position: relative;
  width: 750px;
  height: 550px;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.proyecto::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 20%;
  border-radius: 40px 40px 0 0;
  background: linear-gradient(
    to bottom,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.904) 25%,

    rgba(255, 255, 255, 0) 100%
  );

  pointer-events: none;
  z-index: 200;
}
.proyecto::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 50%;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(
    to top,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.904) 50%,

    rgba(255, 255, 255, 0) 100%
  );

  pointer-events: none;
}
.proyecto .image {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
  left: 0;
  top: 0;
}
.proyecto .logo {
  position: absolute;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  z-index: 200;
}
.proyecto.b .logo {
  top: 50px;
}

.container-cards {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 200;
}
.card {
  width: 150px;
  height: 180px;
  border-radius: 25px;
  border: 4px solid #fff;
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-size: 18px;
  position: relative;
}
.card .agua {
  position: absolute;
  top: 50%;
  scale: 1.1;

  transform: translateY(-50%);
}
.huracan {
  background: linear-gradient(
    to right,
    #053660 0%,
    #05369f 34%,
    #053695 75%,
    #053660 100%
  );
}
.tupac {
  background: linear-gradient(
    to bottom,
    #053660 0%,
    #0370a1 34%,
    #0370a1 75%,
    #053660 100%
  );
}
.proyecto a {
  cursor: pointer;
}
.proyecto a.typea {
  position: absolute;
  left: 28%;
  transform: translateX(-50%);
  bottom: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 200;
  width: 40%;
  height: 50px;
  border-radius: 15px;
  border: 3px solid #fff;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.proyecto a.typeb {
  position: absolute;
  left: 72%;
  transform: translateX(-50%);
  bottom: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 200;
  width: 40%;
  height: 50px;
  border-radius: 15px;
  border: 3px solid #fff;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.participation {
  width: 80%;
  height: 530px;
  background: linear-gradient(120deg, #c0eafb 0%, #ffffff 42%, #abe3fa 100%);
  margin: 40px auto;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
}
.step figure {
  width: 180px;
  height: 180px;
  border: 5px solid #0078b9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c0eafb;
  position: relative;
}
.step figure span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #0078b9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  left: 0;
  bottom: -20px;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}
.step strong {
  font-size: 28px;
  font-weight: 800;
  color: #0078b9;
}
.step p {
  font-weight: 400;
  font-size: 20px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  position: relative;
}
.step figure img {
  scale: 0.75;
}

.step:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 90px;
  right: -220px;

  width: 210px;
  height: 10px;

  background: radial-gradient(circle, #c0eafb 35%, transparent 40%);

  background-size: 18px 10px;
  background-repeat: repeat-x;

  animation: moveDots 1s linear infinite;
}
.container-last {
  margin: 20px auto;
  width: 80%;
  height: 520px;
  display: grid;
  grid-template-columns: 40% 59%;
  grid-template-rows: 100%;
  justify-content: space-between;
}

.preguntas {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.preguntas h3 {
  font-size: 36px;
  color: #0078b9;
  margin-bottom: 10px;
}

/* ITEM */

.faq-item {
  width: 100%;
}

/* PREGUNTA */

.faq-item p {
  width: 100%;

  padding: 16px 20px;

  border-radius: 15px;

  border: 2px solid #0078b9;

  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;

  transition: 0.3s;

  user-select: none;
  color: #0078b9;
}

.faq-item p:hover {
  background: #fff3f7;
}

/* FLECHA */

.arrow {
  font-style: normal;

  font-size: 22px;

  transition: 0.3s ease;
}

/* RESPUESTA */

.faq-item span {
  display: block;

  max-height: 0;

  overflow: hidden;

  opacity: 0;

  margin-left: 10px;
  width: calc(100% - 10px);

  padding: 0 20px;

  border-radius: 15px;

  border: 2px solid transparent;

  font-weight: bold;

  color: #0078b9;

  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease,
    margin-top 0.3s ease,
    border 0.3s ease;
}

/* ACTIVO */

.faq-item.active span {
  max-height: 200px;

  opacity: 1;

  padding: 15px 20px;

  margin-top: 10px;

  border: 2px solid #abe3fa;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
.fa-circle-arrow-down {
  color: #abe3fa;
}
.oportunidad {
  position: relative;
  background: linear-gradient(
    -90deg,
    #2eb9f4 0%,
    #08b6f9 35%,
    #0089da 75%,
    #0078b9 100%
  );
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 25px;
  padding: 30px;
}
.oportunidad h2 {
  background: linear-gradient(
    to right,
    #050d6c 0%,
    #08b6f9 35%,
    #4452cc 75%,
    #050d6c 100%
  );
  color: #fff;
  padding: 10px 15px;
  font-size: 50px;
  font-weight: bold;
  border-radius: 10px;
}
.oportunidad img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
}
.oportunidad h3 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  text-align: left;
}

.oportunidad p {
  color: #fff;
  text-align: left;
  font-size: 28px;
}

.oportunidad a {
  background: linear-gradient(
    to right,
    #2eb9f4 0%,
    #08b6f9 35%,
    #0089da 65%,
    #0078b9 100%
  );
  color: #fff;
  width: 50%;
  height: 80px;
  border-radius: 20px;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  z-index: 1000;
  align-self: center;
  padding: 20px;
}
/* ANIMACION */

footer {
  width: 100%;
  height: 90px;
  background: linear-gradient(
    to right,
    #050d6c 0%,
    #08b6f9 35%,
    #4354a1 75%,
    #050d6c 100%
  );
  padding: 10px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
footer img {
  height: 100%;
}

footer ul {
  display: flex;
  font-size: 30px;
  gap: 10px;
}

.responsive-btn {
  display: none;
}
.container-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.container-details img {
  width: 250px;
}
.container-details p {
  width: 300px;
}
.container-details p strong {
  font-size: 26px;
  font-weight: bold;
}
.container-details p strong.success {
  color: #ff7e0d;
}
.container-details p strong.error {
  color: tomato;
}
.container-details p span {
  margin-left: 5px;
  font-size: 20px;
}
#term {
  user-select: all;
  pointer-events: all;
}
.terms-section {
  width: 100%;

  padding: 80px 20px;

  background: linear-gradient(to right, #ffe0e9 0%, #ffffff 45%, #ffe0e9 100%);
}

.terms-container {
  max-width: 1100px;

  margin: auto;

  background: #fff;

  border-radius: 35px;

  padding: 60px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.terms-container h2 {
  text-align: center;

  font-size: 48px;

  color: #fc007a;

  margin-bottom: 15px;
}

.subtitle {
  text-align: center;

  color: #666;

  font-size: 18px;

  margin-bottom: 50px;
}

.term-box {
  margin-bottom: 35px;

  padding: 25px 30px;

  border: 2px solid #ffd2e1;

  border-radius: 20px;

  transition: 0.3s ease;
}

.term-box:hover {
  transform: translateY(-4px);

  box-shadow: 0 8px 18px rgba(252, 0, 122, 0.12);
}

.term-box h3 {
  color: #0078b9;

  font-size: 26px;

  margin-bottom: 15px;
}

.term-box p {
  color: #555;

  line-height: 1.8;

  font-size: 17px;

  margin-bottom: 15px;
}

.terms-footer {
  margin-top: 50px;

  text-align: center;

  color: #888;

  font-size: 15px;
}

/* OVERLAY */

.overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.4);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* SIDEBAR */

.sidebar {
  position: fixed;
  top: 0;
  left: -80%;

  width: 80%;
  height: 100dvh;

  padding: 30px;

  background: linear-gradient(
    to right,
    #050d6c 0%,
    #08b6f9 35%,
    #4354a1 75%,
    #050d6c 100%
  );

  transition: 0.4s ease;

  z-index: 1003;

  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar.active {
  left: 0;
}

.sidebar h2 {
  color: white;
  font-size: 30px;
}

.sidebar a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 12px 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.sidebar a:hover {
  background: rgba(255, 255, 255, 0.15);
}
/* BOTON CERRAR */

.close-sidebar {
  position: absolute;

  top: 15px;
  right: 15px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 10px;

  cursor: pointer;

  font-size: 20px;
  font-weight: bold;

  color: white;

  background: rgba(255, 255, 255, 0.15);

  transition: 0.3s;
}

.close-sidebar:hover {
  background: rgba(255, 255, 255, 0.25);

  transform: scale(1.05);
}
#hmb {
  display: none;
}
/* RESPONSIVE */

.transformation {
  width: 800px;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transformation img {
  width: 95%;
  object-fit: fill;
}
footer ul li a {
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(
    to right,
    #050d6c 0%,
    #08b6f9 35%,
    #4354a1 75%,
    #050d6c 100%
  );
  width: 40px;
  height: 40px;
  font-size: 25px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
/* Animación */
.extra-info {
  text-align: center;
  font-size: 28px;
  color: #0078b9;
  margin-bottom: 20px;
}

.orbit-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.orbit-box {
  display: grid;
  width: 600px;
  height: 220px;
  grid-template-columns: 40% 60%;
  grid-template-rows: 100%;
  padding: 20px 25px;
  border-radius: 25px;
}
.orbit-data {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.orbit-data .water_mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: auto;
}
.orbit-image {
  position: relative;
}
.orbit-image .orbita {
  width: 150px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-image img {
  width: 100%;
  height: 100%;
}

.logo_proyecto {
  width: 160px;
}
.orbit-data p {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}
.btn-type-a {
  width: 120px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #050d6c 0%,
    #08b6f9 35%,
    #4452cc 75%,
    #050d6c 100%
  );
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: 3px solid #00ffff;
}
.btn-type-b {
  width: 120px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    #1f1b63 0%,
    #c064ff 35%,
    #3f3aa9 75%,
    #1f1b63 100%
  );
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: 3px solid #ff00ff;
}
.hechos-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 520px;
  gap: 25px;
}
.first-facfs {
  width: 580px;
  height: 520px;
  padding: 15px 10px;
  background-color: #fff;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 100%;
}
.hechos-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.content-hechos {
  background: linear-gradient(
    150deg,
    #053660 0%,
    #05369f 35%,
    #053695 75%,
    #053660 100%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  border-radius: 15px;
  height: 65%;
  gap: 5px;
}
.content-hechos strong {
  font-size: 45px;
  text-align: center;
}
.content-hechos p {
  text-align: center;
}
.content-hechos span {
  color: #ff00ff;
}
.first-facfs figure {
  width: 100%;
  height: 100%;
  position: relative;
}
.first-facfs figure img.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  cursor: pointer;
  transition: scale 0.3s ease;
}
.first-facfs figure img.play:hover {
  scale: 1.01;
}
.first-facfs figure img {
  width: 100%;
  height: 100%;
}
.hechos-container > figure {
  width: 500px;
  height: 100%;
}
.hechos-container > figure img {
  width: 100%;
  height: 100%;
}

.swiper {
  max-width: 600px;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #333;
  height: calc((100% - 30px) / 2) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#container_huracan {
            width: 100vw;
            height: 100vh;
        }
#container_agustin {
            width: 100vw;
            height: 100vh;
        }
.close-modal{
  z-index: 100000;
}
@keyframes moveDots {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 18px 0;
  }
}
@keyframes rebote {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  20% {
    transform: translate(-50%, -60%) scale(1.15);
  }

  40% {
    transform: translate(-50%, -45%) scale(0.95);
  }

  60% {
    transform: translate(-50%, -55%) scale(1.08);
  }

  80% {
    transform: translate(-50%, -48%) scale(0.98);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Laptops comunes */
@media (1024px <= width <= 1599px) {
  nav ul li a {
    font-size: 14px;
  }
  header > a {
    width: 250px;
    height: 50px;
    font-size: 25px;
    border-radius: 15px;
    background-color: #0078b9;
    color: #fff;
    font-weight: bold;
    position: relative;
  }
  .tik {
    width: 120px;
  }
  .live {
    padding: 25px 20px;
    gap: 15px;
  }
  .first {
    text-align: center;
    color: #fff;
    font-size: 30px;
  }
  .first strong {
    font-size: 32px;
  }
  .second span {
    font-size: 24px;
  }
  .second i {
    font-size: 90px;
  }
  #contador {
    font-size: 12px;
  }
  .live-data p {
    font-size: 12px;
  }
  .live-data a {
    width: 100px;
    height: 25px;
    background-color: #ff0000;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .proyecto {
    position: relative;
    width: 500px;
    height: 550px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  .container-cards {
    width: 95%;
    flex-wrap: wrap;
  }
  .card {
    width: 130px;
    height: 150px;
    font-size: 15px;
    border-radius: 15px;
  }
  .proyecto a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 200;
    width: 80%;
    height: 60px;
    border-radius: 15px;
    border: 3px solid #fff;
    font-size: 26px;
    color: #fff;
    font-weight: bold;
  }
  .participation {
    width: 95%;
    padding: 20px 40px;
  }
  .container-last {
    margin: 20px auto;
    width: 95%;
    height: auto;
    display: grid;
    grid-template-columns: 40% 59%;
    grid-template-rows: 100%;
    justify-content: space-between;
  }
  .oportunidad a {
    width: 70%;
    font-size: 30px;
  }
}
/* Rosas */
.rosa {
  position: absolute;
  top: 40px;
  font-size: 20px;
  animation: caer linear infinite;
  opacity: 0.8;
}

@keyframes caer {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}
@media screen and (max-width: 1023px) {
  .extra-info{
    font-size: 20px;
  }
  .orbit-container {
    flex-direction: column;
    gap: 25px;
  }
  .orbit-box {
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  .orbit-image {
    margin-top: 15px;
  position: relative;
  width: 200px;
  height: 120px;

}
.orbit-data button{
  z-index: 1001;
}
.hechos-container{
  height: auto;
  flex-direction: column;
}
.first-facfs{
  width: 95%;
  grid-template-columns: 45% 55%;
  gap: 5px;
}
.hechos-container figure{
  margin: auto 0;
  width: 95%;
  height: 50%;
}
.swiper{
  padding: 25px;
  width: 95%;
  height: 280px;
}
.hechos-data{
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hechos-data img{
  width: 130px;
}
.content-hechos {
  background: linear-gradient(
    150deg,
    #053660 0%,
    #05369f 35%,
    #053695 75%,
    #053660 100%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 15px;
  height: 65%;
  gap: 5px;
}
.content-hechos strong {
  font-size: 45px;
  text-align: center;
}
.content-hechos p {
  text-align: center;
}
  main {
    margin-top: 200px;
  }
  .sidebar {
    width: 80%;
  }
  .terms-container {
    padding: 30px 20px;

    border-radius: 25px;
  }

  .terms-container h2 {
    font-size: 34px;
  }

  .term-box {
    padding: 20px;
  }

  .term-box h3 {
    font-size: 22px;
  }

  .term-box p {
    font-size: 15px;
  }
  .modal {
    margin: auto 0;
    width: 95%;
    height: auto;
    padding: 5px;
  }
  .modal-cointainer {
    align-items: start;
  }
  body {
    overflow-x: hidden;
  }

  /* HEADER */
  header {
    position: fixed;
    top: 0;
    height: 200px;
    flex-direction: column;
    padding: 20px 0;
    gap: 10px;
    z-index: 1002;
  }
  header > a {
    width: 200px;
    height: 50px;
    font-size: 20px;
    margin-left: 80px;
  }
  #hmb {
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0078b9;
  }
  .fa-solid {
    padding: 3px 0;
    font-size: 36px;
    border-radius: 5px;
    background-color: #fff;
    color: #ff4586;
    position: absolute;
    left: -32%;
    top: 4px;
  }
  nav {
    display: none;
  }
  main {
    background-image: none;
    background-color: #fff1ea;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  main .info {
    width: 100dw;
  }
  .titulathon {
    margin-top: 30px;
    width: 80%;
    height: auto;
    padding: 30px 0;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .titulathon .gran {
    width: 55%;
  }
  .titulathon .mother {
    width: 100px;
  }
  .titulathon .thon {
    width: 55%;
  }
  .titulos {
    margin-top: -35px;
    width: 55%;
  }
  .info > button {
    margin-top: 10px;
    width: 90%;
  }
  .disponibilidad {
    position: relative;
    margin-top: 20px;
    border-radius: 15px;
    width: 90%;
  }
  .form {
    width: 100%;
  }
  .form .message {
    width: 90%;
    height: auto;
    margin-top: 20px;
  }
  .heart.a {
    top: 10px;
    left: 15px;
    animation: rebote 2s infinite;
  }
  .heart.b {
    bottom: -30px;
    right: -35px;
    animation: rebote 4s infinite;
  }
  .message img {
    width: 80%;
  }
  form {
    width: 90%;
  }
  .input-form {
    width: 95%;
    height: 65px;
    border: 2px solid #dadada;
    background-color: #fff;
    border-radius: 15px;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  form button {
    width: 90%;
    font-size: 20px;
  }
  .live {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
  }
  .first {
    text-align: center;
    color: #fff;
    font-size: 20px;
  }
  .first strong {
    font-size: 22px;
  }
  .second {
    text-align: center;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: none;
    border-right: none;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    padding: 20px 30px;
    gap: 15px;
  }
  .second i {
    font-size: 60px;
  }
  .second span {
    font-size: 25px;
  }
  #contador {
    font-size: 16px;
  }
  .tik {
    width: 120px;
  }
  .titulo-seccion {
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #0078b9;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .line {
    display: inline-block;
    width: 150px;
    height: 8px;
    background-color: #0078b9;
  }
  .rounda {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0078b9;
    margin-left: 5px;
    margin-right: 15px;
  }
  .roundb {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0078b9;
    margin-left: 15px;
    margin-right: 5px;
  }
  .proyectos {
    flex-direction: column;
    gap: 20px;
  }
  .proyecto {
    position: relative;
    width: 90%;
    height: 500px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
  }
  .container-cards {
    width: 100%;
    flex-wrap: wrap;
  }
  .card {
    width: 130px;
    height: 150px;
    font-size: 15px;
    border-radius: 15px;
  }
  .proyecto a.typea {
    position: absolute;
    left: 28%;
    transform: translateX(-50%);
    bottom: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 200;
    width: 40%;
    height: 50px;
    border-radius: 15px;
    border: 3px solid #fff;
    font-size: 10px;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .proyecto a.typeb {
    position: absolute;
    left: 72%;
    transform: translateX(-50%);
    bottom: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 200;
    width: 40%;
    height: 50px;
    border-radius: 15px;
    border: 3px solid #fff;
    font-size: 10px;
    color: #fff;
    font-weight: bold;
    text-align: center;
  }
  .participation {
    width: 90%;
    height: auto;
    margin: 30px auto;
    border-radius: 60px;
    flex-direction: column;
    padding: 30px;
    gap: 100px;
  }
  .step {
    gap: 5px;
  }
  .step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 80px;
  }
  .step figure {
    width: 120px;
    height: 120px;
  }
  .step figure img {
    width: 50%;
  }
  .step figure span {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #fc007a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    left: 0;
    bottom: -10px;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
  }
  .step strong {
    font-size: 22px;
    font-weight: 800;
  }
  .step p {
    font-weight: 400;
    font-size: 14px;
  }
  .container-last {
    margin: 20px auto;
    width: 90%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-content: none;
    gap: 30px;
  }
  .content {
    width: 100%;
    height: auto;
    padding: 30px auto;
    background: linear-gradient(
      to right,
      #ffc1d3 0%,
      #ffffff 41%,
      #ffe0e9 100%
    );
  }
  .preguntas {
    padding: 20px;
    border-radius: 25px;
  }

  .preguntas h3 {
    font-size: 28px;
  }

  .faq-item p {
    font-size: 15px;

    padding: 14px 16px;
  }

  .faq-item span {
    font-size: 14px;
  }
.oportunidad {
  position: relative;
  background: linear-gradient(
    -90deg,
    #2eb9f4 0%,
    #08b6f9 35%,
    #0089da 75%,
    #0078b9 100%
  );
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 25px;
  padding: 30px;
}
.oportunidad h2 {

  padding: 5px 10px;
  font-size: 30px;
  font-weight: bold;
  border-radius: 10px;
}
.oportunidad img {
  position: absolute;
  top: 50%;
  transform: translateY(-30%);
  right: 5px;
  width: 120px;
}
.oportunidad h3 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  text-align: left;
}

.oportunidad p {
  color: #fff;
  text-align: left;
  font-size: 18px;
}

.oportunidad a {
  background: linear-gradient(
    to right,
    #2eb9f4 0%,
    #08b6f9 35%,
    #0089da 65%,
    #0078b9 100%
  );
  color: #fff;
  width: 90%;
  height: 80px;
  border-radius: 20px;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  z-index: 1000;
  align-self: center;
  padding: 20px;
}
  footer {
    height: auto;
    flex-direction: column;
    gap: 15px;
  }
  footer p {
    text-align: center;
  }
  .terms-section {
    padding: 20px 15px;
  }

  .terms-container {
    width: 100%;

    padding: 10px 18px;

    border-radius: 25px;
  }

  .terms-container h2 {
    font-size: 30px;

    line-height: 1.2;
  }

  .subtitle {
    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 30px;
  }

  .term-box {
    padding: 18px;

    border-radius: 18px;

    margin-bottom: 20px;
  }

  .term-box h3 {
    font-size: 20px;

    line-height: 1.3;

    margin-bottom: 12px;
  }

  .term-box p {
    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 12px;
  }

  .terms-footer {
    margin-top: 35px;

    font-size: 13px;

    line-height: 1.5;
  }
  .disponibilidad:hover .mensaje {
    /* baja */
    transform: translateY(45px);

    opacity: 1;
  }
  .transformation {
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .transformation img {
    width: 100%;
    object-fit: fill;
  }
}
