:root{
    --red: #eb1924;
    --blue: #949fbf;
    --white: #ffffff;
    --black: #000000;
}

@font-face {
    font-family: 'HelveticaBlack';
    src: url(./Helvetica\ LT\ Std\ Black\ Condensed.otf);
}

@font-face {
    font-family: 'HelveticaLight';
    src: url(./Helvetica\ LT\ Std\ Light\ Condensed.otf);
}

@font-face {
    font-family: 'Ananda';
    src: url(./Ananda.ttf);
}

html{
    overflow: hidden;
}

header, footer{
    height: 0;
    opacity: 0;
    width: 0;
    visibility: hidden;
}

body{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    background-image: url(./background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    display: flex;
}

main{
    padding: 3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1{
    font-family: 'HelveticaBlack';
    font-size: 150px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: .8;
    letter-spacing: normal;
    font-weight: normal;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .25);
}

h2{
    font-family: 'HelveticaLight';
    font-size: 24px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: .9;
    letter-spacing: normal;
    background-color: var(--red);
    padding: .25rem .5rem;
    width: fit-content;
    font-weight: normal;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, .25)
}

h3{
    font-family: 'HelveticaBlack';
    font-size: 75px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: .8;
    letter-spacing: normal;
    font-weight: normal;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, .5);
}

a{
    text-decoration: none;
}

.page-bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.page-bottom__inner{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.local{
    font-family: 'HelveticaBlack';
    font-size: 100px;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 1rem 0;
    line-height: .8;
    letter-spacing: normal;
    font-weight: normal;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, .5);
}

.mensagem{
    font-family: 'HelveticaBlack';
    font-size: 50px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: .8;
    letter-spacing: normal;
    font-weight: normal;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, .5);
}

.mensagem--red{
    color: var(--red);
    font-family: 'Ananda';
    margin: -1rem 0 0 0;
    text-transform: none;
}

.logo-chega{
    width: 250px;
    height: auto;
}

.btns{
    font-family: 'HelveticaLight';
    font-size: 16px;
    text-transform: uppercase;
    color: var(--black);
    display: block;
    line-height: 1;
    letter-spacing: .5px;
    font-weight: normal;
    box-shadow: 4px 4px 3px rgba(0, 0, 0, .25);
    padding: 1rem;
    background-color: var(--white);
    border: 0;
    width: 100%;
    border-radius: 21px;
    text-align: center;
    transition: all .3s ease-in-out;
}

.btns:hover{
    color: var(--white);
    background-color: var(--blue);
}

.btns:not(:last-child){
    margin-bottom: .5rem;
}

.px-3{
    padding: 0 3rem;
}

/* .socials{
    margin-bottom: .5rem;
} */

.socials a svg{
    width: 35px;
    height: 35px;
}

.socials a svg path{
    fill: var(--blue);
    transition: all .3s ease-in-out;
}

.socials a:hover svg path{
    fill: var(--red)
}

@media only screen and (max-width: 992px){
    h1{
        font-size: 125px;
    }

    .logo-chega{
        width: 175px;
    }

    .px-3{
        padding: 0 1rem;
    }

    .mensagem{
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px){
    main{
        padding: 1rem;
    }

    h1{
        font-size: 60px;
        margin-bottom: .5rem;
    }

    h2{
        font-size: 16px;
        margin-bottom: .5rem;
    }

    h3{
        font-size: 40px;
        margin-bottom: .5rem;
    }

    .local{
        font-size: 55px;
    }

    .mensagem{
        font-size: 40px;
    }

    .socials a svg {
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width: 767px) and (orientation: portrait){
    .logo-chega{
        display: block;
        margin-left: auto;
    }

    .px-3{
        padding: 1rem 0 0 0;
    }

    .page-bottom, .page-bottom__inner{
        display: block;
    }
}