
/* Sección de testimonios */
#testimonios {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  /* Encabezado */
  .testimonios-header h2 {
    font-size: 4rem;
    font-weight: bold;
    color: black;
  }
  
  .testimonios-header p {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 2rem;
  }
  
  /* Slider */
  .testimonios-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    overflow-x: hidden;
  }
  
  .testimonio-card {
    flex: 0 0 300px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
    scroll-snap-align: start;
  }
  
  .cliente-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .testimonio-card h3 {
    font-size: 1.2rem;
    color: #333;
  }
  
  .testimonio-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0.5rem 0 1rem;
  }
  
  .estrellas {
    margin-top: 1rem;
    color: #ffd700;
    font-size: 1.2rem;
  }
  
  /* Botón */

  iframe{
    border-radius: 2rem;
  
  }

  .testimonios-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .slider-btn {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
  
  .slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  