.sectionhome-testimonial {
    width: 100%;
    height: auto;
    background-color:var(--bg-card);
    padding: 30px 0px;
}
/* 
.testibox {      
    width: 100%;
    max-width: 1807px;  (589px * 3) + (20px * 2) 
    margin: 0 auto;
    height: 468px;  
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testi-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    height: 100%; 
    gap: 20px;
}

.testimonial {
     Uso de clamp para que sea responsive:
       - 320px mínimo (móvil)
       - 31.5vw aproximado para que quepan 3 en pantallas medianas
       - 589px máximo (tu medida de PC) 
    width: clamp(320px, 31.5vw, 589px); 
    height: 100%;
    background-color: var(--bg-main);
    color: var(--text-dark);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}
.testi-text {
     Mínimo 16px, ideal 6vw, máximo 60px 
    margin: clamp(1rem, 6vw, 3.75rem);
    width: auto;
    font-size: 1.6rem;
    font-family: "Roboto Flex", sans-serif;
    font-style: italic;
    font-weight: 100;
    line-height: 2.4rem;
    flex-grow: 1;
}

.testi-nomb {
    width: auto;
     Margen dinámico: arriba 0, derecha/abajo igual que testi-text, izquierda 0 
    margin: 0 clamp(1rem, 6vw, 3.75rem) clamp(1rem, 6vw, 3.75rem) 0;
    text-align: right;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
}   

 MEDIA QUERIES PARA AJUSTAR ALTURAS Y FUENTES 
@media (max-width: 1200px) {
    .testimonial {
         En tablets, ajustamos a que se vean 2 (aprox 48vw) 
        width: clamp(320px, 48vw, 589px);
    }
}

@media (max-width: 768px) {
    .testibox {
        height: 400px;  Reducción de altura en Tablet 
    }
    .testimonial {
         Eliminado el 90vw. Mantenemos el clamp seguro 
        width: clamp(320px, 70vw, 589px);
    }
    .testi-text {
        font-size: 1.4rem;
        line-height: 2rem;
    }
    .testi-nomb {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .testibox {
        height: 300px;  Reducción de altura en Móvil 
    }
    .testimonial {
         En móviles pequeños, se queda en tus 320px 
        width: 270px; 
    }
    .testi-text {
        font-size: 1.2rem;
        line-height: 2rem;
    }
    .testi-nomb {
        font-size: 1.3rem;
    }
}

@media (max-width: 320px) {
    .testibox {
        height: 270px;  320 Altura mínima para pantallas muy pequeñas 
        width: 270px; 
    }
    .testi-text {
        font-size: 1.1rem;
        line-height: 2rem;
    }
    .testi-nomb {
        font-size: 1.3rem;
    }
}

.testi-container {
    position: relative;  Base para los botones 
    width: 100%;
    max-width: 1807px;
    margin: 0 auto;
}

.btn-scroll {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(255 255 255 / 83%);
    color: #000000;
    border: none; 
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.btn-scroll.left { left: 10px; }
.btn-scroll.right { right: 10px; }

 Ocultar scrollbar visual pero mantener funcionalidad 
.testibox {
    scrollbar-width: none;  Firefox 
    -ms-overflow-style: none;  IE/Edge 
}
.testibox::-webkit-scrollbar {
    display: none;  Chrome/Safari 
}*/



/* Tienes razón, volvamos a los parámetros exactos de Roboto Flex y 1.6rem */

.testi-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.testibox {
  width: calc( 100% - 110px );
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Oculta scrollbar en Firefox */
  scroll-snap-type: x mandatory;
  margin: 0 auto;
}

.testibox::-webkit-scrollbar {
  display: none; /* Oculta scrollbar en Chrome/Safari */
}

.testi-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 20px 0;
  width: max-content;
}

.testimonial {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  /* En PC ocupará 350px, en móvil será dinámico */
  width: 350px; 
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: center; 
}

/* RESPETANDO TUS ESPECIFICACIONES EXACTAS */
.testi-text {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 1.6rem; /* Exactamente lo solicitado */
  line-height: 1.4;
  color: #333;
  margin-bottom: 1.5rem;
}

.testi-nomb {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
  text-align: right;
}

/* BOTONES ENCIMA (Sin quitar espacio) */
.btn-scroll {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.left { left: 10px; }
.right { right: 10px; }

/* AJUSTE PARA MÓVIL (Pantallas estrechas) */
@media (max-width: 480px) {
    .testibox{
        width:100%;
    }
    .testimonial {
      /* El 90% del ancho de pantalla para que entre 
         y se vea un pedazo del siguiente */
      width: 90vw; 
      margin-left: 5vw; /* Centrado visual */
    }

    .testi-text {
      /* Mantenemos el 1.6rem pero podrías bajarlo a 1.4rem 
         solo si ves que el texto es demasiado largo para el móvil */
      font-size: 1.6rem; 
    }

    .btn-scroll {
      /* En móvil los hacemos más pequeños para que no tapen el texto */
      width: 30px;
      height: 30px;
      opacity: 0.6;
    }
}