:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Raleway", sans-serif;
}


/* Colores Globales - Las siguientes variables de color se utilizan en todo el sitio web. Actualizarlas aquí cambiará el esquema de color de todo el sitio web */
:root {
  --background-color: #ffffff;
  /* Color de fondo para todo el sitio web, incluidas las secciones individuales */
  --default-color: #2b180d;
  /* Color predeterminado utilizado para la mayoría del contenido de texto en todo el sitio web */
  --heading-color: #00375c;
  /* Color para títulos, subtítulos y encabezados en todo el sitio web */
  --accent-color: #56b8e6;
  /* Color de acento que representa tu marca en el sitio web. Se utiliza para botones, enlaces y otros elementos que necesitan destacar */
  --surface-color: #ffffff;
  /* El color de superficie se utiliza como fondo de elementos en caja dentro de secciones, como tarjetas, íconos u otros elementos que requieren una separación visual del fondo global */
  --contrast-color: #ffffff;
  /* Color de contraste para texto, asegurando la legibilidad frente a los fondos de los colores de acento, encabezado o predeterminado */
}

/* Colores del Menú de Navegación - Las siguientes variables de color se utilizan específicamente para el menú de navegación. Son independientes de los colores globales para permitir más opciones de personalización */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);
  /* El color predeterminado de los enlaces principales del menú de navegación */
  --nav-hover-color: #ffffff;
  /* Aplicado a los enlaces principales del menú de navegación cuando se pasa el cursor sobre ellos o están activos */
  --nav-mobile-background-color: #ffffff;
  /* Se utiliza como el color de fondo para el menú de navegación móvil */
  --nav-dropdown-background-color: #ffffff;
  /* Se utiliza como el color de fondo para los elementos desplegables que aparecen al pasar el cursor sobre los elementos de navegación principales */
  --nav-dropdown-color: #212529;
  /* Se utiliza para los enlaces de navegación de los elementos desplegables en el menú de navegación */
  --nav-dropdown-hover-color: #56b8e6;
  /* Similar a --nav-hover-color, este color se aplica a los enlaces de navegación desplegables cuando se pasa el cursor sobre ellos */
}

/* Preajustes de Color - Estas clases sobrescriben los colores globales cuando se aplican a cualquier sección o elemento, permitiendo reutilizar el mismo esquema de color */
.light-background {
  --background-color: #007dc6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #00375c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #254160;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  position: relative;
}

.widget-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  left: 0;
  right: 0;
  bottom: 1px;
}

.widget-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: 1px;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
  # Estilismo general y clases compartidas
  --------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}





































  /*--------------------------------------------------------------
    # Pie de página global
    --------------------------------------------------------------*/
    .PP {
      color: var(--default-color);
      background-color: var(--background-color);
      font-size: 14px;
      position: relative;
    }
    
    .PP .PP-top {
      padding-top: 50px;
    }
    
    .PP .PP-Referente .logo {
      line-height: 1;
      margin-bottom: 12px;
    }
    
    .PP .PP-Referente .logo img {
      max-height: 80px;
      margin-right: 6px;
    }
    
    .PP .PP-Referente .logo span {
      color: var(--heading-color);
      font-size: 30px;
      font-weight: 700;
      letter-spacing: 1px;
      font-family: var(--heading-font);
    }
    
    .PP .PP-Referente p {
      font-size: 14px;
      font-family: var(--heading-font);
    }
    
    .PP .social-links a {
      color: var(--contrast-color);
      background-color: var(--accent-color);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 16px;
      margin-right: 10px;
      transition: 0.3s;
    }
    
    .PP .social-links a:hover {
      color: var(--contrast-color);
      background-color: color-mix(in srgb, var(--accent-color) 90%, black 15%);
    }
    
    .PP h4 {
      font-size: 16px;
      font-weight: bold;
      position: relative;
      padding-bottom: 12px;
    }
    
    .PP .PP-links {
      margin-bottom: 30px;
    }
    
    .PP .PP-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .PP .PP-links ul i {
      padding-right: 2px;
      font-size: 12px;
      line-height: 0;
    }
    
    .PP .PP-links ul li {
      padding: 10px 0;
      display: flex;
      align-items: center;
    }
    
    .PP .PP-links ul li:first-child {
      padding-top: 0;
    }
    
    .PP .PP-links ul a {
      color: color-mix(in srgb, var(--default-color), transparent 20%);
      display: inline-block;
      line-height: 1;
    }
    
    .PP .PP-links ul a:hover {
      color: var(--accent-color);
    }
    
    .PP .PP-contact p {
      margin-bottom: 5px;
    }
    
    .PP .copyright {
      border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
      margin-top: 25px;
      padding-top: 25px;
      padding-bottom: 25px;
    }
    
    .PP .copyright p {
      margin-bottom: 0;
    }
    
    .PP .credits {
      margin-top: 5px;
      font-size: 13px;
    }
    
    .PP-image {
      max-width: 300px;
      height: auto;
      margin-top: 20px;
      cursor: pointer;
    }
    
    .PP-image:hover {
      opacity: 0.8;
    }
    
    @media (max-width: 768px) {
      .PP-image {
        max-width: 80px;
      }
    }
    
/*--------------------------------------------------------------
  # Pre cargador
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Botón superior de desplazamiento
  --------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Desactivar el retardo de animación aos en dispositivos móviles
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Secciones globales
  --------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
  # Títulos globales de las secciones
  --------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*-------------------------------------------------------------------------------
Sección Encabezado
-------------------------------------------------------------------------------*/
.encabezado {
  width: 100%;
  min-height: 100%;
  height: 100%;
  position: relative;
  padding: 100px 0 60px; /*Fondo tamaño y margenes*/
  display: flex;
  align-items: center;
}

.encabezado .container {
  max-width: 100%;
  padding: 0 15%;
}


/*@media (min-width: 1200px) {
  .encabezado:after {
    position: absolute;
    content: "";
    width: 0%;
    background-image: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

.encabezado:before {
  position: absolute;
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  inset: 0;
  z-index: 2;
}
*/
.encabezado img {
  position: absolute;
  top: 0;
  /* Asegura que la imagen esté en la parte superior */
  right: 0;
  /* Alinea la imagen al lado derecho */
  display: block;
  width: auto;
  /* Ajusta el ancho automáticamente */
  height: 100%;
  /* Mantiene la imagen ajustada a la altura */
  object-fit: none;
  /* Ajusta la imagen para que no se estire */
  z-index: 1;
}

.encabezado .container,
.encabezado .container-fluid {
  z-index: 3;
  position: relative;
}

