.quote-slider {
  /*position: relative;*/
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1rem;
  overflow: hidden;
}

.quote-wrapper {
  position: relative;
  min-height: 280px; /* Define a altura base para evitar o salto */
}

.quote {
  display: flex;
  /*align-items: center;*/
  text-align: left;
  /*gap: 2rem;*/
  color: white;
  font-family: SpaceGrotesk-Medium;
  font-style: italic;
  font-size: 22px;
  text-shadow: 0 2px 5px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease-in-out;
}

.quote.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.quote-photo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 205px;
  flex-shrink: 0;
}

.quote-photo {
  width: 205px;
  height: 205px;
  object-fit: cover;
}

.quote-name {
  font-size: 20px;
  font-style: normal;
  margin-top: 5px;
  margin-bottom: 0;
}

.quote-role {
  font-size: 16px;
  font-style: normal;
}

.quote-text {
  flex: 1;
}

.quote-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: white;
}