.reviews {
  padding: var(--spacing-xl) var(--spacing-sm);
  background: linear-gradient(180deg, var(--color-turquoise) 0%, var(--color-turquoise-dark) 100%);
  position: relative;
  overflow: hidden; /* 🔹 Importante para que el gato no se salga */
}

/* 🔹 Onda superior blanca */
.reviews::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  clip-path: ellipse(100% 100% at 50% 100%); /* Más moderno que border-radius */
  z-index: 0;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* Para que el contenido esté sobre la onda */
}

.reviews h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 0;
  font-weight: bold;
}

.reviews-subtitle {
  font-size: 42px;
  color: white;
  margin-bottom: 50px;
  font-weight: bold;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: var(--spacing-md);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 120px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.review-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-nav-btn:hover {
  background: var(--color-pink);
  color: white;
  transform: scale(1.1);
}


.cat-decoration {
  position: absolute;
  bottom: 400px; 
  left: 360px; 
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.cat-decoration img {
  width: 300px; /* Ajusta el tamaño */
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Animación flotante */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cat-decoration {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .cat-decoration {
    display: none;
  }
  
  .reviews h2,
  .reviews-subtitle {
    font-size: 32px;
  }
}