@charset "UTF-8";
/* =========================
   GOOGLE REVIEWS STYLES
========================= */

.google-reviews {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #222;
}

.reviews-summary {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.summary-score h2 {
  font-size: 64px;
  margin: 0;
}

.summary-stars {
  color: #fbbc04;
  font-size: 28px;
  margin: 10px 0;
}

.summary-score p {
  color: #666;
}

.rating-bars {
  flex: 1;
  min-width: 280px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bar-container {
  flex: 1;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #fbbc04;
  border-radius: 20px;
}

.fill-5 { width: 92%; }
.fill-4 { width: 12%; }
.fill-3 { width: 4%; }
.fill-2 { width: 2%; }
.fill-1 { width: 2%; }

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

.review-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 20px;
  transition: 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4285f4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.review-header h4 {
  margin: 0;
}

.review-stars {
  color: #fbbc04;
  margin: 4px 0;
}

.review-card p {
  line-height: 1.5;
  color: #444;
}

.reviews-button {
  text-align: center;
  margin-top: 40px;
}

.reviews-button a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 40px;
  background: #4285f4;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

.reviews-button a:hover {
  opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {

  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .summary-score h2 {
    font-size: 48px;
  }

}

/* FIN RESEÑAS DE GOOGLE
