.representantes-filter {
    margin-bottom: 20px;
    text-align: center;
}

.representantes-filter select {
    padding: 5px;
    font-size: 16px;
}

/* Container dos cards */
.representantes-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-content: flex-start;
    max-height: 357px;
    overflow-y: auto;
    padding: 0;
    background: #f9f9f9;
    width: 100%;
 /* max-width: 1100px; */
    box-sizing: border-box;
}

/* Estilização dos cards */
.representante-card {
    border: 1px solid #000000; /* Borda preta conforme solicitado */
    padding: 15px;
    border-radius: 5px;
    width: 473px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
    flex: 1 1 calc(50% - 20px);
}

/* Responsividade */
@media (max-width: 960px) {
    .representante-card {
        flex: 1 1 100%;
    }
}

/* Estilos do título do representante */
.representante-card h3 {
    margin: -10px 0px -10px -03px;
    font-size: 20px;
    font-weight: bold;
}

/* Aplicação correta do h4 para a empresa */
.representante-card h4 {
    color: #24212C; /* Cor conforme print */
    font-family: 'Barlow', sans-serif; /* Tipografia correta */
    font-size: 24px; /* Tamanho da fonte */
    font-weight: normal;
    margin: 8px 0px 16px; /* Margens conforme inspeção */
}

/* Estilos do conteúdo */
.representante-card p {
    margin: -13px 0;
    font-size: 16px;
    color: #333;
}

/* Barra de rolagem personalizada */
.representantes-cards-container::-webkit-scrollbar {
    width: 8px;
}

.representantes-cards-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.representantes-cards-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.representantes-cards-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}