@font-face {
    font-family: "Black";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("fonts/Poppins-Black.eot");
    src: url("fonts/Poppins-Black.otf") format("otf"),
        url("fonts/Poppins-Black.ttf") format("truetype"),
        url("fonts/Poppins-Black.woff") format("woff"),
        url("fonts/Poppins-Black.woff2") format("woff2");
}

@font-face {
    font-family: "Medium";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("fonts/Poppins-Medium.eot");
    src: url("fonts/Poppins-Medium.otf") format("otf"),
        url("fonts/Poppins-Medium.ttf") format("truetype"),
        url("fonts/Poppins-Medium.woff") format("woff"),
        url("fonts/Poppins-Medium.woff2") format("woff2");
}

@font-face {
    font-family: "Regular";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("fonts/Poppins-Regular.eot");
    src: url("fonts/Poppins-Regular.otf") format("otf"),
        url("fonts/Poppins-Regular.ttf") format("truetype"),
        url("fonts/Poppins-Regular.woff") format("woff"),
        url("fonts/Poppins-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Thin";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("fonts/Poppins-Thin.eot");
    src: url("fonts/Poppins-Thin.otf") format("otf"),
        url("fonts/Poppins-Thin.ttf") format("truetype"),
        url("fonts/Poppins-Thin.woff") format("woff"),
        url("fonts/Poppins-Thin.woff2") format("woff2");
}


html {
    height: 100%;
    min-height: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    max-width: 100vw;
    overflow: hidden;
}

.bg-mobile {
    background-image: url('images/bg-mobile.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
}

.t-upper {
    text-transform: uppercase;
}

.f-black {
    font-family: "Black";
}

.f-medium {
    font-family: "Medium";
}

.f-regular {
    font-family: "Regular";
}

.f-thin {
    font-family: "Thin";
}

.text-center {
    text-align: center;
}

.bg-branco {
    background-color: #fff;
}

.bg-principal {
    background-color: #00ff9e;
}

.bg-sec {
    background-color: #250045;
}

.color-branco {
    color: #fff;
}

.color-preto {
    color: #000;
}

.color-principal {
    color: #dcab68;
    /* background: -webkit-linear-gradient(rgb(42, 95, 217), rgb(0, 195, 240));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
}

.color-sec {
    color: #272727;
}

.color-top {
    color: #00ff9e;
    font-family: "Black";
}

.border-principal {
    border-color: #dcab68 !important;
}

.br-20 {
    border-radius: 20px;
}

.br-15 {
    border-radius: 15px;
}

.br-10 {
    border-radius: 10px;
}

.ovr-hidden {
    overflow: hidden;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.align-items-stretch {
    align-items: stretch;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-flow: wrap;
}

.w-100 {
    width: 100%;
}

.w-25 {
    width: 25%;
}

.w-75 {
    width: 75%;
}

.w-65 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.gap-50 {
    gap: 50px;
}

.gap-35 {
    gap: 35px;
}

.gap-20 {
    gap: 20px;
}

.gap-15 {
    gap: 15px;
}

.gap-10 {
    gap: 10px;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}

.p-30 {
    padding: 30px;
}

.p-15 {
    padding: 15px;
}

.p-10 {
    padding: 10px;
}

.px-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.m-0 {
    margin: 0 !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-0 {
    margin-top: 0;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mx-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.my-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

a {
    font-style: none !important;
    text-decoration: none !important;
}

b,
strong {
    font-family: 'Black';
}

.d-none {
    display: none;
}

.d-block {
    display: block !important;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.pa-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pa-left-center {
    left: 50%;
    transform: translateX(-50%)
}

.bubble {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 0px 15px 0px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 0px 15px 0px rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 0px 15px 0px rgba(255, 255, 255, 0.5);

    height: 100px;
    width: 100px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.bubble-rodape {
    position: relative;
    bottom: -360px;
    left: -5%;
    height: 470px;
    width: 110%;
    overflow: hidden;
}

.bubble-rodape:after {
    content: "";
    position: absolute;
    left: -20%;
    top: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 0px 15px 0px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 0px 15px 0px rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), inset 0px 0px 15px 0px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
    height: 100%;
    width: 140%;
}

.bubble-rodape img {
    width: 50px;
    height: auto;
    margin-top: 20px;
}

.card {
    height: 45px;
    left: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.card-image img {
    width: 55px;
    position: relative;
    top: -5px;
    left: -20px;
}

.card-image-site img {
    /* width: 83px !important; */
    top: -6px !important;
    /* left: -25px !important; */
}

.tite-header h1 {
    font-size: 1.4em;
    line-height: 1;
    margin-top: 7px !important;
}

.tite-header p {
    font-size: 1.1em;
    line-height: 1;
}

.card-title h2 {
    font-size: 1em;
    padding-left: 0 !important;
}

.footer {
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.card-list {
    max-width: 500px;
    margin-top: -30px;
}

@media (min-width: 992px) {

    .w-lg-75 {
        width: 75% !important;
    }

    .w-65 {
        width: 78%;
    }

    .w-50 {
        width: 50%;
    }

    .card-image img {
        width: 80px;
        top: -4px;
        left: -20px;
    }

    /* .card-image-site img {
        width: 125px !important;
        top: -10px !important;
        left: -25px !important;
    } */

    .card-title h2 {
        font-size: 1.4em;
    }

    .card {
        height: 70px;
        left: 10px;
    }

    .bg-desk {
        background-image: url('images/bg-desk-junto.webp');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        align-items: center;
    }

    .card:hover {
        transform: scale(1.1);
        box-shadow: 0 0 20px #00ff99;
    }

    .w-50 {
        width: 50%;
    }

    .d-lg-none {
        display: none;
    }

    .d-lg-block {
        display: block;
    }

    .d-lg-flex {
        display: flex;
    }
}