@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Reenie+Beanie&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Para que bajen en móviles */
	width: 100%;
margin-top: 4vh;
}

.card {
    position: relative;
    flex: 1 1 calc(33.333% - 20px); /* 3 columnas en desktop */
    max-width: 400px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.card-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    text-align: center;
	font-family: "Roboto", Open Sans;
    font-size: 29px;
    font-weight: 900;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 90%;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Título */
.elementor-slide-heading {
  font-size: 35px;

  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* espacio entre emoji y texto */
font-family: "Reenie Beanie", Open Sans;
    font-weight: 600;
}

/* Descripción */
.elementor-slide-description {
  font-size:17px;
  line-height: 1.4;
      font-weight: 400;

  	font-family: "Roboto", Open Sans;

}

.elementor-slide-description img,
.elementor-slide-heading img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
  body {
        margin: 0;
      }
      .swiper-hero {
        width: 100%;
        max-width: 1600px;
      }

      .swiper-hero .swiper-slide {
        width: 250px;
      }

      .swiper-hero .imgbgslider {
        height: 400px;
        width: 100%;
        object-fit: cover;
      }

	  /* Posiciona la paginación sobre la imagen */
.swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* Estilo de los bullets */
.swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background: #cc723f;
  opacity: 1;
}

.swiper-button-next::after, .swiper-button-prev::after {
    content: ""!important;
}
.swiper-button-next svg, .swiper-button-prev svg {
    fill: hsla(0, 0%, 93.3%, .9);
    height: 1em;
    width: 1em;
	font-size: 25px;
}
      @media (min-width: 1024px) {
        .swiper-hero .imgbgslider {
          height: 600px;
        }
      }



/* Responsive */
@media (max-width: 768px) {

  .elementor-slide-heading {
    font-size: 1.6rem;
  }

  .elementor-slide-description {
    font-size: 1rem;
  }
}


/* Responsivo para tablets y móviles */
@media (max-width: 768px) {
    .card {
        flex: 1 1 calc(50% - 20px); /* 2 columnas */
    }
}
@media (max-width: 480px) {
  .elementor-slide-heading {
    font-size: 1.3rem;
    flex-wrap: wrap;
    text-align: center;
  }

  .elementor-slide-description {
    font-size: 0.9rem;
  }
}



@media (max-width: 480px) {
    .card {
        flex: 1 1 100%; /* 1 columna */
    }
    .card-text {
        font-size: 1.5rem;
    }
}


.montserrat-900{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.reenie-beanie-regular {
  font-family: "Reenie Beanie", cursive;
  font-weight: 600;
  font-style: normal;
}