/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica", "Arial", sans-serif;
    scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* 🔹 Fondo de la página con degradado */
body {
    font-family: "Helvetica", "Arial", sans-serif;
    padding-top: 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #eae7e4;
    background: linear-gradient(90deg, #eae7e4, #ded5cc);
    background: linear-gradient(90deg, #f5f3f0, #ded5cc);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* Efecto de aparición suave al cargar la página */
body.fade-in {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

body.fade-in.visible {
  opacity: 1;
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f3f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease-in-out;
}

.splash-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  animation: pop-in 1.2s ease-out;
}

.splash-text {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  opacity: 0;
  animation: fade-in-text 2s ease-in-out 0.5s forwards;
}

@keyframes fade-in-text {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pop-in {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/*---------------------------------------------------------------------------------*/
/* Sección Navbar */
.nav-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 50px;
  background: #f3f2f0;
  box-shadow: 0px 4px 10px rgba(47, 82, 72, 0.15);
  width: fit-content;
  z-index: 1000;
}

.nav-container ul {
  list-style: none;
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.nav-item {
  padding: 10px 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
}

.nav-item a {
  text-decoration: none;
  color: #3f5146;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-item:hover {
  background: #2e7a69;
}

.nav-item:hover a {
  color: white;
}

.nav-item.active {
  background: #5f9f8e;
  padding: 10px 18px;
}

.nav-item.active a {
  color: white;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.nav-logo img {
  height: 25px;
  width: auto;
  object-fit: contain;
}

/*---------------------------------------------------------------------------------*/
/* Sección Video */
#hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 20px;
  background: transparent;
  flex-direction: column;
}

#hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#hero-video-container {
  width: 90vw;
  max-width: 1480px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background-color: #3f5146;
  box-shadow: 0px 5px 15px rgba(63, 81, 70, 0.8);
}

#hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-button {
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.scroll-button {
  background: #2e7a69;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 15px rgba(47, 82, 72, 0.3);
  display: inline-block;
}

.scroll-button:hover {
  background: #3f5146;
  transform: translateY(-2px);
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  /*border-radius: 20px;*/
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/*---------------------------------------------------------------------------------*/
/* Mapa Vertical Móviles */
.mobile-map-image {
  display: none;
  text-align: center;
  margin: 30px 0;
}

.mobile-map-image img {
  width: 90%;
  max-width: 400px;
  height: auto;
}

/*---------------------------------------------------------------------------------*/
/* Sección de Introducción */
#introduccion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 125px 200px;
  max-width: 1850px;
  margin: 50px auto;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.intro-text h1 {
  font-size: 44px;
  color: #2e7a69;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
}

.intro-text h1 span {
  color: #5f9f8e;
}

.intro-text h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
  padding-bottom: 4px;
  background: linear-gradient(90deg, #3f5146, #2e7a69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid #3f5146;
}

.intro-text p {
  font-size: 18px;
  color: #3f5146;
  margin-top: 15px;
  line-height: 1.6;
  max-width: 550px;
}

.highlight {
  color: #2e7a69;
  font-weight: 800;
}

.bold {
  color: #5f9f8e;
  font-weight: 700;
}

.special {
  color: #b49483;
  font-weight: 700;
  padding-bottom: 2px;
}

.read-more {
  background: #2e7a69;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 15px rgba(47, 82, 72, 0.2);
}

.read-more:hover {
  background: #3f5146;
  transform: translateY(-2px);
}

/* 🔹 Imagen */
.intro-image {
  width: 50%;
  text-align: right;
  z-index: 2;
}

.intro-image img {
  width: 100%;
  max-width: 550px;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.25));
}

/*---------------------------------------------------------------------------------*/
/* Sección ¿Cómo funciona? */
#como-funciona {
  background: linear-gradient(180deg, #2e7a69, #3f5146);
  padding: 100px 40px;
  color: #f5f3f0;
  text-align: center;
  margin-top: 200px;
}

#como-funciona h2 {
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 1.5px;
  color: #ded5cc;
}

.como-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.como-card {
  background: #eae7e4;
  border-radius: 20px;
  padding: 20px;
  width: 420px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.como-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.como-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #3f5146;
}

.como-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #3f5146;
  margin-bottom: 20px;
}

.como-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Modal */
.modalcomofunciona {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
}

/* Imagen ampliada */
.modalcomofunciona-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

/* Botón de cerrar */
.close-modalcomofunciona {
  position: fixed;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.close-modalcomofunciona:hover {
  color: #cba38f;
}

.noscroll {
  overflow: hidden;
}

/* Animación de entrada */
@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*---------------------------------------------------------------------------------*/
/* Diferenciadores */
.diferenciadores-seccion {
  padding: 220px 20px;
  background: transparent;
  display: flex;
  justify-content: center;
}

.diferenciadores-contenedor {
  display: flex;
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.diferenciadores-imagen {
  flex: 1;
  background: #ded5cc;
}

.diferenciadores-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diferenciadores-info {
  flex: 1;
  padding: 40px 30px;
  text-align: left;
  background: #fff;
}

.diferenciadores-info h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #2e7a69;
}

.diferenciadores-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diferenciadores-lista li {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #3f5146;
  margin-bottom: 16px;
}

.diferenciadores-lista li img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

/*---------------------------------------------------------------------------------*/
/* Sección Clientes */
.clientes {
  text-align: center;
  padding: 100px 20px;
  background: #161616;
  font-family: "Helvetica", "Arial", sans-serif;
  color: #e5e5e5;
}

.info_clientes h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

.clientes-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.clientes-logos img {
  height: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.clientes-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: brightness(1);
}

.clientes_frase {
  font-size: 22px;
  font-weight: 600;
  color: #cfcfcf;
}

/*---------------------------------------------------------------------------------*/
/* Testimonio */
.testimonio {
  padding: 100px 20px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.testimonio-box {
  max-width: 800px;
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
}

.comilla {
  font-size: 80px;
  color: #2e7a69;
  font-family: Georgia, serif;
  opacity: 0.2;
  position: absolute;
  z-index: 0;
}

.comilla.apertura {
  top: 10px;
  left: 30px;
}

.comilla.cierre {
  bottom: 25px;
  right: 30px;
}

.testimonio blockquote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.8;
  color: #3f5146;
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonio cite {
  display: block;
  margin-top: 25px;
  font-size: 16px;
  font-style: normal;
  color: #5f9f8e;
  font-weight: bold;
}

/*---------------------------------------------------------------------------------*/
/* FAQ */
.faq-section {
  padding: 100px 40px;
  background: transparent;
  color: #3f5146;
  text-align: center;
  margin-bottom: 100px;
}

.faq-section h2 {
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: 1px;
  color: #2e7a69;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  background: #f5f3f0;
  box-shadow: 0 8px 24px rgba(47, 82, 72, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #2e7a69;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #eae7e4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #fdfdfd;
  transition: all 0.4s ease;
}

.faq-answer p {
  font-size: 16px;
  color: #3f5146;
  margin: 15px 0;
  line-height: 1.6;
}

/*---------------------------------------------------------------------------------*/
/* Sección de Contacto */
.contacto-section {
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 10px;
  background-color: transparent;
  margin-bottom: 100px;
}

.contacto-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: 80%;
  max-width: 1400px;
  padding: 20px;
  position: relative;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 60px 40px 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(63, 81, 70, 0.1);
  height: 100%;
  max-width: 650px;
  position: relative;
  left: 8%;
  z-index: 1;
}

.contacto-form h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #2e7a69;
}

.contacto-form p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #3f5146;
}

.contacto-form form {
  display: flex;
  flex-direction: column;
}

.contacto-form label {
  font-size: 1em;
  margin-bottom: 5px;
  color: #3f5146;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contacto-form textarea {
  resize: vertical;
  width: 100%;
}

.contacto-form button {
  width: auto;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  background-color: #2e7a69;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}

.contacto-form button:hover {
  background-color: #3f5146;
}

.contacto-imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10%;
  right: 11%;
  width: 37%;
  z-index: 1;
}

.contacto-imagen img {
  width: 90%;
  height: auto;
  border-radius: 10px;
}

/* Pasos */
.step {
  display: none;
}

.step.active {
  display: block;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

button {
  padding: 10px;
  background-color: #2e7a69;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

button:hover {
  background-color: #3f5146;
}

button.next {
  margin-left: auto;
}

button.prev {
  margin-right: auto;
}

/* Barra de progreso */
.progress-bar-container {
  width: 100%;
  height: 10px;
  background-color: #b3b3b3;
  border-radius: 5px;
  margin-bottom: 20px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: #5f9f8e;
  border-radius: 5px;
  transition: width 0.3s ease-in-out;
}

/* Checkboxes y radios */
.contacto-form input[type="checkbox"],
.contacto-form input[type="radio"] {
  margin-right: 100px;
  transform: scale(1.2);
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group label,
.radio-group label {
  font-size: 1em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Enlaces legales */
.contacto-form a {
  color: #2e7a69;
  text-decoration: underline;
  font-weight: 500;
}

.contacto-form a:hover {
  text-decoration: none;
  color: #3f5146;
}

.form-group {
  margin-bottom: 25px;
}

.group-title {
  display: block;
  font-weight: 500;
  color: #3f5146;
  margin-bottom: 8px;
}

.checkbox-option input {
  margin-left: 250px;
}

.radio-option label {
  margin-left: 250px;
}

/*---------------------------------------------------------------------------------*/
/* Footer General */
.footer {
  width: 100%;
  padding: 50px 0;
  font-family: "Helvetica", "Arial", sans-serif;
  background-color: transparent;
  color: #3f5146;
  transition: color 0.5s ease, background 0.5s ease;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 80px;
}

.footer-left {
  flex: 1;
  max-width: 300px;
  margin-right: 10px;
}

.footer-left p {
  font-size: 16px;
  color: #3f5146;
}

.subscribe-btn {
  margin-top: 12px;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: #2e7a69;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: #3f5146;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  flex: 2;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #2e7a69;
}

.footer-column a {
  text-decoration: none;
  font-size: 14px;
  color: #3f5146;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #cba38f;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(63, 81, 70, 0.2);
  padding-top: 30px;
  margin-top: 20px;
  font-size: 14px;
  color: #3f5146;
}

.tnl-logo {
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 3px;
  transition: filter 0.5s ease;
}

.tnl {
  margin-left: 3px;
  font-weight: bold;
  color: #2e7a69;
}

/*---------------------------------------------------------------------------------*/
/* Modal Legal */
.modal-aviso-legal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.6);
  padding: 60px 20px;
  backdrop-filter: blur(2px);
}

.modal-content-legal {
  background: #fff;
  margin: auto;
  padding: 30px 40px;
  border-radius: 15px;
  max-width: 800px;
  color: #3f5146;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: justify;
}

.modal-content-legal h3 {
  margin-top: 0;
  color: #2e7a69;
}

.close-aviso {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-aviso:hover {
  color: #000;
}

/* ========================================================================================================================= */
/* RESPONSIVE */
/* ========================================================================================================================= */
/* Toggle button solo visible en móvil */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  color: #3f5146;
  cursor: pointer;
}

/* ==========================
  MEDIA QUERY IPHONE 14 PRO MAX
   ========================== */
@media screen and (max-width: 430px) {

  html,
  body {
    overflow-x: hidden;
  }

  #hero {
    padding: 0 10px;
  }

  #hero-video-container {
    width: 90vw;
    max-width: none;
    border-radius: 15px;
  }

  #hero-button {
    margin-top: 10px;
    margin-bottom: 100px;
  }

  .mobile-map-image {
  display: block;
  width: 348px;
  text-align: center;
  margin: 30px 0 20px 0;
}

.mobile-map-image img {
  width: 90%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

  #introduccion {
    flex-direction: column;
    padding: 30px 0px;
    gap: 20px;
    width: 100vw;
  }

  .intro-text,
  .intro-image {
    width: 90%;
    text-align: center;
    margin-top: 70px;
  }

  .intro-text p {
    max-width: 100%;
    font-size: 16px;
  }

  .intro-text h1 {
    font-size: 28px;
  }

  .intro-text h2 {
    font-size: 18px;
  }

  .intro-image img {
    max-width: 90%;
  }

  .innovacion-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-container {
    flex-direction: column;
    padding: 0px 0px;
    gap: 20px;
    width: 90vw;
  }

  .footer-links {
    flex-direction: column;
    gap: 25px;
  }

  .contacto-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .contacto-form {
    width: 90vw;
    padding: 20px;
    left: 0;
  }

  .contacto-imagen {
    position: relative;
    top: auto;
    right: auto;
    width: 90vw;
    margin-top: 20px;
  }

  .modal-content {
    flex-direction: column;
  }

  .modal-body {
    flex-direction: column;
    gap: 20px;
  }

  .innovacion-card {
    max-width: 100%;
  }

  .diferenciadores-lista {
    font-size: 15px;
  }

  /*---------------------------------------------------------------------------------*/
  .carousel-inner {
    gap: 20px;
  }

  .info_clientes h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .clientes_frase {
    font-size: 20px;
    margin-top: 15px;
    padding: 0 25px;
  }

  .carousel-container-cliente {
    width: 100%;
    overflow-x: auto;
    /* Permitimos scroll horizontal solo dentro del carrusel */
    -webkit-overflow-scrolling: touch;
    padding: 15px 0;
    display: block;
    /* En móvil evitamos el display: flex general */
    box-sizing: border-box;
  }

  .carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 0 20px;
    box-sizing: border-box;
    width: max-content;
    /* Solo ocupa lo que necesiten las imágenes */
    overflow-x: auto;
  }

  .carousel-inner img {
    max-height: 120px;
    height: auto;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
  }

  .carousel-container-cliente {
    -ms-overflow-style: none;
    /* IE y Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .carousel-container-cliente::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari y Opera */
  }

  .carousel-container-cliente {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*---------------------------------------------------------------------------------*/
  .nav-container {
    top: 8px;
    /*flex-direction: column;*/
    /*width: 95%;*/
    border-radius: 25px;
    padding: 10px;
    gap: 8px;

    flex-direction: row;
    justify-content: space-between;
    width: 90%;
  }

  .nav-container ul {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .nav-item {
    padding: 8px;
    width: 97%;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .nav-toggle {
    background: transparent;
    border: none;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;
    box-shadow: none;
    margin-right: 15px;
  }

  .nav-toggle:hover {
    background: transparent;
  }

  .nav-logo img {
    height: 25px;
    width: auto;
    object-fit: contain;
    margin-left: 10px;
  }

  .menu-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;
    background: #f3f0eb;
    border-radius: 26px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    padding: 0px 0;
    z-index: 999;
  }

  .nav-links.show {
    display: flex !important;
  }

  .nav-links .nav-item {
    padding: 15px 0;
  }

/*---------------------------------------------------------------------------------*/
  #como-funciona {
    padding: 60px 20px;
    margin-top: 120px;
  }

  #como-funciona h2 {
    font-size: 26px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .como-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .como-card {
    width: 90%;
    max-width: 387px;
    padding: 16px;
    border-radius: 16px;
  }

  .como-card h3 {
    font-size: 18px;
  }

  .como-card p {
    font-size: 15px;
  }

  .como-card img {
    border-radius: 12px;
  }

  .modalcomofunciona-content {
    max-width: 95vw;
    max-height: 75vh;
    border-radius: 12px;
  }

  .close-modalcomofunciona {
    font-size: 28px;
    top: 15px;
    right: 20px;
  }

/*---------------------------------------------------------------------------------*/
  .testimonio {
    padding: 60px 15px;
    margin-top: 60px;
    margin-bottom: 0px;
    margin-left: 27px;
    margin-right: 27px;
  }

  .testimonio-box {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .comilla {
    font-size: 50px;
  }

  .comilla.apertura {
    top: 5px;
    left: 15px;
  }

  .comilla.cierre {
    bottom: 15px;
    right: 15px;
  }

  .testimonio blockquote {
    font-size: 17px;
    line-height: 1.6;
  }

  .testimonio cite {
    margin-top: 20px;
    font-size: 14px;
  }

  /*---------------------------------------------------------------------------------*/
  .diferenciadores-seccion {
    padding: 100px 15px;
    margin-left: 27px;
    margin-right: 27px;
  }

  .diferenciadores-contenedor {
    flex-direction: column;
    border-radius: 18px;
  }

  .diferenciadores-imagen {
    order: 1;
    height: 220px;
  }

  .diferenciadores-imagen img {
    height: 100%;
    object-fit: cover;
  }

  .diferenciadores-info {
    order: 2;
    padding: 25px 20px;
    text-align: left;
  }

  .diferenciadores-info h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .diferenciadores-lista li {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .diferenciadores-lista li img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }

  /*---------------------------------------------------------------------------------*/
  .faq-section {
    padding: 60px 20px;
    margin-bottom: 20px;
    margin-right: 21px;
    margin-left: 21px;
  }

  .faq-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .faq-container {
    padding: 0;
  }

  .faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    background: #f5f3f0;
    box-shadow: 0 8px 24px rgba(47, 82, 72, 0.1);
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer p {
    font-size: 15px;
    margin: 12px 0;
  }

  /*---------------------------------------------------------------------------------*/
  .contacto-section {
    padding: 30px 10px;
  }

  .contacto-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 10px;
  }

  .contacto-form {
    padding: 20px;
    max-width: 100%;
    left: 0;
    box-shadow: none;
    order: 1;
  }

  .contacto-form h2 {
    font-size: 22px;
    text-align: center;
  }

  .contacto-form p {
    font-size: 16px;
    text-align: center;
  }

  .contacto-form input,
  .contacto-form textarea,
  .contacto-form select {
    font-size: 16px;
  }

  .buttons {
    gap: 60px;
  }

  .contacto-form button {
    width: 100%;
    margin: 0;
  }

  .contacto-imagen {
    position: relative;
    top: auto;
    right: auto;
    width: 80%;
    justify-content: center;
    order: -1;
    box-shadow: 0px 4px 10px rgba(47, 82, 72, 0.15);
  }

  .contacto-imagen img {
    width: 100%;
    border-radius: 10px;
  }

  .checkbox-option input,
  .radio-option label {
    margin-left: 0;
    transform: scale(1.1);
  }

  .group-title {
    font-size: 16px;
  }

  .checkbox-group label,
  .radio-group label {
    font-size: 16px;
  }

  .progress-bar-container {
    height: 8px;
  }

  .checkbox-option input {
    margin-left: 150px;
  }

  .radio-option label {
    margin-left: 150px;
  }
  /*---------------------------------------------------------------------------------*/
  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column a {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 15px;
  }
}


























