.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  display: flex;
  flex: 0 0 100%;
  gap: 30px;
  padding: 10px;
  justify-content: center;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 10px 12px;
  width: calc(33.333% - 20px);
  max-width: 380px;
  min-width: 300px;
  transition: all 0.3s ease;
  height: max-content;
  position: relative;
  border: 1px solid #e8e8e8;
  transform: scale(0.98);
}

.review-card:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #d2e3fc;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  font-weight: 600;
  margin-right: 18px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.avatar span {
  position: relative;
  z-index: 2;
}

.user-info {
  flex: 1;
}

.user-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #202124;
}

.rating {
  display: flex;
  margin-bottom: 8px;
}

.rating i {
  color: #fbbc04;
  font-size: 20px;
  margin-right: 3px;
}

.date {
  font-size: 0.9rem;
  color: #5f6368;
}

.review-content {
  font-size: 1rem;
  line-height: 1.65;
  color: #3c4043;
  margin-bottom: 30px;
  position: relative;
  padding-left: 25px;
}

.review-content::before {
  content: "";
  font-size: 80px;
  color: #e8eaed;
  line-height: 0;
  position: absolute;
  top: 20px;
  left: -15px;
  font-family: Georgia, serif;
  opacity: 0.7;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f3f4;
  padding-top: 22px;
}

.platform {
  display: flex;
  align-items: center;
  color: #1a73e8;
  font-weight: 500;
  font-size: 1.05rem;
}

.platform i {
  margin-right: 8px;
  font-size: 22px;
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 22px;
  color: #5f6368;
}

.carousel-control:hover {
  background: #1a73e8;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -30px;
}

.next-btn {
  right: -30px;
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #dadce0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #1a73e8;
  transform: scale(1.3);
}

.google-badge {
  background: #f8f9fa;
  border-radius: 50px;
  padding: 10px 25px;
  display: inline-flex;
  align-items: center;
  margin-top: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8eaed;
}

.google-badge i {
  color: #4285f4;
  font-size: 28px;
  margin-right: 10px;
}

.google-badge span {
  font-weight: 500;
  color: #3c4043;
  font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 1200px) {
  .review-card {
    width: calc(50% - 15px);
    max-width: none;
  }

  .carousel-control {
    width: 55px;
    height: 55px;
  }

  .prev-btn {
    left: -20px;
  }

  .next-btn {
    right: -20px;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2.2rem;
  }

  .review-card {
    width: 100%;
    max-width: 500px;
    padding: 30px 25px;
  }

  .carousel-control {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .prev-btn {
    left: -15px;
  }

  .next-btn {
    right: -15px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.9rem;
  }

  .header p {
    font-size: 1.05rem;
  }

  .review-card {
    min-width: 280px;
    padding: 25px 20px;
  }

  .avatar {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .user-info h3 {
    font-size: 1.15rem;
  }

  .review-content {
    font-size: 1rem;
    padding-left: 20px;
  }

  .carousel-control {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
.review-content {
  position: relative;
  font-size: 1rem;
  line-height: 1.65;
  color: #3c4043;
  margin-bottom: 30px;
  padding-left: 25px;
  min-height: 110px; /* fuerza misma altura para todos */
}

.review-content .read-toggle {
  color: #1a73e8;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 8px;
  display: inline-block;
  cursor: pointer;
}

.review-content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -15px;
  font-family: Georgia, serif;
  opacity: 0.7;
}
