html {
    scroll-behavior: smooth;
}

.mobile {
    display: none;
}

section {
    overflow: hidden;
    overscroll-behavior: auto;
}

:root {
    --amarelo: #ffe600;
    --degrade: linear-gradient(90deg, #171392, #FE4D46, #EDBA06);
}

.meio {
    margin: auto;
}

.wppvoa {
    display: flex;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    z-index: 999;
    bottom: 20px;
    left: 20px;
    animation: 1.5s ease 0s infinite normal none running pisca;
}

.wppvoa:hover {
    text-decoration: none;
    color: #fff;
}

.wppvoa:hover i {
    transform: rotate(360deg);
}

.wppvoa i {
    font-size: 25px;
    margin: 0 5px;
    transition: .5s;
}

@keyframes pisca {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    70% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 25px #ffff0000;
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 #ffff0000;
    }
}

* {
    font-family: 'Inter';
    color: #222;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Inter';
}

p {
    line-height: 18px;
}

.infobanner {
    padding: 4rem 0;
    background-color: #000;
    background-image: url('../img/banner-novo.webp');
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: bottom;
    min-height: 90vh;
    display: flex;
    align-items: center;
    border-radius: 0 0 40px 40px;
}

.infobanner h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.infobanner h1 b{
    font-weight: 700;
    display: block;
    color: var(--amarelo);
}

.infobanner p {
    color: #fff;
}

.infobanner span {
    display: block;
    padding: 8px 20px;
    border: 1px solid white;
    border-radius: 59px;
    width: fit-content;
    margin: 10px 0 10px;
    color: #fff;
}

.infobanner span b {
    color: var(--amarelo);
}

.botpadrao {
    display: block;
    width: fit-content;
    padding: 15px 30px;
    border-radius: 10px;
    color: #fff;
    background-color: #090080;
    text-decoration: none;
    position: relative;
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    transition: .2s;
}

.botpadrao:hover {
    text-decoration: none;
    color: #fff;
    transform: scale(1.05);
    animation: none;
}

@media screen and (max-width: 767px) {
    .mobile {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .logo img {
        max-width: 210px !important;
        max-height: 60px !important;
    }

    .infobanner h1 {
        font-size: 26px !important;
    }

    .infobanner {
        padding: 24rem 1rem 2rem !important;
        background-image: url("../img/banner-mob.webp") !important;
        background-size: cover !important;
        border-radius: 0 0 20px 20px !important;
    }

    .infobanner.obrigado {
        padding: 18rem 1rem 4rem !important;
        background-image: url("../img/infobanner-obrigado-mob.webp") !important;
    }

    .infobanner.obrigado a.grupoWpp img {
        width: 38px !important;
    }

    .infobanner p {
        font-size: 14px !important;
    }

    .infobanner img {
        max-height: 120px !important;
        max-width: 265px !important;
        padding: 0 0 0 15px;
    }
}