.reviews-section {
  margin: 80px 0;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Header con rating */
.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.rating-overview {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 20px 40px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.score {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.stars {
  color: #fbbf24;
  font-size: 24px;
  letter-spacing: 2px;
}

.total-reviews {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.reviews-header h2 {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 700;
}

.subtitle {
  color: #64748b;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid de reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* Tarjetas de review */
.review-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  color: #f1f5f9;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.review-header img {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f8fafc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-meta strong {
  color: #1e293b;
  font-size: 16px;
  font-weight: 600;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #059669;
  font-weight: 600;
  background: #d1fae5;
  padding: 3px 10px;
  border-radius: 12px;
  width: fit-content;
}

.review-meta time {
  font-size: 13px;
  color: #94a3b8;
}

.review-rating {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 1px;
}

.review-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 15px 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.tag {
  font-size: 12px;
  padding: 5px 12px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 20px;
  font-weight: 500;
}

.tag.outcome {
  background: #dcfce7;
  color: #166534;
  font-weight: 600;
}

/* Métricas de confianza - suavizadas */
.trust-metrics {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  padding: 30px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 16px;
  color: white;
}

.metric {
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #fbbf24;
}

.metric span {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
  display: block;
  max-width: 140px;
  margin: 0 auto;
}

/* Disclaimer */
.reviews-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin: 30px 0;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-disclaimer svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* CTA */
.reviews-cta {
  text-align: center;
  margin-top: 30px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #B68B40;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid #B68B40;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #B68B40;
  color: white;
  transform: translateX(5px);
}

.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translate(3px, -3px);
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-section {
    margin: 40px 0;
  }
  
  .rating-overview {
    padding: 15px 25px;
  }
  
  .score {
    font-size: 36px;
  }
  
  .reviews-header h2 {
    font-size: 24px;
  }
  
  .trust-metrics {
    flex-direction: column;
    gap: 25px;
  }
  
  .metric strong {
    font-size: 28px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card {
  animation: fadeInUp 0.6s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }

.footer {
  background: #000;
  color: #94A3B8;
  padding: 40px 30px;
  margin-top: 70px;
  border-radius: 16px 16px 0 0;
  font-size: 0.85rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--accent);
}

.footer-brand {
  text-align: center;
  margin-top: 20px;
}

.footer-brand img {
  max-width: 450px;
  width: 100%;
  height: auto;
}
