
.cep-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: flex-start;
}
.cep-tab {
    padding: 10px 20px;
    color: white;
    background: #023A5B;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.cep-tab:hover,
.cep-tab.active {
    background-color: #9C4CA0;
}
.cep-content {
    display: none;
}
.cep-content.active {
    display: block;
}
.cep-card {
    background: #f9f9f9;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
