.bg-image{
    background-image: url(../img/hero-bg.jpg);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-image-banner {
  background-image: url(../img/banner-historia.jpg);
  height: 40vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-white{
    color: white;
}
.p1 {
  font-size: 25px;
}

.logos {
  transform: scale(1); /* Tamaño normal */
  transition: transform 0.3s ease; /* Transición suave */
}
.logos:hover {
  transform: scale(1.05); /* Aumenta el tamaño al hacer hover */
}

.cont-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* entrada a la pagina */
.fade-in {
    animation: fadeInAnimation 2s ease-in-out forwards;
    opacity: 0;
  }
  @keyframes fadeInAnimation {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/* Google Font */
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Swiper */
body {
  position: relative;
  height: 100%;
}

body {
  background: #ffffff;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Css Slide */
.texto-superpuesto-slide {
  position: absolute;
  top: 50%; /* Coloca el texto en el centro vertical */
  left: 50%; /* Coloca el texto en el centro horizontal */
  transform: translate(-50%, -50%); /* Centra el texto completamente */
  color: white; /* Color del texto */
  text-align: center; /* Alinea el texto al centro */
}
.texto-superpuesto-slide-img {
  position: absolute;
  top: 50%; /* Coloca el texto en el centro vertical */
  left: 50%; /* Coloca el texto en el centro horizontal */
  transform: translate(-50%, -50%); /* Centra el texto completamente */
  width: 200px;
}

/* Swiper */
.swiper-button-next {
  color: white;
}
.swiper-button-prev {
  color: white;
}
.swiper-pagination {
  color: white;
}

.swiper-slide {
  position: relative;
  background-size: cover; /* Ajusta el tamaño de la imagen de fondo */
}

.slide1 {
  background-image: url('../img/slide-cisa.jpg'); /* Ruta a tu imagen de fondo */
  height: 100vh;
}
.slide2 {
  background-image: url('../img/slide-cisa-2.jpg');
}