.encabezado h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  white-space: nowrap; /* Evita el salto de línea */
  overflow: visible; /* Asegura que el texto se muestre completamente */
  text-overflow: clip; /* Evita los "..." */
  display: inline-block; /* Permite que el texto se comporte como un solo bloque */
  max-width: 100%; /* Asegura que el título se mantenga dentro del contenedor */
  position: relative;
  top: -70px; /* Ajusta el valor según necesites moverlo más arriba */
}

.encabezado blockquote {
  color: color-mix(in srgb, var(--default-color), transparent 100%);
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  margin: 40px 0;
}

.encabezado .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
}

.encabezado .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.encabezado .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.encabezado .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.encabezado .btn-watch-video:hover {
  color: var(--default-color);
}

.encabezado .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .encabezado h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .encabezado .btn-get-started,
  .encabezado .btn-watch-video {
    font-size: 13px;
  }
}

/*
Encabezado fondo video
*/

.encabezado-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta el video para cubrir todo el área */
  z-index: 1; /* Asegúrate de que el video esté detrás del contenido */
}

.encabezado .container,
.encabezado .container-fluid {
  z-index: 2; /* El contenido estará sobre el video */
  position: relative;
}

/*--------------------------------------------------------------
# Sección Presentacion
--------------------------------------------------------------*/
.Presentacion .img-bg {
  min-height: 500px;
  position: relative;
}

.Presentacion .img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.Presentacion .slides {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.Presentacion h3 {
  font-size: 24px;
  font-weight: 700;
}

.Presentacion h4 {
  font-size: 18px;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.Presentacion .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.Presentacion .swiper-wrapper {
  height: auto;
}

.Presentacion .swiper-button-prev:after,
.Presentacion .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.Presentacion .swiper-button-prev {
  left: 80px;
}

.Presentacion .swiper-button-next {
  right: 80px;
}

.Presentacion .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.Presentacion .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.Presentacion .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .Presentacion .swiper {
    margin: 60px 60px 40px 60px;
  }

  .Presentacion .swiper-button-prev,
  .Presentacion .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .Presentacion .swiper {
    margin: 40px 40px 20px 40px;
  }
}

/* Efecto fade-in para las imágenes */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}



/*--------------------------------------------------------------
/* Fondo de video 
--------------------------------------------------------------*/

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Contenedor para el parallax */
.parallax-container {
  position: relative;
  overflow: hidden;
  /* Asegura que no haya contenido fuera del contenedor */
}



/*--------------------------------------------------------------
# Sección Imagen Dinámica
--------------------------------------------------------------*/
.imagen-dinamica {
  padding: 100px 0; /*Espaciado de fondo con telefono*/
  position: relative;
  clip-path: inset(0);
}

.imagen-dinamica .phones-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  /* Espacio entre los teléfonos */
  flex-wrap: wrap;
  justify-content: center;
  /* Centra los teléfonos dentro del contenedor */
}

/* Teléfono dinámico */
.phone-wrapper {
  position: relative;
  width: 375px;
  height: 667px;
  margin: auto;
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}




.phone-wrapper .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-out;
}



.imagen-dinamica .phone-wrapper {
  position: relative;
  width: 380px;
  /* Aumento el ancho para que el marco negro sea más grande */
  height: 665px;
  /* Aumento la altura para darle más espacio al borde */
  margin-left: 1% ;
  margin-right: auto ;
  /* Centra el teléfono en la pantalla */
  background: #00375c;
  /* Fondo negro alrededor del teléfono */
  border-radius: 50px;
  /* Bordes redondeados */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Sombra suave */
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen-dinamica .phone-container {
  position: relative;
  width: 375px;
  /* Mantiene el tamaño original del teléfono */
  height: 667px;
  /* Altura similar a un teléfono móvil */
  margin: 0 auto;
  /* Centra el teléfono en la pantalla */
  background: #fff;
  /* Fondo blanco para el teléfono */
  border-radius: 36px;
  /* Bordes redondeados */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Sombra suave */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Imagen dentro del teléfono, con margen simulado */
.imagen-dinamica .background-image {
  position: absolute;
  top: 20px;
  /* Mueve la imagen hacia abajo */
  left: 20px;
  /* Mueve la imagen hacia la izquierda */
  width: calc(100% - 40px);
  /* Ajusta el ancho para dejar un margen */
  height: calc(100% - 40px);
  /* Ajusta la altura para dejar un margen */
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  /* Parallax effect */
  will-change: transform;
  transition: transform 0.3s ease-out;
  /* Suaviza la transición */
}

.imagen-dinamica .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.imagen-dinamica h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
  text-align: center;
  /* Centrado del título */
}

.imagen-dinamica p {
  color: var(--default-color);
  text-align: center;
  /* Centramos el texto */
  font-size: 16px;
  max-width: 90%;
  /* Limita el ancho del texto */
  margin: 40px auto;
}

.imagen-dinamica .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px auto;
  align-self: center;
  /* Asegura que el botón esté centrado */
  margin-bottom: 20px;
  order: 2;
  /* Coloca el botón al final */
}

.imagen-dinamica .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/* -------------------------------------------------------------
# Simulación de cámara frontal
------------------------------------------------------------- */
.imagen-dinamica .phone-container::before {
  content: "";
  position: absolute;
  top: 25px;
  /* Ajusta la altura de la cámara */
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #333;
  /* Color negro para simular la cámara */
  border-radius: 50%;
  /* Forma circular */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  /* Sombra suave para simular el lente de la cámara */
  z-index: 2;
  /* Asegura que la cámara esté encima de la imagen */
}

@media (max-width: 1200px) {
  .imagen-dinamica .phone-container {
    width: 375px;
    /* Mantiene el tamaño original */
    height: 667px;
    /* Mantiene la altura original */
  }
}

@media (max-width: 575px) {
  .imagen-dinamica .phone-container {
    width: 100%;
    /* Los teléfonos ocupan todo el ancho en pantallas pequeñas */
    height: 500px;
    margin-bottom: 30px;
  }
}

/* --------------------------------------------------------------
# Estilo del contenedor de teléfono móvil
-------------------------------------------------------------- */
.phone-container {
  position: relative;
  width: 375px;
  /* Ancho similar a un teléfono móvil */
  height: 667px;
  /* Altura similar a un teléfono móvil */
  margin: 0 auto;
  /* Centra el teléfono en la pantalla */
  background: #fff;
  /* Fondo blanco para el teléfono */
  border-radius: 36px;
  /* Bordes redondeados */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Sombra suave */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 400px;
  /* Aumentar este valor para bajar el contenido */
  color: white;
  /* Cambiar todos los textos a blanco */
}

.phone-container h1,
.phone-container h2,
.phone-container h3,
.phone-container h4,
.phone-container h5,
.phone-container h6,
.phone-container p,
.phone-container a {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0,0.7);
  /* Asegura que todos los textos sean blancos */
}