@media screen and (orientation: landscape) and (max-width: 932px) {
  .nav-container {
    top: 8px;
    border-radius: 25px;
    padding: 10px 20px;
    gap: 8px;

    flex-direction: row;
    justify-content: space-between;
    width: 70%;
    margin-top: 10px;
  }

  .nav-container ul {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .nav-item {
    padding: 8px;
    width: 97%;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .nav-toggle {
    background: transparent;
    border: none;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;
    box-shadow: none;
    margin-right: 15px;
  }

  .nav-toggle:hover {
    background: transparent;
  }

  .nav-logo img {
    height: 20px;
    width: auto;
    object-fit: contain;
    margin-left: 10px;
  }

  .menu-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;
    background: #f3f0eb;
    border-radius: 26px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    padding: 0px 0;
    z-index: 999;
  }

  .nav-links.show {
    display: flex !important;
  }

  .nav-links .nav-item {
    padding: 15px 0;
  }

  /*---------------------------------------------------------------------------------*/
  html,
  body {
    overflow-x: hidden;
  }

  #hero {
    padding: 0 10px;
  }

  #hero-video-container {
    width: 60vw;
    max-width: none;
    border-radius: 15px;
    margin-top: 50px;
  }

  #hero-button {
    margin-top: 10px;
  }

  #introduccion {
    flex-direction: column;
    padding: 30px 0px;
    gap: 20px;
    width: 100vw;
  }

  .intro-text,
  .intro-image {
    width: 70%;
    text-align: center;
    margin-top: 70px;
  }

  .intro-text p {
    max-width: 100%;
    font-size: 16px;
  }

  .intro-text h1 {
    font-size: 28px;
  }

  .intro-text h2 {
    font-size: 18px;
  }

  .intro-image img {
    max-width: 90%;
  }

  .innovacion-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-container {
    flex-direction: column;
    padding: 0px 0px;
    gap: 20px;
    width: 90vw;
  }

  .footer-links {
    flex-direction: column;
    gap: 25px;
  }

  .contacto-container {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .contacto-form {
    width: 90vw;
    padding: 20px;
    left: 0;
  }

  .contacto-imagen {
    position: relative;
    top: auto;
    right: auto;
    width: 90vw;
    margin-top: 20px;
  }

  .modal-content {
    flex-direction: column;
  }

  .modal-body {
    flex-direction: column;
    gap: 20px;
  }

  .innovacion-card {
    max-width: 100%;
  }

  .diferenciadores-lista {
    font-size: 15px;
  }

  .carousel-inner {
    gap: 20px;
  }

  .clientes_frase,
  .info_clientes h2 {
    font-size: 18px;
  }

  .carousel-container-cliente {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 15px 0;
    display: block;
    box-sizing: border-box;
  }

  .carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 0 20px;
    box-sizing: border-box;
    width: max-content;
    overflow-x: auto;
  }

  .carousel-inner img {
    max-height: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
  }

  .carousel-container-cliente {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .carousel-container-cliente::-webkit-scrollbar {
    display: none;
  }

  .carousel-container-cliente {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #como-funciona {
    padding: 60px 20px;
    margin-top: 120px;
  }

  #como-funciona h2 {
    font-size: 26px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .como-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .como-card {
    width: 90%;
    max-width: 387px;
    padding: 16px;
    border-radius: 16px;
  }

  .como-card h3 {
    font-size: 18px;
  }

  .como-card p {
    font-size: 15px;
  }

  .como-card img {
    border-radius: 12px;
  }

  .modalcomofunciona-content {
    max-width: 95vw;
    max-height: 75vh;
    border-radius: 12px;
  }

  .close-modalcomofunciona {
    font-size: 28px;
    top: 15px;
    right: 20px;
  }

  .testimonio {
    padding: 60px 15px;
    margin-top: 60px;
    margin-bottom: 0px;
    margin-left: 27px;
    margin-right: 27px;
  }

  .testimonio-box {
    padding: 30px 20px;
    border-radius: 20px;
    margin-left: 180px;
    margin-right: 180px;
  }

  .comilla {
    font-size: 50px;
  }

  .comilla.apertura {
    top: 5px;
    left: 15px;
  }

  .comilla.cierre {
    bottom: 15px;
    right: 15px;
  }

  .testimonio blockquote {
    font-size: 17px;
    line-height: 1.6;
  }

  .testimonio cite {
    margin-top: 20px;
    font-size: 14px;
  }

  .diferenciadores-seccion {
    padding: 100px 15px;
    margin-left: 190px;
    margin-right: 190px;
  }

  .diferenciadores-contenedor {
    flex-direction: column;
    border-radius: 18px;
  }

  .diferenciadores-imagen {
    order: 1;
    height: 220px;
  }

  .diferenciadores-imagen img {
    height: 100%;
    object-fit: cover;
  }

  .diferenciadores-info {
    order: 2;
    padding: 25px 30px;
    text-align: left;
  }

  .diferenciadores-info h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .diferenciadores-lista li {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .diferenciadores-lista li img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }

  .faq-section {
    padding: 60px 20px;
    margin-bottom: 20px;
    margin-left: 180px;
    margin-right: 180px;
  }

  .faq-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .faq-container {
    padding: 0;
  }

  .faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    background: #f5f3f0;
    box-shadow: 0 8px 24px rgba(47, 82, 72, 0.1);
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer p {
    font-size: 15px;
    margin: 12px 0;
  }

  .contacto-section {
    padding: 30px 10px;
    margin-right: 80px;
    margin-left: 80px;
  }

  .contacto-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 10px;
  }

  .contacto-form {
    padding: 20px;
    max-width: 100%;
    left: 0;
    box-shadow: none;
    order: 1;
  }

  .contacto-form h2 {
    font-size: 22px;
    text-align: center;
  }

  .contacto-form p {
    font-size: 16px;
    text-align: center;
  }

  .contacto-form input,
  .contacto-form textarea,
  .contacto-form select {
    font-size: 16px;
  }

  .buttons {
    gap: 60px;
  }

  .contacto-form button {
    width: 100%;
    margin: 0;
  }

  .contacto-imagen {
    position: relative;
    top: auto;
    right: auto;
    width: 40%;
    justify-content: center;
    order: -1;
    box-shadow: 0px 4px 10px rgba(47, 82, 72, 0.15);
  }

  .contacto-imagen img {
    width: 100%;
    border-radius: 10px;
  }

  .checkbox-option input,
  .radio-option label {
    margin-left: 0;
    transform: scale(1.1);
  }

  .group-title {
    font-size: 16px;
  }

  .checkbox-group label,
  .radio-group label {
    font-size: 16px;
  }

  .progress-bar-container {
    height: 8px;
  }

  .checkbox-option input {
    margin-left: 250px;
  }

  .radio-option label {
    margin-left: 250px;
  }
    
  /*---------------------------------------------------------------------------------*/
  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column a {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 15px;
  }
}
