@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

.testimonial-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    background: #fff;
    padding: 40px 60px 95px 60px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    overflow: visible; /* permite a imagem sair do card */
}

.stars {
    color: #0077b6;
    font-size: 12px;
    margin-bottom: 15px;
}

.quote {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
    position: relative;
    display: inline-block;
}

.quote::before {
  content: "“";
  font-size: 24px;
  position: absolute;
  left: -15px;
  top: -5px;
  color: #0077b6;
  font-weight: bold;
}

.quote::after {
  content: "”";
  font-size: 24px;
  position: absolute;
  right: -15px;
  bottom: -5px;
  color: #0077b6;
  font-weight: bold;
}

.author {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px; /* espaço entre nome e imagem */
}

.author-wrapper {
    position: absolute;
    bottom: -50px; /* desce junto com a foto */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0077b6;
    background: #fff;
    margin: 0 auto;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bullets à direita */
.dots {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #0077b6;
}