.phone-container span{
  color: rgb(255, 255, 255);
}


/* Imagen dentro del teléfono */
.phone-container .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}


/* Botón dentro del teléfono */
.phone-container .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  /* Botón con texto contrastante */
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 20px;
  text-align: center;
}

.phone-container .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/* Estilo para el ícono del teléfono móvil */
.phone-container:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 10px;
}

/* Efecto parallax en la imagen de fondo (mantenerlo dentro del teléfono) */
.imagen-dinamica .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  /* Efecto parallax */
  will-change: transform;
  transition: transform 0.3s ease-out;
  /* Suaviza la transición */
}

/*
Swiper telefono
*/

/*--------------------------------------------------------------
# Estilos Swiper
--------------------------------------------------------------*/
.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.5);
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5722; /* Color del botón activo */
}
/* --------------------------------------------------------------
# Media Queries para Responsividad
-------------------------------------------------------------- */
/* Ajustes para pantallas medianas */
@media (max-width: 992px) {
  .phone-wrapper {
    max-width: 320px;
    max-height: 580px;
  }

  .imagen-dinamica h3 {
    font-size: 20px;
  }

  .imagen-dinamica p {
    font-size: 12px;
  }

  .imagen-dinamica .cta-btn {
    font-size: 12px;
    padding: 8px 20px;
  }
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 575px) {
  .phone-wrapper {
    max-width: 280px;
    max-height: 500px;
  }

  .phone-container {
    width: 88%;
    height: 88%;
  }

  .imagen-dinamica h3 {
    font-size: 18px;
  }

  .imagen-dinamica p {
    font-size: 11px;
  }

  .imagen-dinamica .cta-btn {
    font-size: 10px;
    padding: 6px 15px;
  }
}









/*---------------------------------------------
Estilo para la ventana modal del PDF 
---------------------------------------------*/
/* Ocultar el modal por defecto */
.pdf-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro para el modal */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


/* Botón de cierre */
.pdf-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  background: transparent;
  border: none;
}

.pdf-content {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #fff;
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}


#pdfFlipbook {
  width: 75%; /* Ajusta el tamaño del flipbook al 90% del ancho de la pantalla */
  height: 90%; /* Ajusta el tamaño del flipbook al 90% del alto de la pantalla */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

}

#pdfFlipbook canvas {
  display: block;
  margin: 10px auto;
}

/* Efecto de apertura de la ventana modal */
.pdf-modal.open .pdf-modal-content {
  transform: scale(1.05);
}


/* Efecto hover del botón de cierre */
.pdf-modal-close:hover {
  color: #ff8b2c;
}

/* Animación suave del fondo al abrir */
.pdf-modal.open {
  animation: fadeIn 0.5s ease-in-out;
}

/* Animación del fondo al abrir */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*----------------------------------------
    Flipbook (Páginas del PDF)
----------------------------------------*/

.flipbook-container {
  position: relative;
  width: 80%;
  height: 80%;
  background-color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}


.page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

canvas {
  width: 100%; /* Asegura que el canvas ocupe todo el contenedor */
  height: 100%; /* Ajusta la altura al contenedor */
  object-fit: contain; /* Hace que el contenido se ajuste al tamaño */
}


.flipbook-container .page {
  width: 90%;
  height: 100%;
  margin: 0 5%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.4s ease-in-out;
}

/* Hover de la página */
.flipbook-container .page:hover {
  transform: scale(1.05);
}

.flipbook-container .page canvas {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Botones de navegación */
.flipbook-navigation {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}



.flipbook-nav-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.flipbook-nav-btn:hover {
  background-color: #ff8b2c;
}


/* Ajustes para pantallas muy pequeñas */
@media (max-width: 768px) {
  .flipbook-container .page {
    width: 100%; /* Asegura que las páginas ocupen todo el ancho en pantallas pequeñas */
    height: auto;
  }

  .flipbook-container {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .flipbook-container .page {
    width: 100%; /* Ocupa todo el ancho en pantallas muy pequeñas */
    height: auto;
  }
  
  .flipbook-navigation {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }

  .flipbook-nav-btn {
    font-size: 14px; /* Ajusta el tamaño del texto */
    padding: 8px 15px;
  }
}

/* Para pantallas de 320px */
@media (max-width: 320px) {
  .flipbook-container .page {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .flipbook-navigation {
    position: fixed;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }

  .flipbook-nav-btn {
    font-size: 12px; /* Ajusta el tamaño de los botones */
    padding: 6px 12px;
  }
}

/*--------------------------------
Video fondo
------------------------------*/

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  max-width: 90%;
  max-height: 90%;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}


.Presentacion .swiper-button-prev,
.Presentacion .swiper-button-next {
  background-color: transparent !important; /* Elimina el fondo */
  border: none; /* Por si hay bordes visibles */
}

.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.nav-menu {
  display: none;
  flex-direction: column;
  background-color: #444;
  position: absolute;
  top: 60px;
  right: 0;
  width: 200px;
}
.nav-menu.active {
  display: flex;
}
.nav-menu a {
  padding: 0px;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid #555;
}
.nav-menu a:hover {
  background-color: #555;
}
@media (min-width: 768px) {
  .menu-toggle {
      display: none;
  }
  .nav-menu {
      display: flex;
      position: static;
      flex-direction: row;
      background: none;
      width: auto;
  }
  .nav-menu a {
      border: none;
      padding: 10px 5px;
  }
}


.navbar {
  background-color: white !important; /* Fondo blanco */
}
.navbar .nav-link,
.navbar .navbar-brand {
  color: blue !important; /* Texto azul */
}
.navbar .nav-link:hover {
  color: darkblue !important; /* Azul más oscuro al pasar el mouse */
}



/* Ajuste para bajar el logo */
.custom-logo-margin {
  margin-top: 40px; /* Ajusta el valor según sea necesario para mover el logo hacia abajo */
}



header.scrolled {
  background-color: #fff; /* O cualquier color que desees cuando se haya hecho scroll */
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Asegúrate de que el header esté por encima de otros elementos */
  background-color: white; /* O el color de fondo que prefieras */
}

/*--------------------------------------------------------------
# Seccion de portafolio
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Seccion detallada del portafolio
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


/*-----------------------------------------------------------------
                   TIME LINE
-----------------------------------------------------------------*/

.Linea_del_tiempo {
  position: relative;
  padding: 0;
  list-style: none;
}

.Linea_del_tiempo:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: "";
  background-color: #e9ecef;
}

.Linea_del_tiempo>li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}

.Linea_del_tiempo>li:after,
.Linea_del_tiempo>li:before {
  display: table;
  content: " ";
}

.Linea_del_tiempo>li:after {
  clear: both;
}

