/* ── DEPOIMENTOS ─────────────────────────────────────────────────────────── */

.depoimentos {
  background-color: var(--color-bg-alt);
  padding-block: 3.2rem;
}

.depoimentos__title {
  color: var(--color-text);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

/* ── CARDS: coluna empilhada no mobile ───────────────────────────────────── */

.depoimentos__carousel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.5rem var(--section-padding-x) 1rem;
}

/* ── CARD ────────────────────────────────────────────────────────────────── */

.depoimentos__card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

/* Aspas tipográficas — decorativas, não semânticas */
.depoimentos__quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.7;
  color: var(--color-accent);
  user-select: none;
}

/* Estrelas SVG */
.depoimentos__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--color-accent);
}

/* Texto do depoimento */
.depoimentos__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.depoimentos__text p {
  margin: 0;
}

/* Autor */
.depoimentos__author {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  font-style: normal;
  margin-top: auto;
}

/* ── DOTS: ocultos — sem carrossel ───────────────────────────────────────── */

.depoimentos__dots {
  display: none;
}

/* ── TABLET/DESKTOP: grid 3 colunas ─────────────────────────────────────── */

@media (min-width: 768px) {
  .depoimentos {
    padding-block: 4rem;
  }

  .depoimentos__title {
    margin-bottom: 2.5rem;
  }

  .depoimentos__carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    max-width: 1200px;
    margin-inline: auto;
    padding: 0.5rem 0 1.5rem;
    gap: 1.5rem;
  }
}
