*{
    padding: 0px;
    margin: 0px;
}

body{
    background-color: #252525;
    box-sizing: border-box;
    font-family: Lato,sans-serif;
}

.main-container{
    display: flex;
    justify-content: center;
    align-items: center; 
}

@keyframes dropBadge{
    0%{
        transform: translateY(-20rem) rotateZ(-6deg) rotateY(-3deg);
    }
    25%{
        transform: translateY(11rem) rotateZ(-5deg) rotateY(-5deg);
    }
    60%{
        transform: translateY(0rem) rotateZ(3deg) rotateY(3deg);
    }
    88%{
        transform: translateY(7rem) rotateZ(0deg) rotateY(0deg);
    }
    100%{
        transform: translateY(7rem) rotateZ(0deg) rotateY(0deg);
    }
}

.badge{
    animation: dropBadge 1s ease-in-out;
    position: relative;
    transform: translateY(7rem);
}

.tape{
    position: absolute;
    z-index: 3;
    left: calc(50% - 116px/2);
    top: -255px;
    transition: all .7s ease;
}

.card{
    width: 300px;
    height: 500px;
    position: relative;
    perspective: 150rem;
}

.card__side{
    width: 100%;
    height: 500px;
    background: #131313;
    background: -moz-linear-gradient(-45deg, #131313 0%, #202020 50%, #393939 100%);
    background: -webkit-linear-gradient(-45deg, #131313 0%, #202020 50%, #393939 100%);
    background: linear-gradient(135deg, #131313 0%, #202020 50%, #393939 100%);
    border-radius: 18px;
    border: 1px solid #393939;
    position: absolute;
    color: #FFF;
    backface-visibility: hidden;
    transition: all .7s ease;
}

.card__side--front{
    z-index: 2;
}

.card__side--back{
    z-index: 1;
    transform: rotateY(180deg);
}


.badge:hover .card__side--front{
    transform: rotateY(-180deg);
}

.badge:hover .card__side--back{
    transform: rotateY(0deg);
}

.card:hover .card__side--front{
    transform: rotateY(-180deg);
}

.card:hover .card__side--back{
    transform: rotateY(0deg);
}

.badge:hover .tape{
    transform: rotateY(180deg);
}

.shadow-tape{
    width: 40%;
    height: 20px;
    border: 1px solid #393939;
    border-radius: 20px;
    margin: 20px auto;
    background-color: #252525;
    -webkit-box-shadow: inset 0px 6px 8px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 6px 8px -1px rgba(0,0,0,0.75);
    box-shadow: inset 0px 6px 8px -1px rgba(0,0,0,0.75);

}

.person{
    width: 135px;
    height: 135px;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
}

.person__img{
    width: 100%;
     
}

.salvabras{
    width: 100px;
    height: 30px;
    margin: 40px;
    margin-top: 150px;
    position: absolute;
}

.viquatorneiras{
    width: 115px;
    height: 45px;
    right: 38px;
    margin-top: 140px;
    position: absolute;
}

.castorpincel{
    width: 102px;
    height: 32px;
    right: 40px;
    bottom: 39px;
    position: absolute;
}

.papaizcadeado{
    width: 100px;
    height: 28px;
    left: 40px;
    bottom: 40px;
    position: absolute;
}


.texto p{
    font-size: 15px;
    margin: 0px;
    padding: 40px;
    position: absolute;
    text-align: center;
    color: #f7b03f
}

.qrcodee {
    width: 135px;
    height: 135px;
    display: block;
    margin: 40px auto;
    position: relative;
    margin-top: 0px;
    text-decoration: none;
}

.qrcode p{
    text-align: center;
    margin-top: -37px;
    font-size: 12px;
    color: #f7b03f;
    text-decoration: none;
}

.social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
}

.social__bt{
    min-width: 100px;
    background-color: #000000;
    color:#f7b03f;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
}

.logoo{
    width: 147px;
    height: 75px;
    display: block;
    margin: 40px auto;
    position: relative;
    margin-top: 30px;
    text-decoration: none;
}

footer {
    color:#FFFFFF;
    position: fixed; /* Fixa o rodapé na parte inferior */
    bottom: 0; /* Alinha o rodapé na parte inferior */
    width: 100%; /* Faz o rodapé ocupar toda a largura da tela */
    text-align: center; /* Centraliza o texto */
    padding: 10px 0; /* Espaçamento interno */
    font-size: 16px; /* Tamanho do texto */
}