/* Reset leve */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.depoimentos {
  background: #f5f7fa;
  padding: 80px 14px 80px 14px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #d4dbe6;
  border-bottom: 1px solid #d4dbe6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.header-depoimentos {
  text-align: center;
  margin-bottom: 32px;
}

.header-depoimentos h2 {
  font-size: 44px;
  font-weight: 700;
  color: #232323;
  margin-bottom: 10px;
}

.header-depoimentos p {
  color: #324455;
  font-size: 16px;
}

/* Grid */
.grid-depoimentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card hr{
  margin: 20px 0 20px 0 !important;
  opacity: 30%;
}

/* Stars */
.stars {
  color: #fbbf24;
  margin-bottom: 15px;
  font-size: 28px;
}

/* Texto */
.texto {
  font-style: italic;
  color: #324455;
  font-size: 16px;
  line-height: 1.5;
  opacity: 90%;

  margin: 0;
}


/* Cliente */
.cliente strong {
  display: block;
  color: #111827;
  font-size: 16px;
  margin: 0 0 6px 0 !important;
}

.cliente span {
  color: #6b7280;
  font-size: 14px;
}

/* ===================== */
/* RESPONSIVO */
/* ===================== */

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

/* Mobile */
@media (min-width: 300px) and (max-width: 767px) {
  .grid-depoimentos {
    grid-template-columns: 1fr;
  }

  .header-depoimentos h2 {
    font-size: 30px;
    font-weight: 700;
  }

  .depoimentos{
    padding: 60px 0px 60px 0px;
  }