/* Estilos para a seção de depoimentos */
.depoimentos-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.depoimento-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(74, 55, 40, 0.04);
    transition: all 0.4s ease;
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 220px;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 55, 40, 0.08);
}



.depoimento-estrelas {
    color: #F9A825;
    font-size: 14px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.depoimento-texto {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.depoimento-autor {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    color: #824E34;
    margin-top: auto;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.depoimento-autor::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #824E34;
    margin-right: 10px;
}



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

@media (max-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .depoimento-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .depoimentos-section {
        padding: 60px 0;
    }
    
    .depoimento-card {
        padding: 20px;
    }
    
    .depoimento-texto {
        font-size: 0.95rem;
    }
    
    .depoimento-autor {
        font-size: 1rem;
    }
}