.Linea_del_tiempo>li .Linea_del_tiempo-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}

.Linea_del_tiempo>li .Linea_del_tiempo-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.Linea_del_tiempo>li .Linea_del_tiempo-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.Linea_del_tiempo>li .Linea_del_tiempo-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #e9ecef;
  border-radius: 100%;
  background-color: #ffc800;
}

.Linea_del_tiempo>li .Linea_del_tiempo-image h4,
.Linea_del_tiempo>li .Linea_del_tiempo-image .h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}

.Linea_del_tiempo>li.Linea_del_tiempo-inverted>.Linea_del_tiempo-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}

.Linea_del_tiempo>li.Linea_del_tiempo-inverted>.Linea_del_tiempo-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}

.Linea_del_tiempo>li.Linea_del_tiempo-inverted>.Linea_del_tiempo-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}

.Linea_del_tiempo>li:last-child {
  margin-bottom: 0;
}

.Linea_del_tiempo .Linea_del_tiempo-heading h4,
.Linea_del_tiempo .Linea_del_tiempo-heading .h4 {
  margin-top: 0;
  color: inherit;
}

.Linea_del_tiempo .Linea_del_tiempo-heading h4.subheading,
.Linea_del_tiempo .Linea_del_tiempo-heading .subheading.h4 {
  text-transform: none;
}

.Linea_del_tiempo .Linea_del_tiempo-body>ul,
.Linea_del_tiempo .Linea_del_tiempo-body>p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .Linea_del_tiempo:before {
    left: 50%;
  }

  .Linea_del_tiempo>li {
    min-height: 100px;
    margin-bottom: 100px;
  }

  .Linea_del_tiempo>li .Linea_del_tiempo-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }

  .Linea_del_tiempo>li .Linea_del_tiempo-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }

  .Linea_del_tiempo>li .Linea_del_tiempo-image h4,
  .Linea_del_tiempo>li .Linea_del_tiempo-image .h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }

  .Linea_del_tiempo>li.Linea_del_tiempo-inverted>.Linea_del_tiempo-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .Linea_del_tiempo>li {
    min-height: 150px;
  }

  .Linea_del_tiempo>li .Linea_del_tiempo-panel {
    padding: 0 20px 20px;
  }

  .Linea_del_tiempo>li .Linea_del_tiempo-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }

  .Linea_del_tiempo>li .Linea_del_tiempo-image h4,
  .Linea_del_tiempo>li .Linea_del_tiempo-image .h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }

  .Linea_del_tiempo>li.Linea_del_tiempo-inverted>.Linea_del_tiempo-panel {
    padding: 0 20px 20px;
  }
}

@media (min-width: 1200px) {
  .Linea_del_tiempo>li {
    min-height: 170px;
  }

  .Linea_del_tiempo>li .Linea_del_tiempo-panel {
    padding: 0 20px 20px 100px;
  }

  .Linea_del_tiempo>li .Linea_del_tiempo-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }

  .Linea_del_tiempo>li .Linea_del_tiempo-image h4,
  .Linea_del_tiempo>li .Linea_del_tiempo-image .h4 {
    margin-top: 40px;
  }

  .Linea_del_tiempo>li.Linea_del_tiempo-inverted>.Linea_del_tiempo-panel {
    padding: 0 100px 20px 20px;
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}




/*------------------------------------
Mapa interactivo
--------------------------------*/


.c-interactivemap {
  position: relative;
  background-color: #fff;
  overflow: auto
}

.c-interactivemap__svg-container {
  height: 0;
  width: 100%;
  padding-top: 57%;
  position: relative
}

.c-interactivemap__svg-container svg {
  position: absolute;
  top: 0;
  left: 0
}

.c-interactivemap__logo {
  margin-bottom: 18px
}

.c-interactivemap__teaser {
  margin-bottom: 40px;
  cursor: pointer
}

.c-interactivemap__teaser h1,
.c-interactivemap__teaser h2,
.c-interactivemap__teaser h3,
.c-interactivemap__teaser h4,
.c-interactivemap__teaser h5 {
  margin-bottom: 0 !important
}

.c-interactivemap__teaser .c-interactivemap__logo {
  max-height: 80px;
  max-width: 215px
}

@media (max-width: 63.99em) {
  .c-interactivemap__teaser .c-interactivemap__logo {
    margin-bottom: 10px
  }
}

.c-interactivemap__overlay-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative
}

@media (min-width: 48em) {
  .c-interactivemap__overlay-layout {
    display: block
  }
}

.c-interactivemap__overlay-text-layout {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1
}

.c-interactivemap__overlay-image-layout {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2
}

.c-interactivemap__overlay {
  z-index: 1;
  display: none;
  top: 0;
  left: 0;
  max-width: 836px;
  padding: 12px;
  margin-bottom: 24px;
  margin-left: 24px;
  position: relative;
  background-color: #fff;
  border: 1px solid var(--color-01);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16)
}

@media (min-width: 48em) {
  .c-interactivemap__overlay {
    border: 1px solid var(--color-01);
    position: absolute;
    max-width: 836px;
    padding: 40px 48px 40px 21px;
    margin: 0
  }
}

.c-interactivemap__overlay .c-interactivemap__logo {
  height: auto !important;
  max-width: 228px
}

.c-interactivemap__overlay-text-layout {
  margin-bottom: 24px
}

@media (min-width: 64em) {
  .c-interactivemap__overlay-text-layout {
    margin-bottom: 0;
    padding-left: 15px
  }
}

.c-interactivemap__overlay-image {
  margin-bottom: 7px
}

.c-interactivemap__image-caption {
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.39
}

.c-interactivemap__description h1,
.c-interactivemap__description h2,
.c-interactivemap__description h3,
.c-interactivemap__description h4,
.c-interactivemap__description h5 {
  margin-bottom: 0 !important
}
/*
.c-interactivemap__overlay-close {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 18px;
  background-position: -1205px -1188px;
  background-repeat: no-repeat;
  background-image: url(../assets/img/30465.svg);
  width: 22.71px;
  height: 22.71px;
  cursor: pointer
}
*/
.c-interactivemap__overlay-close {
  content: "";
  display: flex;               /* Usamos flexbox para centrar el ícono */
  justify-content: center;     /* Centra el contenido horizontalmente */
  align-items: center;         /* Centra el contenido verticalmente */
  position: absolute;
  top: 20px;
  right: 18px;
  width: 40px;                 /* Ajusta el tamaño del cuadrado */
  height: 40px;                /* Ajusta el tamaño del cuadrado */
  font-size: 24px;             /* Ajusta el tamaño del ícono */
  background-color: rgba(0, 0, 0, 0.2);  /* Fondo semi-transparente */
  border-radius: 50%;          /* Redondea los bordes para que sea un círculo */
  cursor: pointer;
  border: none;                /* Elimina el borde por defecto */
}

