
.text-shadow{
  text-shadow: 1px 1px 1px #2e1e19, 2px 2px 3px var(--gris, #b0b0b0);
}

.page-content {
  display: block;
  max-width: 100%;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  gap: 1rem;
  padding: 1rem;
  font-family: var(--font-sans);
}

  .title {
    font-size: 0.8rem;
    
  }


@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (hover: hover) and (min-width: 600px) {
  .card:after {
    transform: translateY(0);
  }
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    transition: transform 0.5s ease;
}

.card {
  flex: 1 1 100%;
  min-width: 1;
  max-width: 600px;
  min-height: 350px;
  max-height: 800px;
  position: relative;
  align-items: center;
  overflow: hidden;
  padding: 1rem;
  margin: 1rem;
  /*text-align: center;*/
  color: white;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
  transition: transform 1s ease;
  transform-origin: center;
}

.card .active {
    transform: scale(1.1); 
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.card:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.009) 11.7%, hsla(0, 0%, 0%, 0.034) 22.1%, hsla(0, 0%, 0%, 0.072) 31.2%, hsla(0, 0%, 0%, 0.123) 39.4%, hsla(0, 0%, 0%, 0.182) 46.6%, hsla(0, 0%, 0%, 0.249) 53.1%, hsla(0, 0%, 0%, 0.32) 58.9%, hsla(0, 0%, 0%, 0.394) 64.3%, hsla(0, 0%, 0%, 0.468) 69.3%, hsla(0, 0%, 0%, 0.54) 74.1%, hsla(0, 0%, 0%, 0.607) 78.8%, hsla(0, 0%, 0%, 0.668) 83.6%, hsla(0, 0%, 0%, 0.721) 88.7%, hsla(0, 0%, 0%, 0.762) 94.1%, hsla(0, 0%, 0%, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}


  .top-right {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #3b82f6; /* azul */
  color: white;
  padding: 8px;
  border-bottom-left-radius: 8px;
  width:100%;
  font-size: 1.3rem;
}

@media (max-width: 600px) {
  .top-right {
  font-size: 1.0rem;
  }
  .copy {
    font-size: 0.6rem;
    font-weight: lighter;
  }
}

.card:hover .copy {
  display: inline-block;
  z-index: 2000;
  color: white;
  position: absolute;
  padding: 0.3rem;
  margin: 0.3rem;
  bottom: 3rem;
  right: 1rem;
}

.card:hover .btn {
  background-color: #ad28ff;
}

  .copy {
  font-family: var(--font-comic-sans);
  font-size: 1.0rem;
  font-style: italic;
  display: block;
  font-weight: bold;
  text-color: white;
  line-height: 1.1;
  padding-right: 0.1rem;
  z-index: 1;
  display: none;
  position: absolute;
  text-align: justify-all;
}


.btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.30rem 0.3rem;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: #69d6cc;
  border: none;
  border-radius: 10px;
  z-index: 1;
  width: 7rem;
  height: 2.5rem;
  align-items: left;
  z-index: 1000;
  position: absolute;
  bottom:0.5rem;
  left: 0.5rem;
}
.btn:hover {
  background-color: #ad28ff;
}
.btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

  .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
  .content > * + * {
  margin-top: 1rem;
}

  .content {
    transform: translateY(calc(100% - 4.5rem));
  }
  .content > *:not(.title) {
    opacity: 10;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }
  .card:hover,
  .card:focus-within {
    align-items: center;
  }
  .card:hover:before,
  .card:focus-within:before {
    transform: translateY(-4%);
  }
  .card:hover:after,
  .card:focus-within:after {
    transform: translateY(-50%);
  }
  .card:hover .content,
  .card:focus-within .content {
    transform: translateY(0);
  }
  .card:hover .content > *:not(.title),
  .card:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }
  .card:focus-within:before, .card:focus-within:after,
  .card:focus-within .content,
  .card:focus-within .content > *:not(.title) {
    transition-duration: 3s;
  }
}*/

/*# sourceMappingURL=styles.css.map */

/* Estilos de la sección de testimonios */
.testimonial-section {
  padding: 2rem 1rem;
  background-color: var(--plata, #f2f5ff); /* Usa tu color de fondo corporativo */
}

.testimonial-title {
  font-size: 1.5rem;
  color: var(--verde, #69d6cc); /* Color del título */
}

.testimonial-swiper {
  width: 100%;
  overflow: hidden;
  max-width: auto;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.testimonial-image {
  width: 70%;
/*  aspect-ratio: 16 / 9;*/
  height: auto;
  max-height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

./* Estilos personalizados para los controles de Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: var(--verde, #69d6cc); /* Color de los botones de navegación */
  transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--azul, #76bcf5); /* Cambia de color en hover */
}

.swiper-pagination-bullet {
  background-color: var(--gris, #b0b0b0); /* Color de la paginación */
}

.swiper-pagination-bullet-active {
  background-color: var(--lila, #ad28ff); /* Color activo de la paginación */
}

