/* ========================================
   DIFERENCIAIS
======================================== */

.diferenciais {
  position: relative;
  padding: 120px 7%;
  background:
    radial-gradient(circle at top left, rgba(212,160,23,0.08), transparent 28%),
    linear-gradient(180deg, #0b0b0b 0%, #140909 100%);
  overflow: hidden;
}

/* HEADER */

.diferenciais-header,
.avaliacoes-top {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.diferenciais-tag,
.avaliacoes-tag {
  display: inline-block;
  color: #d4a017;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 18px;
}

.diferenciais-header h2,
.avaliacoes-top h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.7rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 24px;
  color: #fff;
}

.diferenciais-header p {
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  font-size: 1.05rem;
}

/* GRID */

.diferenciais-grid {
  max-width: 1300px;
  margin: 0 auto 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diferencial-card {
  position: relative;
  padding: 38px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.16);
  transition: 0.35s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.diferencial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,160,23,0.45);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.38),
    0 0 28px rgba(212,160,23,0.12);
}

.diferencial-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  border-radius: 22px;
  background: rgba(212,160,23,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diferencial-icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.diferencial-card h3 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.diferencial-card p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

/* ========================================
   AVALIAÇÕES
======================================== */

.avaliacoes-wrapper {
  position: relative;
}

.avaliacoes-carousel {
  overflow: hidden;
  position: relative;
}

.avaliacoes-track {
  display: flex;
  gap: 24px;
  animation: scrollReviews 28s linear infinite;
  width: max-content;
}

.avaliacao-card {
  width: 360px;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.16);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.avaliacao-stars {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.avaliacao-card p {
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 28px;
}

.avaliacao-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avaliacao-user img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.avaliacao-user h4 {
  color: #fff;
  margin-bottom: 4px;
}

.avaliacao-user span {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
}

@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVO */

@media (max-width: 1100px) {

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .diferenciais {
    padding: 90px 24px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
    margin-bottom: 90px;
  }

  .avaliacao-card {
    width: 300px;
  }

  .diferenciais-header h2,
  .avaliacoes-top h2 {
    font-size: 3rem;
  }

}