* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}
body {
  background-color: #062735;
}
strong {
  font-family: inherit;
}
#spinner-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #00496b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease-out, visibility 1s ease-out;
}

#spinner-container.fade-out {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  position: absolute;
  width: 9px;
  height: 9px;
}

.spinner div {
  position: absolute;
  width: 50%;
  height: 150%;
  background: #bddb6b;
  transform: rotate(calc(var(--rotation) * 1deg))
    translate(0, calc(var(--translation) * 1%));
  animation: spinner-fzua35 1s calc(var(--delay) * 1s) infinite ease;
}

.spinner div:nth-child(1) {
  --delay: 0.1;
  --rotation: 36;
  --translation: 150;
}

.spinner div:nth-child(2) {
  --delay: 0.2;
  --rotation: 72;
  --translation: 150;
}

.spinner div:nth-child(3) {
  --delay: 0.3;
  --rotation: 108;
  --translation: 150;
}

.spinner div:nth-child(4) {
  --delay: 0.4;
  --rotation: 144;
  --translation: 150;
}

.spinner div:nth-child(5) {
  --delay: 0.5;
  --rotation: 180;
  --translation: 150;
}

.spinner div:nth-child(6) {
  --delay: 0.6;
  --rotation: 216;
  --translation: 150;
}

.spinner div:nth-child(7) {
  --delay: 0.7;
  --rotation: 252;
  --translation: 150;
}

.spinner div:nth-child(8) {
  --delay: 0.8;
  --rotation: 288;
  --translation: 150;
}

.spinner div:nth-child(9) {
  --delay: 0.9;
  --rotation: 324;
  --translation: 150;
}

.spinner div:nth-child(10) {
  --delay: 1;
  --rotation: 360;
  --translation: 150;
}

@keyframes spinner-fzua35 {
  0%,
  10%,
  20%,
  30%,
  50%,
  60%,
  70%,
  80%,
  90%,
  100% {
    transform: rotate(calc(var(--rotation) * 1deg))
      translate(0, calc(var(--translation) * 1%));
  }

  50% {
    transform: rotate(calc(var(--rotation) * 1deg))
      translate(0, calc(var(--translation) * 1.5%));
  }
}
#contenido {
  display: none;
  padding: 20px;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header {
  width: 100%;
  height: 70px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100;
  background: #062735;
  background: linear-gradient(90deg, #06273594 10%, #ffffff3f 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  transition: background-color 0.5s ease-in-out; /* Transición suave */
}

.header.scrolled {
  background-color: #062735; /* Fondo sólido cuando se haga scroll */
}
.header-logo {
  width: 150px;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.header-logo a {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.header-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.header-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #00111d00;
  margin: 0;
  padding: 0;
}
.nav-link {
  display: block;
  padding: 0rem;
}
.header-nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.header-nav li {
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}
.header-nav li:hover {
  color: #bddb6b;
}
.header-nav a {
  color: white;
  text-decoration: none;
  transition: 0.5s;
}
.header-nav a:hover {
  color: #bddb6b;
}
.bottom-nav {
  display: none;
}
.parallax-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* más que 100% para permitir el desplazamiento */
  background-size: cover;
  background-position: top;
  transform: translateY(0);
  z-index: -1;
  will-change: transform;
}

.section-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  color: white;
}

.principal,
.terciary,
.fourth {
  position: relative;
  overflow: hidden;
}
.principal-title,
.terciary-title,
.fourth-content {
  position: relative;
  z-index: 1;
}
.principal .parallax-bg {
  background-image: url("/assets/image/principal.png");
}

.terciary .parallax-bg {
  background-image: url("/assets/image/terciary-fondo.jpg");
}

.fourth .parallax-bg {
  background-image: url("https://dl.dropboxusercontent.com/scl/fi/izvns0acp0ef70neokdv7/pexels-quintingellar-696205.jpg?rlkey=awfyovhvjwaxjlmt43kt2nbf7&st=2pfd2gz9&");
}

