.cbp-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.cbp-border-wrapper {
    position: relative;
    width: 260px;
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(90deg, #08f, #f03, #08f); 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    margin-bottom: 20px;
}
.cbp-container {
    width: 250px;
    min-height: 300px;
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-size: 10px !important;
}
.cbp-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    margin-top: 6px;
    margin-bottom: 14px;
}
.cbp-description {
    font-size: 16px;
    line-height: 18px;
    margin: 0px;
    text-align: left;
    margin-top: 10px;
}
.cbp-img-1 {
    width: 100%;
    border-radius: 5px;
}
.cbp-btn-chamada {
        background-color: #f03;
        border-radius: 6px;
        color: #fff;
        font-weight: 700;
        padding: 10px 20px;
        text-decoration: none;
        display: flex; /* Mudado de inline-block para flex */
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */
        font-size: 18px !important;
        width: fit-content; /* Ajusta ao tamanho do texto */
        margin: 0 auto; /* Centraliza horizontalmente dentro do container */
    
    
}