/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap"); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Noto Sans", sans-serif; */
  font-family: 'Montserrat', sans-serif;

}

 body {
    background-color: #eceeff; /* Fondo negro */
    color: #000; /* Texto blanco */
    /* font-family: Arial, sans-serif; */
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
  }

  main {
    height: 85vh;
  }


  .section {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 60vh; */
    margin-top: 100px;
  }

  .section2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .content1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; 
    padding: 30px 0;
  }

  .content2 {
    display: flex;
    align-items: center;
    
    width: 100%; 
    padding: 30px 0;
  }

  .image-container2 {
    flex: 1; /* Toma la mitad del espacio */
    display: flex;
    justify-content: center;
  }

  .image-container3 {
    flex: 1; /* Toma la mitad del espacio */
    display: flex;
    justify-content: center;
  }

  .image-container4 {
    flex: 1; /* Toma la mitad del espacio */
    display: flex;
    justify-content: center;
    border-left: 0px;
    /* border-left: 1px solid; */
  }


  .image-container5 {
    flex: 1; /* Toma la mitad del espacio */
    display: flex;
    justify-content: center;
    /* border-left: 1px solid; */
  }

  

  .image-container2 img {
    max-width: 100%; /* Imagen ajustada al contenedor */
    max-height: 300px; /* Altura máxima de la imagen */
    object-fit: contain; /* Mantiene la proporción */
  }

  .image-container3 img {
    max-width: 100%; /* Imagen ajustada al contenedor */
    max-height: 300px; /* Altura máxima de la imagen */
    object-fit: contain; /* Mantiene la proporción */
  }

  .image-container4 img {
    max-width: 100%; /* Imagen ajustada al contenedor */
    max-height: 300px; /* Altura máxima de la imagen */
    object-fit: contain; /* Mantiene la proporción */
  }

  .image-container5 img {
    max-width: 100%; /* Imagen ajustada al contenedor */
    max-height: 600px; /* Altura máxima de la imagen */
    object-fit: contain; /* Mantiene la proporción */
  }

  /* carrusel */
  .swiper-container {
    width: 100%;
    max-width: 600px;
    height: 350px;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
  justify-content: center;
  align-items: center;
  }
  
  .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #eceeff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .swiper-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    background-color: transparent !important;
    color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: calc(var(--swiper-navigation-size) / 4 * 25) !important;
  }

  .feature-card {
    background-color: #eceeff;
    /* border: 1px solid #333;  */
    border-radius: 10px;
    max-width: 500px;
    padding: 20px;
    text-align: center;
  }

  .feature-card2 {
    text-align: center;
  }

  .feature-card3 {
    text-align: start;
  }

   .icon img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .icon video {
    width: 100%;
  }

  .icon3 img {
    width: 50%;
    height: auto;
    border-radius: 0;
  }

  .icon4 img {
    width: 50%;
    height: auto;
    border-radius: 0;
  }

   .contacto{
    text-align: left;
    font-size: 40px;
    padding-bottom: 10px;
  }

  .nombre-contacto {
    text-align: left;
  }
 
  .title-contacto {
  color: #e30613;
  font-weight: bold;
}

 .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.contact-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
}

.contact-item p {
  margin: 0;
  line-height: 1.4;
  text-align: left;
  padding-left: 10px;
}



@media (max-width: 768px) {
  /* .logo {
    width: 40%;
  } */
  .nav-logo {
    text-align: center;
  }
  .nav-logo a {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
  }
  .nav-content ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
  }
}

@media (max-width: 768px) {
    .swiper-slide img {
      max-width: 100%;
    }

    .swiper-container {
      height: 300px;
    }
  }

  
  @media (max-width: 768px) {
    .content2 {
      flex-direction: row; /* Pila en pantallas pequeñas */
      text-align: center;
    }

    .image-container3,
    .text-container3 {
      flex: none; /* Anula el espacio compartido */
      width: 100%;
    }

    .image-container3 img {
      max-height: 200px; /* Reduce la imagen en dispositivos pequeños */
    }
  }

  
  @media (max-width: 768px) {
    .features-section {
      flex-direction: column; /* Coloca las tarjetas una encima de otra */
      gap: 20px;
    }

    .feature-card {
      max-width: 90%; /* Ocupa casi todo el ancho en pantallas pequeñas */
    }

    .icon video {
      width: 100%;
    }
  }

  





  @media (max-width: 768px) {
    
  /* Widget Hirbo */
  .Hirbo-componente-open {
    min-height: 40vh;
    max-height: 55vh;
    height: 100%;
    position: fixed;
    top: 25vh;
    border-radius: 15px;
    max-width: 75vw !important;
    width: 100%;
    right: 50px !important;
    z-index: 999999;
  }

  }




  /* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap"); */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: "Noto Sans", sans-serif; */
            font-family: 'Montserrat', sans-serif;
        }

        /* NAVBAR */
        .navbar {
            background-color: #0b0d33;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .logo {
            height: 40px;
        }

        nav a {
            margin: 0 1rem;
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #e30613;
        }

.menu {
            font-size: 22px;
        }
        
        /* RESPONSIVE */
        @media (max-width: 768px) {
            .navbar {
                padding: 0.3rem;
            }

            .logo {
                height: 30px;
            }

            nav a {
                margin: 0 0.5rem;
                font-size: 14px;
            }

            .section {
            display: block;
            justify-content: center;
            align-items: center;
            /* min-height: 60vh; */
            margin-top: 100px;
          }

          .section2 {
            display: block;
            justify-content: center;
            align-items: center;
          }

          .content1 {
            display: block;
            align-items: center;
            justify-content: space-between;
            width: 100%; 
            padding: 30px 0;
          }


          .swiper-button-next,
          .swiper-button-prev {
                top: var(--swiper-navigation-top-offset, 35%) !important;
            background-color: transparent !important;
            color: transparent !important;
            border: none !important;
            box-shadow: none !important;
            width: calc(var(--swiper-navigation-size) / 8 * 25) !important;
          }

        }

        .navbar nav a.active {
            color: red;
            font-weight: bold;
            }