.principal {
  width: 100%;
  height: 100vh;
  background: #2a7b9b;
  background: linear-gradient(
    90deg,
    #01233100 0%,
    #004e2100 50%,
    #000000b0 100%
  );
  padding: 0 0 0 30%;
  box-shadow: inset 0 -15px 15px rgba(0, 0, 0, 0.39);
}
.principal-title {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  color: rgb(255, 255, 255);
  text-shadow: 1px 12px 20px rgba(0, 0, 0, 0.637);
}
.principal-title h1 {
  font-size: 6rem;
}
.principal-title p {
  font-weight: 700;
  font-size: 2rem;
  text-shadow: 1px 12px 20px rgb(0, 0, 0);
}
.thar-one i{
  padding-left: 10px;
}
a.animated-button.thar-one {
  padding:10px 60px;
	color: #fff;
	cursor: pointer;
	display: block;
	position: relative;
	border: 5px solid #bddb6b;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  font-size: 1.5rem;
}
a.animated-button.thar-one:hover {
	color: #051937 !important;
	background-color: transparent;
	text-shadow: none;
    font-weight: 600;
}
a.animated-button.thar-one:hover:before {
	bottom: 0%;
	top: auto;
	height: 100%;
}
a.animated-button.thar-one:before {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0px;
	width: 100%;
	z-index: -1;
	content: '';
	color: #38b17c !important;
	background: #bddb6b;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;

}
.secondary {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #062735;
  flex-direction: column;
  box-shadow: 2px 5px 2px black;
}
.secondary-grid {
  width: 100%;
  height: 60%;
  background-color: #bddb6b;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-template-areas: "div1 div3 div3";
}
.div1 {
  height: 100%;
  grid-area: div1;
  background-color: #e7bd36;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.div1-title {
  width: 100%;
  height: 80%;
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.div1-btn {
  width: 100%;
  height: 20%;
  padding: 10px;
}
.div1-btn a {
  text-decoration: none;
}
.div1-btn button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-style: none;
  background-color: #062735;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 5%;
}
.div1-title h3 {
  font-size: 2.8rem;
  color: white;
}
.div1-title p {
  font-size: 1.8rem;
  color: white;
}
.div2 {
  grid-area: div2;
background: #E7BD36;
background: linear-gradient(90deg, rgba(231, 189, 54, 1) 0%, rgba(87, 199, 133, 1) 100%, rgba(237, 221, 83, 1) 48%);
}
.div2-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0px;
}
.div2-img img {
  width: 500px;
  height: auto;
}
.div3 {
  grid-area: div3;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noticia-slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.noticia-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.noticia-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: white;
}
.noticia-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 39, 53, 0.8),
    rgba(6, 39, 53, 0.4)
  );
  z-index: 0;
}