.c-interactivemap__overlay-close {
  z-index: 9999;
}

.c-interactivemap__overlay--full-width {
  width: 100% !important
}


.c-interactivemap__overlay-layout,
.c-jobteaser__content-layout,
.c-jobteaser__number-layout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

.u-padding {
  padding: 24px !important
}

.u-padding-tiny {
  padding: 6px !important
}

.u-padding-small {
  padding: 12px !important
}

.u-padding-large {
  padding: 48px !important
}

.u-padding-huge {
  padding: 96px !important
}

.u-padding-none {
  padding: 0 !important
}

.u-padding-top {
  padding-top: 24px !important
}

.u-padding-top-tiny {
  padding-top: 6px !important
}

.u-padding-top-small {
  padding-top: 12px !important
}

.u-padding-top-large {
  padding-top: 48px !important
}

.u-padding-top-huge {
  padding-top: 96px !important
}

.u-padding-top-none {
  padding-top: 0 !important
}

.u-padding-right {
  padding-right: 24px !important
}

.u-padding-right-tiny {
  padding-right: 6px !important
}

.u-padding-right-small {
  padding-right: 12px !important
}

.u-padding-right-large {
  padding-right: 48px !important
}

.u-padding-right-huge {
  padding-right: 96px !important
}

.u-padding-right-none {
  padding-right: 0 !important
}

.u-padding-bottom {
  padding-bottom: 24px !important
}

.u-padding-bottom-tiny {
  padding-bottom: 6px !important
}

.u-padding-bottom-small {
  padding-bottom: 12px !important
}

.u-padding-bottom-large {
  padding-bottom: 48px !important
}

.u-padding-bottom-huge {
  padding-bottom: 96px !important
}

.u-padding-bottom-none {
  padding-bottom: 0 !important
}

.u-padding-left {
  padding-left: 24px !important
}

.u-padding-left-tiny {
  padding-left: 6px !important
}

.u-padding-left-small {
  padding-left: 12px !important
}

.u-padding-left-large {
  padding-left: 48px !important
}

.u-padding-left-huge {
  padding-left: 96px !important
}

.u-padding-left-none {
  padding-left: 0 !important
}

.u-padding-horizontal {
  padding-left: 24px !important;
  padding-right: 24px !important
}

.u-padding-horizontal-tiny {
  padding-left: 6px !important;
  padding-right: 6px !important
}

.u-padding-horizontal-small {
  padding-left: 12px !important;
  padding-right: 12px !important
}

.u-padding-horizontal-large {
  padding-left: 48px !important;
  padding-right: 48px !important
}

.u-padding-horizontal-huge {
  padding-left: 96px !important;
  padding-right: 96px !important
}

.u-padding-horizontal-none {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.u-padding-vertical {
  padding-top: 24px !important;
  padding-bottom: 24px !important
}

.u-padding-vertical-tiny {
  padding-top: 6px !important;
  padding-bottom: 6px !important
}

.u-padding-vertical-small {
  padding-top: 12px !important;
  padding-bottom: 12px !important
}

.u-padding-vertical-large {
  padding-top: 48px !important;
  padding-bottom: 48px !important
}

.u-padding-vertical-huge {
  padding-top: 96px !important;
  padding-bottom: 96px !important
}

.u-padding-vertical-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important
}

.u-margin {
  margin: 24px !important
}

.u-margin-tiny {
  margin: 6px !important
}

.u-margin-small {
  margin: 12px !important
}

.u-margin-large {
  margin: 48px !important
}

.u-margin-huge {
  margin: 96px !important
}

.u-margin-none {
  margin: 0 !important
}

.u-margin-top {
  margin-top: 24px !important
}

.u-margin-top-tiny {
  margin-top: 6px !important
}

.u-margin-top-small {
  margin-top: 12px !important
}

.u-margin-top-large {
  margin-top: 48px !important
}

.u-margin-top-huge {
  margin-top: 96px !important
}

.u-margin-top-none {
  margin-top: 0 !important
}

.u-margin-right {
  margin-right: 24px !important
}

.u-margin-right-tiny {
  margin-right: 6px !important
}

.u-margin-right-small {
  margin-right: 12px !important
}

.u-margin-right-large {
  margin-right: 48px !important
}

.u-margin-right-huge {
  margin-right: 96px !important
}

.u-margin-right-none {
  margin-right: 0 !important
}

.u-margin-bottom {
  margin-bottom: 24px !important
}

.u-margin-bottom-tiny {
  margin-bottom: 6px !important
}

.u-margin-bottom-small {
  margin-bottom: 12px !important
}

.u-margin-bottom-large {
  margin-bottom: 48px !important
}

.u-margin-bottom-huge {
  margin-bottom: 96px !important
}

.u-margin-bottom-none {
  margin-bottom: 0 !important
}

.u-margin-left {
  margin-left: 24px !important
}

.u-margin-left-tiny {
  margin-left: 6px !important
}

.u-margin-left-small {
  margin-left: 12px !important
}

.u-margin-left-large {
  margin-left: 48px !important
}

.u-margin-left-huge {
  margin-left: 96px !important
}

.u-margin-left-none {
  margin-left: 0 !important
}

.u-margin-horizontal {
  margin-left: 24px !important;
  margin-right: 24px !important
}

.u-margin-horizontal-tiny {
  margin-left: 6px !important;
  margin-right: 6px !important
}

.u-margin-horizontal-small {
  margin-left: 12px !important;
  margin-right: 12px !important
}

.u-margin-horizontal-large {
  margin-left: 48px !important;
  margin-right: 48px !important
}

.u-margin-horizontal-huge {
  margin-left: 96px !important;
  margin-right: 96px !important
}

.u-margin-horizontal-none {
  margin-left: 0 !important;
  margin-right: 0 !important
}

.u-margin-vertical {
  margin-top: 24px !important;
  margin-bottom: 24px !important
}

.u-margin-vertical-tiny {
  margin-top: 6px !important;
  margin-bottom: 6px !important
}

.u-margin-vertical-small {
  margin-top: 12px !important;
  margin-bottom: 12px !important
}

.u-margin-vertical-large {
  margin-top: 48px !important;
  margin-bottom: 48px !important
}

.u-margin-vertical-huge {
  margin-top: 96px !important;
  margin-bottom: 96px !important
}

.u-margin-vertical-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important
}

.o-wrapper {
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1160px
}

.o-wrapper:after {
  display: block !important
}


#weltkarte {
  width: 100%;
  height: auto;
}

.country {
  fill: #e0e0e0;
  /* Color gris claro de fondo para las áreas */
  transition: fill 0.3s ease;
  /* Suaviza la transición del color */
}

