/* .page { */
    /* width: 100%;            /* La página ocupa el 100% del ancho disponible */ 
    /* max-width: 1200px;       /* El ancho máximo de la página */ 
    /* margin: 0 auto;          /* Centrar la página horizontalmente */ 
    /* padding: 10px;           /* Espacio interno */ 
    /* background-color: #fff;  /* Color de fondo blanco */ 
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra suave para dar relieve */ 
/* } */

/* General */
body {
  margin: 0;
  font-family: 'Maven Pro', sans-serif;
  color: white;
  padding-top: 80px; /* Para compensar el header fijo */
}

/* Fijar el header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000c1a;
  padding: 15px 60px;
  position: relative;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1em;
}

.dropdown {
  display: none;
  position: absolute;
  background-color: #001a33;
  list-style: none;
  padding: 10px;
  top: 100%;
  left: 0;
}

.nav-links li:hover .dropdown {
  display: block;
}

.contacto-btn {
  background-color: #00d1ff;
  padding: 8px 15px;
  border-radius: 5px;
  color: black !important;
}

/* Botón hamburguesa */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px; /* debajo del header */
    left: 0;
    right: 0;
    background-color: #000c1a;
    flex-direction: column;
    align-items: center;
    display: none;
    gap: 10px;
    padding: 20px 0;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li:hover .dropdown {
    position: static;
  }

  .dropdown {
    position: static;
    background-color: #001a33;
    width: 100%;
    text-align: center;
  }
}


/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: url('images/Banner principal.webp') no-repeat center center/cover;
    text-align: center;
}

.hero-content {
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 5em;
    font-weight: normal;
}

.hero h1 span {
    color: #44DAE3;
    font-weight: bold;
}

.hero p {
    font-size: 1.9em;
}

/* Responsivo */
@media screen and (max-width: 1024px) {


    .logo img {
        height: 45px; /* Reduce el tamaño del logo un 10% en modo responsivo */
    }

    .hero h1 {
        font-size: 3em;
    }

    .hero p {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: 60vh;
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .logo img {
        height: 45px; /* Aplica la reducción del 10% también para tablets y móviles */
    }
}



		
		
/* SECCION_2*/
 /* Estilos base */
.MKT {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

.MKT-seccion .MKT-slider {
  text-align: center;
  padding: 3rem 1rem;
}

.MKT-seccion .MKT-slider h2 {
  font-size: 2rem;
}

.MKT-seccion .MKT-slider h2 span {
  color: #00cfe8;
}

.MKT-seccion .MKT-slider p {
  max-width: 600px;
  margin: 1rem auto;
  color: #555;
}

.MKT-carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 3rem auto;
}

.MKT-carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  touch-action: pan-y;
}

.MKT-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  transform: scale(1);
  opacity: 0.5;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  filter: grayscale(1) brightness(0.9) contrast(1.2);
  padding: 0 5px;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .MKT-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .MKT-slide {
    flex: 0 0 33.3333%;
  }
}

.MKT-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.MKT-slide.active {
  transform: scale(1);
  opacity: 1;
  filter: none;
}

