

body{
    background-color: #060606;
    height: 100vh;
    overflow: hidden;
}

header {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000019;
}

#logo {
    margin: 20px 0;
    height: 70px;
}

#conteudosSite {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

#divisoria{
    background-color: white;
    width: 0.1vw;
    height: calc(100vh - 110px);
}

.conteudo{
    width: 49.95vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h2 {
    font-display: swap;
    color: white;
    font-family: 'Bebas Neue';
    font-size: 25px;
    text-align: center;
}

h1 {
    font-display: swap;
    color: white;
    font-family: 'Bebas Neue';
    font-size: 75px;
    margin: 20px 0;
    text-align: center;

}

p {
    font-display: swap;
    color: white;
    width: 50%;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}

button {
    padding: 15px 60px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease-in-out;
    border: 3px solid #1e6bac;
    border-radius: 50px;
    font-size: 16px;
    font-display: swap;
    font-family: 'Roboto', 'sans-serif';
    font-weight: 700;
    text-transform: uppercase;
}

button:hover {
    transform: scale(0.95);
    background-color: rgba(0, 0, 0, 0.25);
}

button:active {
    transform: scale(1.05);
}

#midiaDigital {
    background: linear-gradient(rgba(15, 7, 71, 0.85), rgba(0,0,0,0.75)), url("../img/Market_Signage.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 110px);
    background-position: center;
    background-blend-mode: normal;
    transition: all .2s ease-in-out;
}

#eventos {
    background: linear-gradient(rgba(32, 14, 154, 0.75), rgba(0,0,0,0.75)), url("../img/Event_Signage.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 110px);
    background-blend-mode: multiply;
    transition: all .2s ease-in-out;
}

#eventos:hover {
    background: linear-gradient(rgba(32, 14, 154, 0.3), rgba(0,0,0,0.75)), url("../img/Event_Signage.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#midiaDigital:hover {
    background: linear-gradient(rgba(15, 7, 71, 0.6), rgba(0,0,0,0.75)), url("../img/Market_Signage.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}





@media screen and (max-width: 901px) {
    h2 {
        width: 75%;
    }
    body{
        overflow-x: hidden;
        overflow-y: auto;
    }
}



@media screen and (max-width: 501px) {
    #conteudosSite {
        flex-direction: column;
    }

    #divisoria{
        background-color: white;
        width: 100vw;
        height: 0.2vh;
    }

    #eventos {
        height: calc(49.9vh - 70px);
    }

    #midiaDigital {
        height: calc(49.9vh - 70px);
    }

    .conteudo{
        width: 100vw;
    }

    h1 {
        font-size: 55px;
        margin: 15px 0;
    }

    h2 {
        font-size: 23px;
    }

    button {
        padding: 12px 40px;
        border-radius: 50px;
        background-color: rgba(0, 0, 0, 0.1);
        color: #fff;
        cursor: pointer;
        text-decoration: none;
        transition: all .2s ease-in-out;
        border: 3px solid #1e6bac;
        border-radius: 50px;
        font-size: 16px;
        font-family: 'Roboto', 'sans-serif';
        font-weight: 700;
        text-transform: uppercase;
    }

    p {
        width: 80%;
    }
}




@media screen and (max-width: 401px) {
    body {
        height: 110vh;
    }

    #eventos {
        height: calc(60.9vh - 70px);
    }

    #midiaDigital {
        height: calc(60.9vh - 70px);
    }
}

@media screen and (max-width: 341px) {

    #eventos {
        height: calc(80vh);
    }

    #midiaDigital {
        height: calc(80vh);
    }
}