.country:hover {
  fill: #007bff;
  /* Cambia a color azul cuando se pasa el mouse */
}


.o-layout {
  display: block;
  margin: 0 0 0 -24px;
  padding: 0;
  list-style: none;
  font-size: 0
}

.o-box>:last-child,
.o-flag__body,
.o-flag__body>:last-child,
.o-media__body,
.o-media__body>:last-child {
  margin-bottom: 0
}

.o-layout__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding-left: 24px;
  font-size: 14px;
  font-size: 1rem
}

.o-layout--flush {
  margin-left: 0
}

.o-layout--flush>.o-layout__item {
  padding-left: 0
}

.o-layout--tiny {
  margin-left: -6px
}

.o-layout--tiny>.o-layout__item {
  padding-left: 6px
}

.o-layout--small {
  margin-left: -12px
}

.o-layout--small>.o-layout__item {
  padding-left: 12px
}

.o-layout--large {
  margin-left: -48px
}

.o-layout--large>.o-layout__item {
  padding-left: 48px
}

.o-layout--huge {
  margin-left: -96px
}

.o-layout--huge>.o-layout__item {
  padding-left: 96px
}

.o-layout--middle>.o-layout__item {
  vertical-align: middle
}

.o-layout--bottom>.o-layout__item {
  vertical-align: bottom
}

.o-layout--center {
  text-align: center
}

.o-layout--center>.o-layout__item {
  text-align: left
}

.o-layout--right {
  text-align: right
}

.o-layout--left,
.o-layout--left>.o-layout__item,
.o-layout--right>.o-layout__item {
  text-align: left
}

.o-layout--reverse {
  direction: rtl
}

.o-layout--reverse>.o-layout__item {
  direction: ltr
}

.o-layout--auto>.o-layout__item {
  width: auto
}

.link-container {
  text-align: center;
}

.animated-link {
  display: inline-block;
  margin: 20px;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #007dc6, #f9b11e 80%);
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.animated-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  transition: left 0.4s ease;
}

.animated-link:hover::after {
  left: 100%;
}

.animated-link:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}




/*--------------------------------------------------------------
  # Sección Características
  --------------------------------------------------------------*/
  .features h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .features .icon-list i {
    margin-right: 10px;
    font-size: 24px;
    line-height: 1;
  }
  
  .features .icon-list span {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .features .phone-wrap {
    position: absolute;
    right: 0;
  }
  
  @media (max-width: 768px) {
    .features .phone-wrap {
      position: relative;
    }
  }
  
  .features .phone-wrap img {
    width: 340px;
  }
  
  @media (max-width: 992px) {
    .features .phone-wrap img {
      margin-top: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .features .phone-wrap img {
      width: 100%;
    }
  }
  
  .features .details {
    margin-top: 80px;
    padding: 120px 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }
  
  .features .details h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .features .details p {
    margin-bottom: 20px;
    font-size: 15px;
  }
  
  .features .details .btn-get-started {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    font-family: var(--heading-font);
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px 32px;
    border-radius: 50px;
    transition: 0.5s;
  }
  
  .features .details .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  /*--------------------------------------------------------------
    # Sección de entradas recientes
    --------------------------------------------------------------*/
  .recent-posts .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .recent-posts .post-box .post-img {
    overflow: hidden;
    position: relative;
  }
  
  .recent-posts .post-box .post-img img {
    transition: 0.5s;
  }
  
  .recent-posts .post-box .meta {
    margin-top: 15px;
  }
  
  .recent-posts .post-box .meta .post-date {
    font-size: 15px;
    font-weight: 400;
    color: var(--accent-color);
  }
  
  .recent-posts .post-box .meta .post-author {
    font-size: 15px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .recent-posts .post-box .post-title {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0 0 0;
    position: relative;
    transition: 0.3s;
  }
  
  .recent-posts .post-box p {
    margin: 15px 0 0 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .recent-posts .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    margin-top: 15px;
  }
  
  .recent-posts .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
  }
  
  .recent-posts .post-box:hover .post-title {
    color: var(--accent-color);
  }
  
  .recent-posts .post-box:hover .post-img img {
    transform: scale(1.1);
  }
  
  
  
  /*--------------------------------------------------------------
  # Featured Services Section
  --------------------------------------------------------------*/
  .VMV {
    --surface-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding-top: 0;
  }
  
  .VMV .service-item {
    background-color: var(--surface-color);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
  
    display: flex;
    /* Habilita Flexbox */
    flex-direction: column;
    /* Asegura que los elementos estén en columna */
    align-items: center;
    /* Centra horizontalmente */
    justify-content: center;
    /* Centra verticalmente */
    text-align: center;
    /* Asegura que el texto esté centrado */
    height: 100%;
    /* Mantiene el tamaño del contenedor */
  }
  
  .VMV .service-item .icon {
    margin-bottom: 10px;
    display: flex;
    /* Habilita Flexbox */
    align-items: center;
    /* Centra verticalmente */
    justify-content: center;
    /* Centra horizontalmente */
  }
  
  .VMV .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: 0.3s;
  }
  
  .VMV .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
    /* Centra el texto horizontalmente */
  }
  
  .VMV .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
  }
  
  .VMV .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .VMV .service-item:hover {
    transform: translateY(-10px);
  }
  
  .VMV .service-item:hover h4 a {
    color: var(--accent-color);
  }
  
  /*-------------------------------------------------------------------------------
  Sección Encabezado
  -------------------------------------------------------------------------------*/
  .encabezado {
    width: 100%;
    min-height: 100%;
    height: 100%;
    position: relative;
    padding: 100px  0 60px; /*Fondo tamaño y margenes*/
    display: flex;
    align-items: center;
  }
  
  /*@media (min-width: 1200px) {
    .encabezado:after {
      position: absolute;
      content: "";
      width: 0%;
      background-image: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
      top: 0;
      bottom: 0;
      z-index: 2;
    }
  }
  
  .encabezado:before {
    position: absolute;
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 40%);
    inset: 0;
    z-index: 2;
  }
  */
  .encabezado img {
    position: absolute;
    top: 0;
    /* Asegura que la imagen esté en la parte superior */
    right: 0;
    /* Alinea la imagen al lado derecho */
    display: block;
    width: auto;
    /* Ajusta el ancho automáticamente */
    height: 100%;
    /* Mantiene la imagen ajustada a la altura */
    object-fit: none;
    /* Ajusta la imagen para que no se estire */
    z-index: 1;
  }
  
  .encabezado .container,
  .encabezado .container-fluid {
    z-index: 3;
    position: relative;
  }
  
  .encabezado h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
  }
  
  .encabezado blockquote {
    color: color-mix(in srgb, var(--default-color), transparent 100%);
    padding-left: 20px;
    border-left: 2px solid var(--accent-color);
    margin: 40px 0;
  }
  
  .encabezado .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
  }
  
  .encabezado .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  }
  
  .encabezado .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
  }
  
  .encabezado .btn-watch-video i {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
  }
  
  .encabezado .btn-watch-video:hover {
    color: var(--default-color);
  }
  
  .encabezado .btn-watch-video:hover i {
    color: var(--default-color);
  }
  
  @media (max-width: 640px) {
    .encabezado h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    .encabezado .btn-get-started,
    .encabezado .btn-watch-video {
      font-size: 13px;
    }
  }
  
  /*
  Encabezado fondo video
  */
  
  .encabezado-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta el video para cubrir todo el área */
    z-index: 1; /* Asegúrate de que el video esté detrás del contenido */
  }
  
  .encabezado .container,
  .encabezado .container-fluid {
    z-index: 2; /* El contenido estará sobre el video */
    position: relative;
  }
  
  
  
  
  
  
  .c-menutrigger {
    display: none; /* Ocultar por defecto */
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    border: none;
  }
  
  .c-menutrigger__icon {
    width: 30px;
    height: 3px;
    background-color: white;
    position: relative;
  }
  
  .c-menutrigger__icon::before,
  .c-menutrigger__icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: white;
    left: 0;
  }
  
  .c-menutrigger__icon::before {
    top: -8px;
  }
  
  .c-menutrigger__icon::after {
    bottom: -8px;
  }
  
  /* Estilos para el menú móvil */
  .c-navmobile {
    display: none; /* Inicialmente oculto */
    background-color: #333;
    padding: 10px 0;
  }
  
  .c-navlist {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .c-navlist li {
    padding: 10px 20px;
    text-align: center;
  }
  
  .c-navlist li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
  }
  
  /* Estilos para cuando el menú es visible */
  .c-navmobile.is-open {
    display: block;
  }
  
  /* Media Query para mostrar el botón de menú en pantallas pequeñas */
  @media (max-width: 768px) {
    .c-menutrigger {
      display: block;
    }
  
    .c-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .c-navlist {
      display: none; /* El menú se oculta en pantallas pequeñas */
    }
  
    .c-navlist.is-open {
      display: block;
    }
  }

  
  