.MKT-caption button {
  background: white;
  color: black;
  font-weight: bold;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.MKT-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.MKT-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.MKT-dot.active {
  background: #00cfe8;
}
@media (max-width: 1023px) {
  .MKT-slide {
    filter: none !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }
}








/* SECCION_3 */
 .lista {
    margin: 0;
    padding: 0;
    display: flex;
    height: 80vh;
    background: url('images/Por que elegirnos.webp') no-repeat center center/cover;
    color: white;
}

/* Contenedor principal */
.container-lista {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Columnas */
.col {
    flex: 1;
    padding: 20px;
}

/* Título */
.title-lista {
    font-size: 5em;
    font-weight: normal;
}

/* Texto destacado */
.highlight-title {
    color: #2ec5f5;
    font-weight: bold;
}

/* Lista */
.list {
    text-align: left;
    font-size: 1.2em;
}

/* Elementos de la lista */
.list-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Iconos */
.icon-lista {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Estilos responsivos */
@media (max-width: 1024px) {
    .title-lista {
        font-size: 3.5em;
    }

    .list {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .lista {
        height: auto;
        padding: 50px 20px;
        flex-direction: column;
        text-align: center;
    }

    .container-lista {
        flex-direction: column;
    }

    .col {
        width: 100%;
        padding: 15px;
    }

    .title-lista {
        font-size: 2.5em;
    }

    .list {
        font-size: 1em;
        text-align: center;
    }

    .list-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .title-lista {
        font-size: 2em;
    }

    .list {
        font-size: 0.9em;
    }

    .icon-lista {
        width: 20px;
        height: 20px;
    }
}

		

/* SECCION_4 */
.carrusel-exi {
  font-family: 'Maven Pro', sans-serif;
  margin: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}
.titulo-bicolor {
    font-size: 3.2rem;
    font-weight: bold;
	text-align:center;
	padding:10px;
  }
  .titulo-bicolor span {
    color: #00101C;
	font-weight:normal;
  }
  .titulo-bicolor strong {
    color: #00bcd4;
	font-weight:normal;
	
  }


.carousel-container {
  position: relative;
  width: 80%;
  max-width: 1200px;
  perspective: 1000px;
}

.carousel {
  display: flex;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 1s;
  position: relative;
  width: 100%;
  height: 400px;
}

.carousel-item {
  position: absolute;
  width: 220px;
  height: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform-origin: center;
  text-align: center;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
}

.nav.prev {
  left: 150px;
}

.nav.next {
  right: 150px;
}

@media (max-width: 768px) {
  .ocultar-movil {
    display: none;
  }
}

/* MOVIL */
.movil {
  margin: 0;
  background: white;
}

.mobile-slider {
  display: block;
  padding: 1.5rem;
}

.title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.text-black {
  color: #00101C;
}

.text-blue {
  color: #00bcd4;
}

/* Slider styling */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
}

.slider-track img {
  min-width: 100%;
  height:auto;
  padding: 0 0.25rem;
}


.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 2rem;
  border: none;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  z-index: 1;
  border-radius: 1.25rem;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Hide on desktop */
@media (min-width: 1025px) {
  .mobile-slider {
    display: none;
  }
}

/* SECCION_5 */

    .titulo {
  text-align: center;
  line-height: 1.4;
}

.titulo .parte-uno {
  color: #35d3e5; /* Azul claro */
  font-size: 3rem;
  font-weight: normal;
}

.titulo .parte-dos {
  color: #000d17; /* Negro oscuro */
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 0px;
}

/* Responsivo para tablets (768px o menos) */
@media (max-width: 768px) {
  .titulo .parte-uno,
  .titulo .parte-dos {
    font-size: 2.5rem;
  }
}

/* Responsivo para móviles (480px o menos) */
@media (max-width: 480px) {
  .titulo .parte-uno,
  .titulo .parte-dos {
    font-size: 2rem;
  }
}

 
.metodo {
  margin: -50px;
  background-color: #f8f8f8;
  color: #333;
}

.container-met {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 70px 20px;
  background-color: white;
}

.text-content-met {
  max-width: 500px;
  padding: 20px;
  margin-top: 100px;
}

.text-content-met h2 {
  font-weight: normal;
  font-size: 20px;
  margin-bottom: 10px;
}

.text-content.met h2 strong {
  font-weight: bold;
}

.list-box-met {
  background-color: #f4f4f4;
  padding: 20px;
  margin-top: 40px;
}

.item-met {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.item-icon-met {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0f7ff;
}

.item-icon-met img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-text-met {
  flex: 1;
}

.item-text-met strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.image-content-met {
  flex: 1;
  min-width: 700px;
  max-width: 900px;
  text-align: center;
  z-index: 10;
}

.image-content-met img {
  width: 100%;
  max-width: 1200px;
}

/* Tablets (768px o menos) */
@media (max-width: 768px) {
  .container-met {
    flex-direction: column;
    align-items: center;
  }

  .image-content-met {
    min-width: 70%;
    max-width: 70%;
    padding: 25px 10px;
  }

  .text-content-met {
    max-width: 80%;
    padding: 10px 15px;
  }

  .item-met {
    flex-direction: row;
  }

  .item-icon-met {
    width: 70px;
    height: 70px;
  }

  .item-text-met strong {
    font-size: 15px;
  }
}

/* Móviles (480px o menos) */
@media (max-width: 480px) {
  .image-content-met {
    min-width: 70%;
    max-width: 70%;
  }

  .item-met {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .item-icon-met {
    margin: 0 0 10px 0;
  }

  .item-text-met {
    width: 100%;
  }

  .item-text-met strong {
    font-size: 14px;
  }

  .text-content-met h2 {
    font-size: 18px;
  }

  .list-box-met {
    padding: 15px;
  }
}


 

 .cuadricula {
  margin: 0;
  background-color: #ffffff;
  color: #333;
  margin-bottom: 40px;
}

.grid-section-c {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Por defecto: 2 columnas */
  gap: 20px;
  padding: 0px 20px;
  background-color: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
}

.card-c {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 40px;
}

.card-c img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-right: 20px;
}

.card-text-c {
  flex: 1;
  font-size: 20px;
}

.card-text-c strong {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}

/* Responsivo para tablet */
@media (max-width: 992px) {
  .grid-section-c {
    grid-template-columns: 1fr; /* Una columna en tablet */
  }

  .card-c {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-c img {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

/* Responsivo para móviles */
@media (max-width: 600px) {
  .card-c {
    padding: 20px; /* Reducimos el padding en móvil */
  }

  .card-text-c {
    font-size: 16px;
  }

  .card-text-c strong {
    font-size: 20px;
  }

  .card-c img {
    width: 150px;
    height: 150px;
  }
}

/* SECCION_6 */
.despegue {
  background: #fff;
  margin: 0;
  padding: 0;
}

.section-despegue {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  gap: 60px;
  flex-wrap: wrap;
}

.content-despegue {
  max-width: 400px;
}

.content-despegue h2 {
  font-size: 28px;
  font-weight: 400;
  color: #333;
}

.content-despegue strong {
  color: #000;
}

.custom-whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
}

.custom-whatsapp-btn img {
  width: 240px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.custom-whatsapp-btn img:hover {
  transform: scale(1.05);
}

.image img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* Responsive: Tablets (<= 768px) */
@media (max-width: 768px) {
  .section-despegue {
    padding: 40px 15px;
    gap: 40px;
  }

  .content-despegue h2 {
    font-size: 24px;
  }

  .custom-whatsapp-btn img {
    width: 200px;
  }

  .image img {
    max-width: 100%;
  }
}

/* Responsive: Móviles (<= 480px) */
@media (max-width: 480px) {
  .section-despegue {
    flex-direction: column;
    padding: 30px 10px;
    gap: 30px;
  }

  .content-despegue {
    max-width: 100%;
    text-align: center;
  }

  .content-despegue h2 {
    font-size: 22px;
  }

  .custom-whatsapp-btn img {
    width: 180px;
  }
}


		
/* footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap; /* Permite que las columnas se reorganicen */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Reduce el padding para pantallas pequeñas */
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px; /* Ancho mínimo para que las columnas no se encimen */
}

.logo-redes img {
    width: 100%; /* Ajusta el tamaño de la imagen al ancho de su contenedor */
    max-width: 300px;
    margin-bottom: 10px;
}

.logo-redes p {
    font-size: 14px;
	line-height:4;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a img {
    width: 24px;
    height: 24px;
}

.contact-info a {
    color: #00c7d7;
    text-decoration: none;
    font-size: 14px;
}

.contact-info p {
    font-size: 14px;
line-height:1.8;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map iframe {
    border: none;
    width: 100%;
    max-width: 350px;
    height: 200px;
    margin-top: 20px; /* Reduce el margen para pantallas pequeñas */
}

.footer-bottom {
    text-align: center;
    background-color: #111;
    color: #ccc;
    padding: 10px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #00c7d7;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Media queries para pantallas pequeñas */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 10px; /* Reduce el padding lateral */
        gap: 15px; /* Reduce el espacio entre columnas */
    }

    .footer-column {
        flex: 1 1 100%; /* Cada columna ocupa el ancho completo */
        margin-bottom: 20px; /* Agrega espacio entre columnas */
    }

    .map iframe {
        margin-top: 10px; /* Reduce el margen superior */
        height: 150px; /* Ajusta el alto del mapa */
    }
}

@media (max-width: 480px) {
    .logo-redes img {
        max-width: 200px; /* Reduce el tamaño máximo de la imagen */
    }

    .social-icons a img {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        font-size: 12px; /* Reduce el tamaño de fuente */
    }
}

/* Botón flotante de WhatsApp */
.whatsapp-float-index {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 180px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 100;
  animation: pulse 2s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen dentro del botón */
.whatsapp-float-index img {
  width: 35px;
  height: 35px;
}

/* Animación de pulsación */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsividad para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .whatsapp-float-index {
	right:70px;
    bottom: 70px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float-index img {
    width: 28px;
    height: 28px;
  }
}