.secba{
    width: 100%;
    display: flex;
    justify-content: center;
}
.contain {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #260A30;
    align-items: center;
}
.elemento {
    width: 250px;
    height: 55px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ofer {
    width: 240px;
    height: 45px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-family: 'monospace';
    font-size: 1.1em;
    transition: 0.5s;
}
.ofer:hover {
    border: 1px solid #9FE86A;
}
.tipo {
    text-align: center;
    width: 240px;
    height: 45px;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'monospace';
    font-size: 1.1em;
    transition: 0.5s;
}
.tipo:hover {
    border: 1px solid #9FE86A;
}
:is(.contain .btnp) {
    width: 240px;
    height: 45px;
    border-radius: 5px;
    background-color: #9FE86A;
    font-weight: bold;
    border: none;
    font-family: 'monospace';
    font-size: 1.1em;
    padding: 0;
    transition: 0.5s;
}
:is(.contain .btnp):hover {
    background-color: #BBEE9B;
}
.centra{
    /* background-color: #F7F7F7; */
    background-color: #EDEFEB;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cards{
    width: 75%;
    height: 90%;
    background-color: #F7F7F7;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around; /* Alinhamento vertical */
    align-items: center; /* Alinhamento horizontal */
}
.card{
    width: 260px;
    height: 280px;
    margin: 5px;
    font-size: 14px;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    display: flex;
    /* font-weight: bold; */
    align-content: center;
    flex-direction: column;
    justify-content: space-around;
    /* margin: 10px; */
    transition: 0.5s;
    box-shadow: 0px 4px 10px -10px rgba(0,0,0,.75);
    color: #1c2841;
}
.card:hover{
    box-shadow: 0px 14px 20px -10px rgba(0,0,0,.75);
}
.card img {
    width: 100%;
    height: 150px;
    border-radius: 10px 10px 0 0;
}
span{
    /* font-size: 18px; */
    /* margin-top: 5px; */
    /* margin: 10px; */
}
p{
    /* font-size: 18px; */
    /* margin-top: 5px; */
    /* margin-bottom: 20px; */
}