  /* Estilo 1: Fondo de imagen con overlay oscuro */
  .testimonials-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
  }
  
  .testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    background-image: url('img/background.JPG');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    z-index: -1;
  }
  
  .testimonials-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .testimonial-slide {
    display: none;
    animation: fadeEffect 1s;
  }
  
  .testimonial-slide.active {
    display: block;
  }
  
  @keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
  }
  
  .stars {
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 24px;
  }
  
  .testimonial-quote {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
  }
  
  .testimonial-author {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .testimonial-source {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
  
  .dots-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: white;
  }
  
  /* Estilo alternativo 2: Con bordes y efecto de tarjeta */
  .testimonials-section.style2 {
    background-color: #121212;
    position: relative;
  }
  
  .style2 .testimonials-container {
    max-width: 800px;
  }
  
  .style2 .testimonial-slide {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
  }
  
  .style2 .testimonial-quote {
    font-style: italic;
  }
  
  /* Controles de navegación para todos los estilos */
  .nav-arrows {
    position: absolute;
    top: 90%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }