@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Griffy&display=swap');
body {
    margin: 0 auto;
    background: url(../images/fundo_hall.jpg?v=211);
    background-position-y: -31px;
    background-size: 1784px;
    backdrop-filter: blur(3px);
}
a {
    color: #be2fb6;
    text-decoration: none;
}
.abob{
    height: 153px;
}
.caixa-img {
    height: 530px;
    animation: Cresce 2s infinite;
}
.geral{
    display: flex;
    height: 100vh;
}
.caixa {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.balao {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    justify-content: center;
    background: #ffffff;
}
.balao-img{
    height: 119px;
    transition: 0.40s;
    animation: Balao 2s infinite;
}
img.balao-img:hover {
    height: 150px;
}
.balao-text {
    color: #1d67d8;
    font-size: 40px;
    font-family: 'Lobster', sans-serif;
    margin-bottom: 3%;
    text-align: center;
}
.erro {
    text-align: center;
    font-family: arial;
    font-size: 26px;
    color: #023E98;
}
.balao-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3%;
    justify-content: center;
    width: 100%;
    gap: 12px;
}
.balao-element {
    width: 20%;
}
.logo {
    height: 216px;
}
.premio-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color:#ff5975;
}
.premio-desc {
    text-align: center;
    font-size: 32px;
    margin-top: 17px;
    background: #f57211;
    padding: 14px;
    border-radius: 9px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: white;
}
.premio {
    color: white;
}
.premio-sub{
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin-top: 14px;
    color:#ff5975;
}
img.zapzap {
    height: 83px;
}
.zap {
    text-align: center;
    margin-top: 22px;
}
@media only screen and (max-width: 600px) {
    .abob{
        display:none;
    }
    .geral {
        display: block;
        height: auto;
    }
    .caixa-img {
        height: 231px;
        margin-top: 30px;
    }
    .balao-text {
        font-size: 22px;
    }
    .logo {
        height: 122px;
    }
    .balao {
        width: auto!important;
        display: block;
        padding: 10px;
        background: #ffffff;
        text-align: center;
        height: 125vh;
    }
    .caixa {
        width: 100%;
        display: block;
        text-align: center;
    }
    .erro{
        font-size: 32px;
    }
}

@keyframes Cresce{
    0%{
       scale: 100%;
    }
    50%{
        scale: 115%;
    }
    100%{
        scale: 100%;
    }
}
@keyframes Balao{
    0%{
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(24deg);
    }
}