@font-face {
    font-family: 'VzStore';
    src: url(fontes/FORT-FOUNDRY-RIFT-BOLD.ttf) format('truetype');
}

* {
    margin: 0;
    font-family: 'VzStore', sans-serif;
}

body {
    background-color: black;
    color: white;
    position: relative;
    min-height: 100vh;
    padding-bottom: 400px;
    /* altura da .botback */
}

.topback {
    background-image: url(IMGS/Cima.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

.topback::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* altura do degradê */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
    pointer-events: none;
}

@media (min-width: 750px) {
    .topback {
        background-image: url(IMGS/Cima6.png);
    }
}

@media (min-width: 1200px) {
    .topback {
        background-image: url(IMGS/Cima5.png);
    }
}

.botback {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url(IMGS/Baixo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: 2;
    pointer-events: none;
}

.botback::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    /* ajuste conforme necessário */
    width: 100%;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    z-index: 3;
}



.content {
    z-index: 3;
    position: absolute;
    width: 100%;
    height: fit-content;
    left: 0px;
    top: 0px;
    padding: 20px;
    box-sizing: border-box;
}

@media (min-width: 500px) {
    .botback {
        background-image: url(IMGS/Baixo\ 6.png);
        background-size: 100%;
        position: absolute;
        background-position: bottom;
        bottom: 0px;
    }
}

.topfras {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.topfras>img {
    width: 80%;
}

.txtvz {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-wrap: wrap;
    flex-direction: column;
}

.arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 230px;
    font-size: 20px;
}

.li {
    width: fit-content;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
}

.cgg {
    border: 1px solid #ffffff99;
}

.cgg:hover {
    transform: scale(0.9);
}

.cf {
    border: 1px solid #ffffff99;
}

.cf:hover {
    transform: scale(0.9);
}

.sup {
    border: 1px solid #ffffff99;
}

.sup:hover {
    transform: scale(0.9);
}

.tsb {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* atrás do conteúdo */
    pointer-events: none;
    /* permite clicar nos elementos acima */
}

.back-c {
    width: 100% !important;
    height: 50vh;
}