.noticia-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.noticia-slide-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.noticia-slide-content h2 {
  font-size: 4rem;
  margin-bottom: 10px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

.noticia-slide-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.noticia-slide-content a {
  background-color: #bddb6b;
  color: #062735;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
}
.noticia-slide-content a:hover {
  background-color: #fff;
  color: #062735;
}
.noticia-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.noticia-btn.prev {
  left: 10px;
}
.noticia-btn.next {
  right: 10px;
}

.secondary-bottom {
  width: 100%;
  height: 40%;
  display: flex;
  flex-direction: column;
  background-color: #062735;
}
.secondary-bottom-title {
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 50px 10%;
}
.secondary-bottom-title h3 {
  color: white;
  font-size: 2.5rem;
  font-weight: 500;
}
.secondary-bottom-steps {
  width: 100%;
  height: 60%;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: white;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
}
.step4{
  width: 550px;
  height: 100%;
  overflow: hidden;
}
.step4 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.secondary-bottom-steps h4 {
  font-size: 1.8rem;
}
.secondary-bottom-steps span {
  font-size: 1rem;
}
.secondary-bottom-steps i {
  font-size: 1.8rem;
}
.terciary {
  width: 100%;
  height: 100vh;
  background: #6bdb9800;
    box-shadow: inset 0 -20px 5px rgba(0, 0, 0, 0.699);
}

.terciary-img{
  width: 30%;
  height: auto;
}
.terciary-img img{
  width: 300px;
  height: auto;
  object-fit: contain;
}
.terciary-title {
  width: 100%;
  padding: 50px 50px 50px 50px;
  color: white;
}
.terciary-title h2 {
  font-size: 4rem;
  text-shadow: 2px 5px 10px black;
}
.terciary-title p {
  padding: 0 50% 0 0%;
  font-size: 1.5rem;
}
.terciary-title a {
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  text-decoration: none;
  text-shadow: 2px 5px 10px black;
  color: #ffcc24;
}
/******* Middle section CSS Start ******/
/* -------- Landing page ------- */
.game-section {
  width: 100%;
  height: 100vh;
  background: rgba(32, 32, 32, 0.397);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 0px solid rgba(255, 255, 255, 0.274);
  padding: 60px 0px;
  position: relative;
}
.game-section .owl-stage {
  margin: 10px 100px;
  display: flex;
}
.game-section .item {
  margin: 0 15px 60px;
  width: 320px;
  height: 400px;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  background: #14141400 no-repeat center center / cover;
  border-radius: 16px;
  box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.534);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.game-section .item.active {
  width: 500px;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}
.game-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.712), rgba(0, 0, 0, 0.411));
}
.game-section .item-desc {
  height: 50%;
  padding: 20px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  background-image: linear-gradient(#00000000, #00000000);
}
.game-section .item.active .item-desc {
  height: 150%;
  padding: 120px 20px 0 20px;
  transform: none;
  -webkit-transform: none;
}
.game-section .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.game-section .item.active .item-desc p {
  font-size: 1.3rem;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.game-section .item-desc h3 {
  font-size: 2rem;
  margin: 0;
}
.game-section .owl-theme.custom-carousel .owl-dots {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}
.item-desc button {
  width: 50%;
  height: 50px;
  border-radius: 10px;
  border-style: none;
  background: rgba(32, 32, 32, 0.192);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(32, 32, 32, 0.192);
  position: relative;
  z-index: 9999;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: 0.5s;
}
.item-desc button:hover {
  color: #bddb6b;
}
.points {
  width: 100%;
  height: auto;
  max-height: 100vh;
  background-image: linear-gradient(
    to right bottom,
    #051937,
    #00496b,
    #007e84,
    #38b17c,
    #bddb6b
  );
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: start;
}
.points-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  padding: 0 5% 0 0;
}
.points-content h2 {
  font-size: 6rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  background: linear-gradient(90deg, #bddb6b, #6bdb98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Fallback para navegadores modernos */
  text-fill-color: transparent; /* Estándar experimental */
  text-align: start;
}
.points-content h3 {
  font-size: 3rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  background: linear-gradient(90deg, #bddb6b, #6bdb98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Fallback para navegadores modernos */
  text-fill-color: transparent; /* Estándar experimental */
  text-align: start;
}
.points-content p {
  font-size: 1.2rem;
  text-align: start;
  color: white;
}
.points-img img {
  width: 800px;
  height: auto;
}
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 0 auto;
}

.conversion-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff00;
  color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.conversion-table th,
.conversion-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #dddddd;
  font-weight: 600;
}

.conversion-table th {
  background-color: #051937;
  color: #bddb6b;
  font-weight: bold;
}

.conversion-table tr:last-child td {
  border-bottom: none;
}
.rank {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
    to right top,
    #051937,
    #00496b,
    #007e84,
    #38b17c,
    #bddb6b
  );
  display: flex;
  align-items: center;
  box-shadow: 2px 12px 5px black;
}
.rank-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 0 0 0 5%;
}
.rank-content h2 {
  font-size: 6rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  background: linear-gradient(90deg, #bddb6b, #6bdb98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Fallback para navegadores modernos */
  text-fill-color: transparent; /* Estándar experimental */
  text-align: start;
}
.rank-content h4 {
  font-size: 3rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  background: linear-gradient(90deg, #bddb6b, #6bdb98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Fallback para navegadores modernos */
  text-fill-color: transparent; /* Estándar experimental */
  text-align: start;
}
.rank-content ul {
  color: white;
}
.rank-content p {
  font-size: 1.2rem;
  text-align: start;
  color: white;
}
.rank-content img {
  width: 800px;
  height: auto;
}

.rank-btn {
  width: 100%;
  background-color: #02002400;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 100px);
  grid-column-gap: 10px;
  grid-row-gap: 0px;
}
.medal {
  width: 300px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.medal h3 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
}
.bronce {
  grid-area: 1 / 1 / 3 / 3;
  background-color: white;
  color: #2a7b9b;
}
.silver {
  grid-area: 1 / 3 / 3 / 5;
  background-color: #6bdb98;
}
.gold {
  grid-area: 1 / 5 / 3 / 7;
  background-color: #e7bd36;
  color: white;
}
/* Contenedor de imagen y panel */
.rank-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Imagen visible por defecto */
.rank-img img {
  width: 700px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.4s ease;
}
.rank-img-resp {
  display: none;
}
/* Panel de info oculto por defecto */
.rank-info-panel {
  position: absolute;
  width: 100%;
  max-width: 700px;
  height: 100%;
  background-color: #092c3d;
  color: white;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: slideIn 0.5s ease forwards;
  transition: background-color 0.4s ease, background 0.4s ease;
  border-radius: 20px 0 0 20px;
}

.rank-info-panel.active {
  display: flex;
}

/* Ocultar todas las secciones internas por defecto */
.rank-info-panel .info-content {
  display: none;
}
.rank-info-panel .info-content.active {
  display: block;
}

.rank-info-panel h3 {
  font-size: 4rem;
  font-family: "Anton", sans-serif;
  margin-bottom: 1rem;
}
.rank-info-panel p {
  font-size: 1.2rem;
  max-width: 80%;
  margin: 0;
}

.rank-info-panel .info-content {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rank-info-panel .info-content.active {
  display: block;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  position: relative;
}
/* Fondos personalizados para cada nivel */
.rank-info-panel.bronce-bg {
  background-color: #e8f3ff; /* o un gradiente suave */
  color: #2a7b9b;
}

.rank-info-panel.silver-bg {
  background-color: #c5f7df;
  color: #064134;
}

.rank-info-panel.gold-bg {
  background: linear-gradient(135deg, #f7d46d, #f2b705);
  color: #442c00;
}
/* Botón cerrar */
.close-panel {
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgb(49, 49, 49);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

/* Animación */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fourth {
  width: 100%;
  height: 100vh;
}
.fourth-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0 5% 0 0;
}
.fourth-title {
  width: 100%;
}
.fourth-title h2 {
  color: white;
  font-size: 4rem;
  text-shadow: 2px 2px 2px black;
}
.fourth-title p {
  color: white;
  font-size: 1.2rem;
}
.fourth-title-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
}
.fourth-title-img img {
  width: 1000px;
  height: auto;
  object-fit: contain;
}
.fourth-title-btn {
  display: flex;
  gap: 20px;
}
.animated-btn {
  position: relative;
  padding: 12px 60px;
  font-size: 16px;
  background-color: #dfb322;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease;
  font-weight: 700;
}

.animated-btn .btn-icon {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 2rem;
}

.animated-btn .btn-text {
  transition: opacity 0.3s ease;
}

.animated-btn:hover .btn-text {
  opacity: 0;
}

.animated-btn:hover .btn-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.map-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 32, 32, 0.192);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(5px);
  border: 0px solid rgba(255, 255, 255, 0.25);
  padding: 5% 5%;
}
.map-frame {
  position: relative;
  top: 0;
  left: 0;
  width: 90%;
  height: 80%;
  border: 0;
  z-index: 0;
  border-radius: 20px;
  box-shadow: 2px 5px 12px black;
}
.map-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

/* Contenedor principal en dos columnas */
.help-section {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem;
  background-color: #062735;
  color: white;
}

/* Columna izquierda (contenido textual) */
.help-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

.help-content h2 {
  font-size: 4rem;
  color: #bddb6b;
}

.help-content p {
  font-size: 1.5rem;
}

.help-content a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}
.help-content img {
  width: 500px;
  height: auto;
  object-fit: contain;
}
/* Columna derecha (FAQs) */
.faq-container {
  flex: 1 1 45%;
  min-width: 280px;
}