.nuestros-clientes {
  align-items: flex-end;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0;
  list-style: none; /* Elimina los puntos */
}

.logos li {
  filter: grayscale(0%);
  opacity: 0.6;
  margin: 10px;
  transition: all 0.3s ease-in-out;
}

.logos li:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.logos img {
  max-width: 110px;
  transition: transform 0.3s ease-in-out;
}

.logos li:hover img {
  transform: rotate(5deg);
}

/* Animaciones de entrada */
.animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.animate:nth-child(odd) {
  animation-delay: 0.2s;
}

.animate:nth-child(even) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (min-width: 600px) {
	#ventajas {
		background: url('img/ventajas.jpg') no-repeat;
		background-size: cover;
		background-position: 80%;
	}
	.logos {
		flex-wrap: nowrap;
	}
	.logos.exito {
		flex-wrap: wrap;
	}
	.logos li {
		margin: 10px;
		flex-basis: 140px;
	}
	.logos.exito li {
		margin: 18px;
		flex-basis: 150px;
	}
	.logos img {
		max-width: 100%;
	}
	.opinion {
		padding: 0 20%;
	}
	#ventajas .flex {
		justify-content: center;
	}
	#ventajas .flex li {
		flex-basis: 160px;
		margin: 40px 50px;
	}
}

.is-vertical-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-horizontal-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.is-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.is-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.is-fixed {
  position: fixed;
  width: 100%;
}
.is-paddingless {
  padding: 0 !important;
}
.is-marginless {
  margin: 0 !important;
}
.is-pointer {
  cursor: pointer !important;
}
.is-rounded {
  border-radius: 100%;
}
.clearfix {
  content: "";
  display: table;
  clear: both;
}
.is-hidden {
  display: none !important;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
  max-width: calc((100% / (12/12)) - var(--grid-gutter));
}


  /*--------------------------------------------------------------
# Seccion contacto
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/*  Mensajes de formularios PHP
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*-------------------------------------------------------------------------------
Sección Encabezado
-------------------------------------------------------------------------------*/
.encabezado {
  width: 100%;
  min-height: 100%;
  height: 100%;
  position: relative;
  padding: 100px 0 60px; /*Fondo tamaño y margenes*/
  display: flex;
  align-items: center;
}

/*@media (min-width: 1200px) {
  .encabezado:after {
    position: absolute;
    content: "";
    width: 0%;
    background-image: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

.encabezado:before {
  position: absolute;
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  inset: 0;
  z-index: 2;
}
*/
.encabezado img {
  position: absolute;
  top: 0;
  /* Asegura que la imagen esté en la parte superior */
  right: 0;
  /* Alinea la imagen al lado derecho */
  display: block;
  width: auto;
  /* Ajusta el ancho automáticamente */
  height: 100%;
  /* Mantiene la imagen ajustada a la altura */
  object-fit: none;
  /* Ajusta la imagen para que no se estire */
  z-index: 1;
}

.encabezado .container,
.encabezado .container-fluid {
  z-index: 3;
  position: relative;
}

.encabezado h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.encabezado blockquote {
  color: color-mix(in srgb, var(--default-color), transparent 100%);
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  margin: 40px 0;
}

.encabezado .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
}

.encabezado .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.encabezado .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.encabezado .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.encabezado .btn-watch-video:hover {
  color: var(--default-color);
}

.encabezado .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .encabezado h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .encabezado .btn-get-started,
  .encabezado .btn-watch-video {
    font-size: 13px;
  }
}

/*
Encabezado fondo video
*/

.encabezado-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta el video para cubrir todo el área */
  z-index: 1; /* Asegúrate de que el video esté detrás del contenido */
}

.encabezado .container,
.encabezado .container-fluid {
  z-index: 2; /* El contenido estará sobre el video */
  position: relative;
}


