@font-face {
    font-family: futuraM;
    src: url(../fonts/Futura-Medium.ttf);
    font-display: swap;
}

@font-face {
    font-family: futuraB;
    src: url(../fonts/Futura-Bold.ttf);
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    font-family: futuraM, Arial, Helvetica, sans-serif;
    color: #202020;
}

::-webkit-scrollbar{
    width: none;
}

:root{
    --vermelho: #e33439;
    --amarelo: #fec32b;
}

html{
    width: 100vw;
    background: #fff;
    overflow-y: scroll;
}

body{
    display: flex;
    width: 100%;
    min-height: 100vh;
}

main{
    display: flex;
    width: 100vw;
    max-width: 1920px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

section{
    display: flex;
    position: relative;
}

h1, strong{
    font-family: futuraB, Arial, Helvetica, sans-serif;
    font-weight: 400;
}

h1{
    font-size: 2rem;
}

strong{
    color: var(--vermelho);
}

p, li{
    font-size: 1.2rem;
}

#home h1{
    text-transform: uppercase;
}

video{
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 2rem;
}

#bemVindo .card div{
    gap: 1rem;
}

#estrutura .right ul li::first-line{
    font-weight: bold;
    text-transform: uppercase;
}

#investimento p::first-letter{
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--vermelho);
}

@keyframes zoom {
    to{
        transform: scale(1.04) skewX(-10deg);
    }
}

.btn{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3rem;
    text-decoration: none;
    padding: .8em 2em;
    background: var(--amarelo);
    border-radius: 10px;
    animation: ease-in-out zoom 1.5s infinite alternate;
    transition: ease-in-out .5s;
    border: #fec32b solid 1px;
}

.btn:hover{
    background: #fff;
}

.oculta{
    display: none;
}

footer{
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    align-items: center;
    justify-content: center;
}

footer > a{
    text-decoration: none;
}

footer :is(a, span){
    margin-bottom: 1em;
    font-size: .8rem;
}

.bricks-form__fieldset{
    margin: 0 !important;
}