@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dela+Gothic+One&display=swap');


html, body {
    width: 100%;
    height: 100%;
    background-color: #384252;
}
 
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div.logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  
}

div.logo img {
    width: 100%;
}

div.fundo-infinito {
    width: 90%;
    background-color: #ffffdd;
    margin-top: -7vh;
    /* FAZER MEDIA QUERIE E IR SUBINDO ESSE MARGIN TOP */
    z-index: 1;
    display: flex;
    flex-direction: column;

    display: flex;
    align-items: center;
    font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
    text-align: center;
    color: #384252;
    font-size: 30px;
    font-weight: bolder;
    text-transform: uppercase;
    line-height: 60px;
}

div.fundo-infinito > h1 {
    padding: 60px 10px 10px 10px;
}

div[class*="sections"] {
    width: 100%;
}

div.esq {
    width: 85%;
    height: 40vh;
    background-color: #384252;
    border-radius: 0 50px 50px 0;
    margin: 10px 0;

    display: flex;
    justify-content: end;
    align-items: center;
}

.img-esq {
    margin-right: -40px;
}

.img-dir {
    margin-left: -40px;
}

div.dir {
    width: 85%;
    height: 40vh;
    background-color: #384252;
    border-radius: 50px 0 0 50px;
    margin: 10px 0;

    display: flex;
    justify-content: baseline;
    align-items: center;
}

.sections-esq {
    display: flex;
    justify-content: baseline;
}

.sections-dir {
    display: flex;
    justify-content: end;
}

div.bloco {
    width: 85%;
    background-color: #384252;
    border-radius: 40px;
    padding: 30px 0;
    margin: 10px 0;
}

div.bloco > h1 {
    color: #ffffdd;
    font-size: 40px;
    padding: 10px 5px 0 5px;
}

div.bloco > button {
    padding: 10px;
    border: 0;
    background-color: #c0efd2;
    animation: pulsar 1.5s linear infinite;
    position: relative;
    top: 0;
}

div.bloco > button > a {
    text-decoration: none;
    color: #384252;
    font-weight: bold;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-size: 23px;
}

@keyframes pulsar {
    0% {
        top: 0;
    }
    25% {
        top: -5px;
    }
    50% {
        top: 0;
    }
    75% {
        top: 5px;
    }
    100% {
        top: 0;
    }
}




/* //////////////////////////////// */
/* MEDIA QUERIES */

@media screen and (min-width: 520px){
    header {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    div.fundo-infinito {
        margin-top: -10vh;
    }
}

@media screen and (min-width: 720px){
    header {
        width: 100%;
        display: flex;
        justify-content: center;

        padding: 0 7%;
    }
    div.fundo-infinito {
        margin-top: -15vh;
    }
    div.fundo-infinito > h1 {
        padding: 80px 10px 10px 10px;
    }
    :root, body {
        background-color: #d8d8ca;
    }
}

@media screen and (min-width: 1000px){
    header {
        width: 100%;
        display: flex;
        justify-content: center;

        padding: 0 15%;
    }
    div.fundo-infinito {
        margin-top: -15vh;
    }
    div.fundo-infinito > h1 {
        padding: 125px 10px 10px 10px;
    }
}

@media screen and (min-width: 1150px){
    header {
        width: 100%;
        display: flex;
        justify-content: center;

        padding: 0 20%;
    }
    div.fundo-infinito {
        margin-top: -15vh;
    }
    div.fundo-infinito > h1 {
        padding: 125px 10px 10px 10px;
    }
}