
@import "fonts.css";

.testimonios{
  padding: 2rem 0;
  text-align: center;
}

.testimonios__titulo{
  font-size: 2rem;
  color: var(--brand-azul);
  margin-bottom: 2rem;
}

.testimonios__slider{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding-bottom: 1rem;
}

.testimonios__slider::-webkit-scrollbar{ display: none; }

.testimonio__card{
  background: #fff;
  color: var(--text);
  border: 2px solid var(--brand-cyan);
  border-radius: 10px;
  flex: 0 0 90%;
  max-width: 90%;
  scroll-snap-align: start;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  text-align: left;
}

.testimonio__img{
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}

.testimonio__texto{ font-size: 1rem; line-height: 1.5; margin-bottom: 1rem; }
.testimonio__autor{ font-weight: 700; color: #CE0058; }


@media (min-width: 900px){
  .testimonios__slider{
    overflow: visible;       
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: var(--container-max);
    margin: 0 auto;
    scroll-snap-type: none;   
  }

  .testimonio__card{
    flex: 0 0 23%;
    max-width: 23%;
    scroll-snap-align: initial;
  }
}
