/* ===== Brinca Granado — carrossel de avaliações reais (herói) ===== */
:root {
  --pg-red: #f97316;
  --pg-red-dark: #ea580c;
}

.pg-hero-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 26px auto 0 auto;
}

.pg-hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pg-red);
  margin-bottom: 10px;
}
.pg-hero-kicker::before,
.pg-hero-kicker::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 60px;
  background: rgba(249, 115, 22, 0.45);
}

.pg-frame {
  position: relative;
  border-radius: 26px;
  padding: 12px;
  background: linear-gradient(145deg, #f97316, #ea580c);
  box-shadow: 0 18px 40px -18px rgba(234, 88, 12, 0.65);
}
.pg-frame::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 21px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.pg-window {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 3px var(--pg-red);
}
.pg-window::before,
.pg-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 46px;
  z-index: 3;
  pointer-events: none;
}
.pg-window::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
.pg-window::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.pg-track {
  display: flex;
  gap: 10px;
  padding: 10px;
  width: max-content;
  animation: pg-scroll 72s linear infinite;
}
@keyframes pg-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.pg-slide {
  position: relative;
  width: 158px;
  height: 158px;
  flex: 0 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4f5;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.4);
}
.pg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-slide .pg-cap {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pg-red);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  padding: 4px 6px;
  border-radius: 7px;
  text-transform: uppercase;
}
.pg-slide .pg-stars {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffd24a;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 2px;
  padding: 4px 8px;
  border-radius: 999px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.pg-frame-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pg-red-dark);
}
.pg-frame-foot span.pg-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pg-red);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .pg-slide { width: 128px; height: 128px; }
  .pg-slide .pg-stars { font-size: 13px; }
}
