/* Testimonios Section */
.testimonios {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
}

.testimonios .section-title,
.testimonios .section-subtitle {
  color: white;
}

.testimonios-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonio-item {
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.testimonio-item.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.testimonio-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.testimonio-text {
  margin-bottom: 2rem;
}

.testimonio-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
}

.testimonio-text p::before {
  content: '"';
  font-size: 4rem;
  color: rgba(249, 115, 22, 0.5);
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: serif;
}

.testimonio-text p::after {
  content: '"';
  font-size: 4rem;
  color: rgba(249, 115, 22, 0.5);
  position: absolute;
  bottom: -40px;
  right: -30px;
  font-family: serif;
}

.testimonio-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.9rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.9);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(249, 115, 22, 0.3);
  border-color: rgba(249, 115, 22, 0.5);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #f97316;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(249, 115, 22, 0.7);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .testimonios {
    padding: 4rem 0;
  }

  .testimonio-content {
    padding: 2rem;
  }

  .testimonio-text p {
    font-size: 1rem;
  }

  .testimonio-text p::before,
  .testimonio-text p::after {
    font-size: 3rem;
  }

  .testimonio-text p::before {
    top: -15px;
    left: -20px;
  }

  .testimonio-text p::after {
    bottom: -30px;
    right: -20px;
  }

  .testimonio-author {
    flex-direction: column;
    text-align: center;
  }

  .slider-controls {
    gap: 1rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .testimonio-content {
    padding: 1.5rem;
  }

  .testimonio-text p {
    font-size: 0.9rem;
  }

  .testimonio-text p::before,
  .testimonio-text p::after {
    font-size: 2.5rem;
  }

  .author-info h4 {
    font-size: 1rem;
  }

  .author-info span {
    font-size: 0.8rem;
  }
}