/*--------------------------------------------------------------
# Seccion de llamar a la accion
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}


.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 44%;
    background-image: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container,
.hero .container-fluid {
  z-index: 3;
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero blockquote {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  margin: 40px 0;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--default-color);
}

.hero .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# Seccion acerca de nosotros
--------------------------------------------------------------*/
.Referente .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.Referente .content p {
  margin: 30px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.Referente .content ul {
  list-style: none;
  padding: 0;
}

.Referente .content ul li {
  padding: 0 0 15px 0;
  font-weight: 400;
  display: flex;
}

.Referente .content ul i {
  color: var(--accent-color);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-right: 0.5rem;
}


.why-us .img-bg {
  min-height: 500px;
  position: relative;
}

.why-us .img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.why-us .slides {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
}

.why-us h4 {
  font-size: 18px;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.why-us .swiper-wrapper {
  height: auto;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Seccion equipo
--------------------------------------------------------------*/
.Equipo .Equipo-member {
  position: relative;
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  /* Añade algo de espacio interno */
}

.Equipo .Equipo-member .member-img {
  position: relative;
  overflow: hidden;
}

.Equipo .Equipo-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.Equipo .Equipo-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.Equipo .Equipo-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.Equipo .Equipo-member .social i {
  font-size: 18px;
  line-height: 0;
}

.Equipo .Equipo-member .member-info {
  padding: 25px 15px;
}

.Equipo .Equipo-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.Equipo .Equipo-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.Equipo .Equipo-member:hover .social {
  opacity: 1;
  bottom: 15px;
}




/*--------------------------------------------------------------
# Sección Características
--------------------------------------------------------------*/

.servicios_sec h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.servicios_sec .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1;
}

.servicios_sec .icon-list span {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* -----------------------------------------------------------------
Ajustes para la posición del teléfono 
--------------------------------------------------------------------*/

/* Contenedor de los teléfonos */
.servicios_sec .phones-container {
  display: flex;
  flex-wrap: wrap; /* Permite que los teléfonos se acomoden en filas */
  justify-content: center; /* Centra los teléfonos dentro del contenedor */
  gap: 30px; /* Espaciado entre los teléfonos */
}

/* Teléfono principal */
.servicios_sec .phone-wrapper {
  position: relative;
  width: 400px; /* Tamaño original para pantallas grandes */
  height: 700px;
  margin: 0 auto;
  background: #070505; /* Fondo negro */
  border-radius: 36px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra suave */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Imagen dentro del teléfono */
.servicios_sec .phone-container {
  position: relative;
  width: 92%;
  height: 92%;
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.servicios_sec .phone-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente negro */
  z-index: 1; /* Debajo del contenido pero encima de la imagen */
}


/* Contenido dentro del teléfono */
.servicios_sec .phone-container .container {
  position: relative;
  z-index: 3; /* Asegura que el texto esté por encima de la imagen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px;
  text-align: center;
  color: white; /* Cambiar el texto a blanco */
  padding-top: 300px; /* Ajusta la posición vertical del contenido */
}

/* Título dentro del teléfono */
.servicios_sec .phone-container h3 {
  color: white;
}



/* ----------------------------------------
Ajustes responsivos para pantallas pequeñas
---------------------------------------- */

/* Pantallas grandes */
@media (min-width: 992px) {
  .servicios_sec .phone-wrapper {
    width: 400px;
    height: 700px;
  }
}

/* Pantallas medianas */
@media (max-width: 992px) {
  .servicios_sec .phone-wrapper {
    width: 320px;
    height: 600px;
  }

  .servicios_sec .phone-container {
    width: 90%;
    height: 90%;
  }
}

/* Pantallas pequeñas */
@media (max-width: 575px) {
  .servicios_sec .phones-container {
    flex-wrap: wrap; /* Acomoda los teléfonos en filas */
    gap: 20px; /* Espaciado entre teléfonos */
  }

  .servicios_sec .phone-wrapper {
    width: 280px;
    height: 500px;
  }

  .servicios_sec .phone-container {
    width: 88%;
    height: 88%;
  }
}

/* Pantallas muy pequeñas */
@media (max-width: 320px) {
  .servicios_sec .phone-wrapper {
    width: 240px;
    height: 420px;
  }

  .servicios_sec .phone-container {
    width: 90%;
    height: 90%;
    padding: 10px;
  }

  .servicios_sec .phone-container h3,
  .servicios_sec .phone-container p,
  .servicios_sec .phone-container .cta-btn {
    font-size: 12px;
  }

  .servicios_sec .cta-btn {
    padding: 8px 20px;
    margin-top: 10px;
  }
}



/* Teléfono dinámico */
.phone-wrapper {
  position: relative;
  width: 375px;
  height: 667px;
  margin: auto;
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}




.phone-wrapper .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-out;
}



/* --------------------------------------------------------------
# Estilo del contenedor de teléfono móvil
-------------------------------------------------------------- */
.phone-container {
  position: relative;
  width: 375px;
  /* Ancho similar a un teléfono móvil */
  height: 667px;
  /* Altura similar a un teléfono móvil */
  margin: 0 auto;
  /* Centra el teléfono en la pantalla */
  background: #fff;
  /* Fondo blanco para el teléfono */
  border-radius: 36px;
  /* Bordes redondeados */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Sombra suave */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 400px;
  /* Aumentar este valor para bajar el contenido */
  color: white;
  /* Cambiar todos los textos a blanco */
}

.phone-container h1,
.phone-container h2,
.phone-container h3,
.phone-container h4,
.phone-container h5,
.phone-container h6,
.phone-container p,
.phone-container a {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0,0.7);
  /* Asegura que todos los textos sean blancos */
}


.phone-container span{
  color: rgb(255, 255, 255);
}


/* Imagen dentro del teléfono */
.phone-container .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}


/* Botón dentro del teléfono */
.phone-container .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  /* Botón con texto contrastante */
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 20px;
  text-align: center;
}

.phone-container .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/* Estilo para el ícono del teléfono móvil */
.phone-container:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 10px;
}

/* Efecto parallax en la imagen de fondo (mantenerlo dentro del teléfono) */
.imagen-dinamica .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  /* Efecto parallax */
  will-change: transform;
  transition: transform 0.3s ease-out;
  /* Suaviza la transición */
}

/*
Swiper telefono
*/

/*--------------------------------------------------------------
# Estilos Swiper
--------------------------------------------------------------*/
.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.5);
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5722; /* Color del botón activo */
}


.content-section {
  padding: 60px 0;
}








.construction-container {
  animation: fadeIn 2s ease-in-out;
}
.icon {
  font-size: 5rem;
  color: #ffc107;
  animation: bounce 1.5s infinite;
}
.text-construction {
  font-size: 2rem;
  font-weight: bold;
  color: #343a40;
  margin-top: 15px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: typing 3s steps(20, end) infinite alternate;
}
.dots::after {
  content: "";
  display: inline-block;
  animation: dots 1.5s steps(4, end) infinite;
}
.spinner-container {
  margin-top: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes typing {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
}



@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
.animated-image {
  animation: pulse 2s infinite ease-in-out;
}

.equal-img {
  height: 400px; /* Ajusta a lo que necesites */
  object-fit: cover; /* Esto recorta sin distorsionar */
  width: 100%; /* Asegura que se mantenga al 100% del contenedor */
}