/* CSS para el componente de reseñas */

.review-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(67, 97, 238, 0.1);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.1);
  border-color: rgba(67, 97, 238, 0.3);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.review-profile-picture-container {
  flex-shrink: 0;
}

.review-profile-picture {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4361ee;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.25rem 0;
}

.review-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  color: #4361ee;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #7209b7;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
}

.review-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-date {
  color: #999;
  font-size: 0.875rem;
}

/* Grid Layout */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Carousel Styles */
.reviews-carousel .swiper-slide {
  height: auto;
}

.reviews-carousel .swiper-button-prev,
.reviews-carousel .swiper-button-next {
  color: #4361ee;
}

.reviews-carousel .swiper-pagination-bullet-active {
  background-color: #4361ee;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    padding: 1rem;
  }
  
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}