@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

:root{
    font-size: 18px;
    --preto: #000;
    --vermelho: #CB2229;
    --branco: #fff;
    --cinza: #DCDCDC;
    font-family: 'Poppins', sans-serif;
}

body{
    line-height: 1.25;
    overflow-x: hidden;
    background-image: url('img/bg.png');
}

b{
    font-weight: bold;
}

.container{
    width: 90%;
    margin: 0 auto;
}

header .container{
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
}

header a{
    color: var(--branco);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .3rem;
}

header nav{
    display: flex;
    align-items: center;
    background-color: var(--preto);
    border-bottom: 7px solid var(--vermelho);
}

header .links{
    display: flex;
    flex-flow: column;
    gap: 1rem;
    align-items: center;
}

header .zap::before{
    content: url('img/zap.png');
}

header .insta::before{
    content: url('img/insta.png');
}

header .face::before{
    content: url('img/face.png');
}

header #banner{
    background-image: url('img/banner.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
}

header #banner h1{
    font-size: 68px;
    color: var(--vermelho);
    font-weight: bold;
    text-transform: uppercase;
    width: 90%;
    margin: 0 auto;
}

header #banner p{
    position: relative;
    left: 5%;
    color: var(--vermelho);
    width: 90%;
}

.separador{
    height: 3vh;
    background-color: var(--preto);
    border-top: 7px solid var(--vermelho);
}

#orlando{
    background-color: var(--cinza);
    padding: 2rem 0;
}

#orlando .container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

#orlando .container div{
    display: flex;
    flex-flow: column;
    align-items: center;
}

#orlando img{
    width: 100%;
    height: auto;
}

#orlando h2{
    font-size: 30px;
    margin-bottom: 1rem;
}

#orlando p{
    margin-bottom: .5em;
    font-weight: lighter;
}

#orlando p:last-of-type{
    margin: 0;
}

#orlando h2 span{
    color: var(--vermelho);
    font-weight: bold;
}

#cartoes .container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

#cartoes .card{
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

#cartoes .card img{
    width: 100%;
    height: auto;
}

#cartoes .card h3{
    position: relative;
    bottom: 12%;
    font-weight: bold;
    color: var(--vermelho);
    text-transform: uppercase;
}

#missao{
    background-color: var(--cinza);
    margin: 4rem 0;
}

#missao .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row;
    position: relative;
}

#missao img{
    display: none;
}

#missao .container > div{
    width: 100%;
}

#missao h2,
#pagamento h2{
    font-size: 30px;
    color: var(--vermelho);
    font-weight: bold;
    margin-bottom: .7rem 
}

#missao h2:last-of-type{
    margin-top: 1.2rem;
}

#pagamento{
    background-color: var(--cinza);
    position: relative;
}

#pagamento h2{
    position: relative;
    bottom: 1rem;
}

#baloes{
    display: none;
}

footer{
    background-color: var(--cinza);
    padding: 2rem 0;
}

footer h2{
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

footer form{
    display: flex;    
    flex-flow: column-reverse;
    gap: 1rem;
}

footer form > div{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

footer form > div label,
footer form > div input,
footer form > div textarea,
footer form > div div{
    width: 100%;
}

input[type="radio"]{
    width: unset;
}

footer form > div input,
footer form > div textarea{
    border: none;
    resize: none;
    font-family: 'Poppins', sans-serif;
}

.horizontal{
    display: flex;
    gap: 1rem;
}

.horizontal label{
    display: flex;
    gap: 1rem;
}

button{
    background-color: var(--vermelho);
    color: var(--branco);
    border-radius: 9px;
    border: none;
    padding: .5rem 1rem;
    align-self: flex-end;
}


@media screen and (min-width: 993px){
    .container{
        width: 80%;
    }

    header{
        height: 100vh;
    }
    
    header #banner{
        height: calc(100vh - 13vh - 7px);
    }

    header nav{
        height: 13vh;
    }

    header .container{
        flex-flow: row;
    }

    header .links{
        flex-flow: row;
    }

    header #banner h1{
        width: 40%;
        top: 35%;
        left: 10%;
        position: absolute;
        margin: none;
    }

    header #banner p{
        position: absolute;
        left: 10%;
        top: 65%;
        color: var(--vermelho);
        width: 30%;
    }
    
    #orlando .container{
        grid-template-columns: repeat(2, 1fr);
    }

    #cartoes{
        padding: 4rem 0;
    }

    #cartoes .container{
        grid-template-columns: repeat(5, 1fr);
    }

    footer form{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }

    #missao img{
        position: absolute;
        width: 55%;
        right: -14%;
        bottom: -11%;
        display: block;
    }

    .linha{
        border-top: 7px solid #7E7E7E;
        position: absolute;
        width: 63%;
        right: 0px;
    }

    #missao .container{
        height: 50vh;
    }

    #missao .container > div{
        width: 48%;
    }

    #baloes{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1rem;
        padding-bottom: 2rem;
    }
    
}