#depoimentos {
    width: 100%;
    padding: 80px 8%;
    background-color: #ffffff;
}

.depoimentos-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.depoimentos-title {
    font-size: 3rem;
    font-weight: 700;
    color: #61168C;
    text-align: center;
}

.depoimentos-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.depoimento-card {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out;
    border: 2px solid transparent;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(97, 22, 140, 0.15);
    border-color: #61168C;
}

.estrelas {
    display: flex;
    gap: 5px;
    color: #ffc107;
    font-size: 1.2rem;
}

.depoimento-texto {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
    flex: 1;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #61168C 0%, #00ffc8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.autor-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.autor-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #61168C;
    margin: 0;
}

.autor-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Responsividade */
@media (max-width: 968px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .depoimentos-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    #depoimentos {
        padding: 60px 5%;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .depoimentos-title {
        font-size: 2rem;
    }

    .depoimento-card {
        padding: 30px 20px;
    }

    .depoimento-texto {
        font-size: 1rem;
    }
}

