/* Estilos do carrossel de depoimentos - Com imagem de aspas correta */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    position: relative;
}

.testimonial-item div::before,
.testimonial-item div::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 33px;
    background-image: url("../img/quotes.png");
    background-repeat: no-repeat;
    opacity: 0.4;
}

.testimonial-item div::before {
    top: -20px;
    left: -30px;
    background-position: 0 0;
}

.testimonial-item div::after {
  right: -40px;
  bottom: 80px;
  background-position: -58px 0;
}

.testimonial-item img {
  width: 180px;                 /* tamanho final da imagem */
  height: 180px;
  border-radius: 50%;           /* formato circular */
  border: 4px solid #fff;       /* borda branca destacada */
  object-fit: cover;            /* recorte perfeito da imagem */
  object-position: center top;  /* centraliza, mostrando mais o rosto */
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4); /* sombra elegante */
  margin-bottom: 35px;          /* espaço entre a imagem e o texto */
  display: block;               /* remove espaçamento fantasma */
  overflow: hidden;             /* evita que a imagem ultrapasse o círculo */
  background: none;             /* fundo limpo */
  flex-shrink: 0;               /* evita deformar se estiver em container flex */
}


.testimonial-content p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.testimonial-content span {
    color: #f1f3f5;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.indicator.active {
    background: #007bff;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 123, 255, 0.8);
    transform: scale(1.1);
}

/* Responsivo para carrossel */
@media (max-width: 768px) {
    .testimonial-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .testimonial-item div::before {
        top: -15px;
        left: -20px;
        width: 35px;
        height: 25px;
        background-size: 70px 25px;
    }

    .testimonial-item div::after {
        bottom: -15px;
        right: -20px;
        width: 35px;
        height: 25px;
        background-size: 70px 25px;
        background-position: -35px 0;
    }

    .testimonial-item img {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .testimonial-content p {
        font-size: 1.1rem;
    }
}