.consultores {
    
    padding-bottom: 40px;
}

#nossos-consultores {
    justify-content: center; /* Centraliza o slider */
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Limite de largura */
    margin: 0 auto; /* Centraliza na página */
    overflow: hidden;
}

.info-consultores {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.consultor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consultor img {
    width: 160px; /* Ajuste conforme necessário */
    height: 160px; /* Ajuste conforme necessário */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.consultor p {
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Ajuste de cor */
    margin: 0;
}

.blog-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

.post {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.post:nth-child(even) {
    flex-direction: row-reverse;
}

.consultant-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.consultant-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.consultant-details {
    font-size: 18px;
}

.post-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.post-text {
    flex: 1;
}

.post-text h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}

.post-text p {
    margin: 0;
    font-size: 18px;
    color: #666;
}

.post-details p {
    text-align: justify;
    margin-top: 14px;
}

@media screen and (max-width: 1170px) {
    .post {
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .post:nth-child(even) {
        flex-direction: column;
    }

    .consultant-info {
        order: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .post-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .post-content img {
        margin-bottom: 10px;
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .post-details {
        order: 3;
        text-align: center;
    }
}


