.page {
    background-color: #14365d;
    min-height: 100vh;
}

.card-item-container {
    
    padding-top: 24px;
    padding-bottom: 24px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 4px;

}

.card-item {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    max-width: 820px;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-space-between {
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.mw300 {
    max-width: 300px;
}

.destinario-heg {
    max-width: 400px;
}

.mw200 {
    max-width: 200px;
}

.w100 {
    width: 100%;
}

.btn-card {
    padding: 12px;
    font-weight: bold;
    color: white;
    background-color: #3a7225;
    border-radius: 24px;
    min-width: 120px;
}

.btn-card:hover {
    color: white;
    background-color: #254917;
}

.alink {
    color: #fff;
}

.alink:hover {
    text-decoration-color: #fff;
    color: #fff;
}

.mb24 {
    margin-bottom: 24px;
}

.selo-desktop {
    max-width: 300px;
    position: absolute;
    right: 0;

}

.formularioMensagem {
    position: relative;
}

.logo-card-footer {
    margin-left: 32px;
}

.logo-card-header {
    opacity: 0;
}

.logo-mobile {
    display: none;
}

.logo-desktop {
    display: block;
}


@media only screen and (max-width: 600px) {
    .selo-desktop {
        max-width: 200px;
        position: inherit;
        margin: 0 auto;
        display: block;
    }

    .destinario-heg {
        max-width: 300px;
    }

    .logo-mobile {
        display: block;
    }

    .logo-desktop {
        display: none;
    }


}