/* Cada FAQ */
.faq {
  border: 1px solid #6bdb98;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: #0c3c47;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80px; /* asegura que todos los bloques colapsados tengan altura */
  transition: all 0.3s ease;
}

/* Pregunta */
.faq-question {
  padding: 1rem;
  background-color: #062735;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq.active .faq-question::after {
  content: "-";
}

/* Respuesta con animación */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 1rem;
}

.faq.active .faq-answer {
  max-height: 200px;
  padding: 1rem;
}

/* Responsive layout */
@media (max-width: 768px) {
  .help-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .faq-container,
  .help-content {
    width: 100%;
  }
}

footer {
  width: 100%;
  height: 250px;
  display: flex;
  padding: 20px;
  padding-left: 10%;
  padding-right: 10%;
  background-color: #062735;
}
.footer-container {
  width: 100%;
  height: 80%;
  margin: 20px;
  background-color: #00aebe00;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social {
  display: flex;
  flex-direction: column;
  color: white;
}
.social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  margin: 10px;
  border-radius: 10px;
  padding: 5px;
  display: flex;
  align-items: center;
}

#btn-back-to-top {
  position: fixed;
  bottom: 120px;
  right: 40px;
  display: none;
  background-color: #062735;
  border-color: #062735;
  border-radius: 50%;
}
/* Estilo del contenedor */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* Centrar la lupa */
  padding-left: 20px; /* Sin desplazamiento extra */
}

/* Estilo de la lupa */
.search-icon {
  background: none; /* Sin fondo */
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
}

.search-icon i {
  color: white; /* Color blanco para la lupa */
}

/* Contenedor del input */
.search-input-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Input */
#searchInput {
  width: 0;
  opacity: 0;
  padding: 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding-right: 30px; /* Espacio para la equis */
  transition: all 0.3s ease;
}

/* Mostrar input cuando se activa */
#searchInput.active {
  width: 200px;
  opacity: 1;
  padding: 10px;
}

/* Botón de la equis dentro del input */
.clear-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 16px;
  color: #888;
  cursor: pointer;
  display: none;
}

.clear-icon:hover {
  color: #555;
}

/* Contenedor de resultados */
.search-results {
  position: absolute;
  top: 100%; /* Aparecen justo debajo del input */
  left: 20%;
  background-color: white;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  width: 200px; /* Ajuste según el ancho del input */
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para destacar */
}

.search-results a {
  text-decoration: none;
  display: block;
  padding: 10px;
  color: black;
  border-bottom: 1px solid #eee;
}

.search-results a:hover {
  background-color: #f0f0f0;
}
