/* Importando a fonte Montserrat do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    background-color: #2d2625;
    color: #fff;
    font-family: 'Montserrat', sans-serif; /* Aplicando a fonte Montserrat */
}

#testimonial-filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.testimonial-filter {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    background-color: #49403f;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.testimonial-filter:hover, .testimonial-filter.active {
    background-color: #a5896c;
}

#testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.testimonial-item {
    display: none; /* Inicialmente, oculta todos os depoimentos */
    background-color: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
    width: 1000px; /* Aumentando a largura total do container */
    text-align: left; /* Alinhando o texto à esquerda */
    box-sizing: border-box; /* Inclui padding e border na largura total */
}

.testimonial-item.active {
    display: flex; /* Exibe o depoimento ativo */
}

.testimonial-content {
    display: flex;
    flex-direction: row; /* Alinhando os itens em linha (lado a lado) */
    align-items: flex-start; /* Alinhando o conteúdo ao topo */
    padding: 20px;
    width: 100%; /* Ajustando a largura para preencher o container */
    box-sizing: border-box; /* Inclui padding e border na largura total */
}

.testimonial-content img {
    width: 40%; /* Aumentando a largura da imagem para 40% do container */
    height: auto; /* Garantindo que a altura da imagem seja ajustada proporcionalmente */
    position: relative; /* Necessário para posicionar o pseudo-elemento */
    margin-right: 10px; /* Adicionando espaço entre a imagem e o texto */
    box-sizing: border-box; /* Inclui padding e border na largura total */
}

.testimonial-content img::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px; /* Espaço entre a imagem e a borda */
    width: 2px; /* Largura da borda */
    height: 100%;
    background-color: #a5896c; /* Cor da borda */
    box-sizing: border-box; /* Inclui padding e border na largura total */
}

.testimonial-text {
    width: 60%; /* Ajustando a largura do texto para 60% do container */
    padding-left: 30px; /* Espaço entre a imagem e o texto */
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* Inclui padding e border na largura total */
}

.testimonial-client {
    font-weight: bold;
    margin-bottom: 10px; /* Espaço entre o nome do cliente e o texto do depoimento */
    font-size: 1.2em; /* Aumentando o tamanho da fonte do nome do cliente */
}

.testimonial-handle {
    color: #a5896c;
    margin-top: 5px; /* Adiciona um espaço entre o texto e o @ */
}

.testimonial-handle a {
    color: #a5896c;
    text-decoration: none;
    font-weight: bold;
}

.testimonial-handle a:hover {
    text-decoration: underline;
}

.testimonial-text p {
    font-size: 1.1em; /* Aumentando o tamanho da fonte do depoimento */
}