.aki-widget {
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

.aki-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.aki-rating-box {
  text-align: left;
}

.aki-rating {
  font-size: 32px;
  font-weight: bold;
}

.aki-stars {
  color: #fbbc04;
  font-size: 18px;
}

.aki-total {
  font-size: 14px;
  color: #666;
}

.aki-brand h2 {
  margin: 0;
}

.aki-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: #0f9d58;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.aki-btn:hover {
  background: #0c7a45;
}

/* GRID ESTÁVEL (não quebra no Joomla) */
.aki-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.aki-review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.aki-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.aki-review-top img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.aki-review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.aki-verified {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0f9d58;
}

.aki-badge {
  margin-top: 12px;
  display: inline-block;
  background: #e6f4ea;
  color: #0f9d58;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}

.aki-verified {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0f9d58;
}

.aki-badge {
  margin-top: 12px;
  display: inline-block;
  background: #e6f4ea;
  color: #0f9d58;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}

.aki-review-date {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}
/* GRID 6 REVIEWS PROFISSIONAL */
.aki-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.aki-review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.aki-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.aki-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.aki-review-top img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.aki-review-text {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin-top: 10px;
}

.aki-review-date {
  font-size: 12px;
  color: #888;
}

.aki-badge {
  margin-top: 14px;
  display: inline-block;
  background: #e6f4ea;
  color: #0f9d58;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

.aki-verified {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0f9d58;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .aki-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .aki-reviews-grid {
    grid-template-columns: 1fr;
  }
}
.aki-review-top strong {
  font-size: 15px;
}

.aki-verified {
  color: #0f9d58;
  font-weight: 600;
  font-size: 13px;
}

.aki-rating-box {
  text-align: center;
}

.aki-review-card {
  border: 1px solid #f1f1f1;
  background: #fff;
}

.aki-review-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}


