/* ===== PAGE WRAPPER ===== */
.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

/* ===== FEEDBACKS ===== */

.carousel-wrapper {
  position: relative;
  margin-bottom: 64px;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}
.review-card {
  width: calc(33.333% - 11px);
  min-width: calc(33.333% - 11px);
  background: #fff;
  border: 1.5px solid var(--cinza-borda);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--azul);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--azul-escuro);
}
.review-count {
  font-size: 0.75rem;
  color: #8a9db5;
}
.review-menu {
  color: #b0bbc8;
  font-size: 1rem;
  cursor: pointer;
}
.review-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.stars {
  color: #f0a500;
  font-size: 0.82rem;
  letter-spacing: 1px;
}
.review-time {
  font-size: 0.75rem;
  color: #8a9db5;
}
.review-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--cinza-texto);
}
.review-highlight {
  font-size: 0.82rem;
  color: var(--azul-escuro);
}
.review-highlight strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--cinza-borda);
  background: #fff;
  color: var(--azul-escuro);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition:
    background 0.2s,
    color 0.2s;
}
.carousel-btn:hover {
  background: var(--azul);
  color: #fff;
  border-color: var(--azul);
}
.carousel-btn.prev {
  left: -18px;
}
.carousel-btn.next {
  right: -18px;
}

/* ===== CLIENTES PARCEIROS ===== */
.clientes-section {
  margin-bottom: 48px;
}
.clientes-carousel-wrapper {
  position: relative;
  padding: 0 40px;
}
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.cliente-card {
  height: 90px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  cursor: pointer;
}
.cliente-card:hover {
  transform: translateY(-4px);
  border-color: var(--azul);
  box-shadow: 0 10px 24px rgba(30, 58, 110, 0.15);
}
.cliente-card img {
  width: 100%;
  height: 100%;
  max-width: 130px;
  object-fit: contain;
}

/* ===== GOOGLE RATING ===== */
.google-rating {
  text-align: center;
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.google-rating .rating-label {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--azul-escuro);
}
.google-rating .dot {
  color: #b0bbc8;
  font-size: 1rem;
}
.google-rating .rating-stars {
  font-size: 1.5rem;
  color: #f0a500;
  letter-spacing: 2px;
}
.google-logo {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.google-logo .g {
  color: #4285f4;
}
.google-logo .o1 {
  color: #ea4335;
}
.google-logo .o2 {
  color: #fbbc05;
}
.google-logo .g2 {
  color: #4285f4;
}
.google-logo .l {
  color: #34a853;
}
.google-logo .e {
  color: #ea4335;
}

/* ===== DIVISOR ===== */
.divisor {
  border: none;
  border-top: 1px solid var(--cinza-borda);
  margin: 0 0 48px;
}

/* ===== LOCALIZAÇÃO + WHATSAPP ===== */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}
.info-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(30, 58, 110, 0.12);
  border-color: var(--azul);
}
.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--azul-escuro);
  margin: 0 0 16px 0;
  font-family: 'Barlow', sans-serif;
}
.info-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}
.info-card:hover .info-card-icon {
  transform: scale(1.1);
}
.info-card-icon.loc {
  background: rgba(212, 105, 30, 0.08);
}
.info-card-icon.loc i {
  font-size: 1.5rem;
  color: var(--laranja);
}
.info-card-icon.wpp {
  background: rgba(37, 211, 102, 0.08);
}
.info-card-icon.wpp i {
  font-size: 1.6rem;
  color: #25d366;
}
.info-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--cinza-texto);
  margin: 0 0 24px 0;
  flex-grow: 1;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .review-card {
    width: 100%;
    min-width: 100%;
  }
  .cliente-card {
    width: calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
  .info-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
@media (max-width: 480px) {
  .cliente-card {
    width: 100%;
    min-width: 100%;
  }
  .title-section {
    font-size: 1.6rem;
  }
}
