/* ============================================================
   ESTRELA HOME CARE — depoimentos.css
   Seção de depoimentos — carrossel
============================================================ */

.depoimentos {
  padding: var(--section-py) 0;
  background: var(--blue-deep);
  overflow: hidden;
  position: relative;
}

.depoimentos::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: 3%;
  font-family: var(--font-display);
  font-size: clamp(12rem, 22vw, 20rem);
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.depoimentos .section-eyebrow {
  color: var(--gold);
}

.depoimentos .section-title {
  color: var(--white);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Carrossel */
.depoimentos__carrossel {
  position: relative;
  overflow: hidden;
}

.depoimentos__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-card {
  min-width: 100%;
  padding: 0 clamp(0rem, 5vw, 4rem);
  box-sizing: border-box;
}

.depoimento-card__inner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  max-width: 860px;
  margin: 0 auto;
  transition: background 0.3s var(--ease);
}

.depoimento-card__inner:hover {
  background: rgba(255,255,255,0.08);
}

/* Estrelas */
.depoimento-card__estrelas {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.depoimento-card__estrelas span {
  color: #F59E0B;
  font-size: 1.1rem;
}

/* Texto */
.depoimento-card__texto {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Autor */
.depoimento-card__autor {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.depoimento-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue-deep);
  font-weight: 500;
  flex-shrink: 0;
}

.depoimento-card__nome {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.depoimento-card__fonte {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.depoimento-card__fonte svg {
  width: 12px;
  height: 12px;
}

/* Controles */
.depoimentos__controles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.depoimentos__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
  font-size: 1.1rem;
}

.depoimentos__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}

/* Dots */
.depoimentos__dots {
  display: flex;
  gap: 0.5rem;
}

.depoimentos__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  padding: 0;
}

.depoimentos__dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* Responsivo */
@media (max-width: 768px) {
  .depoimento-card {
    padding: 0;
  }
}

/* link do google meu negócio*/

.depoimentos__google-link {
  text-align: center;
  margin-top: 2rem;
}

.depoimentos__google-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: color var(--duration) var(--ease);
}

.depoimentos__google-link a:hover {
  color: var(--white);
}