/* ============================================
   LANA AUTOMOTIVA — Depoimentos Section
   ============================================ */

.depoimentos {
  padding: 60px 0;
  background-color: transparent;
}

.depoimentos__heading {
  font-weight: 400;
  font-size: 2.25rem;
}

@media (max-width: 767px) {
  .depoimentos {
    padding: 48px 0;
  }
}

.depoimentos__inner {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .depoimentos__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
  }
}

/* ── Left Column: Info ── */

.depoimentos__info {
  width: 384px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

@media (max-width: 1024px) {
  .depoimentos__info {
    width: 100%;
    gap: 32px;
  }
}

.depoimentos__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-regular);
  line-height: 1.2;
  color: var(--color-blue-brand-600);
  margin: 0 0 16px;
}

@media (max-width: 767px) {
  .depoimentos__title {
    font-size: var(--text-2xl);
    /* 24px */
  }
}

.depoimentos__heading span {
  color: var(--color-neutral-400);
  font-weight: 400;
}

.depoimentos__description {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-neutral-400);
}

@media (max-width: 767px) {
  .depoimentos__description {
    font-size: 18px;
  }
}

/* ── Right Column: Cards ── */

.depoimentos__grid {
  display: flex;
  gap: 32px;
  flex: 1;
}

@media (max-width: 1200px) {
  .depoimentos__grid {
    overflow-x: auto;
    padding-bottom: 24px;
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
  }

  .depoimentos__grid::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }
}

.depoimento-card {
  width: 384px;
  flex-shrink: 0;
  background-color: var(--color-static-white);
  border: 1px solid var(--color-neutral-50);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.depoimento-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ededed;
  position: relative;
}

.depoimento-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-blue-brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.depoimento-card__avatar img {
  width: 24px;
  height: auto;
}

.depoimento-card__user-info {
  display: flex;
  flex-direction: column;
}

.depoimento-card__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--font-regular);
  color: #262626;
  line-height: 1.4;
}

.depoimento-card__handle {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(38, 38, 38, 0.56);
  line-height: 1.4;
}

.depoimento-card__quote-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  opacity: 0.1;
}

.depoimento-card__text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-neutral-400);
}