@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Passion+One&family=Poppins:wght@100;300;500&family=Sriracha&family=Work+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins';
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p {
    text-indent: 1.8em;
    line-height: 25px;
}

p > a {
    color: #212121;
    text-decoration: underline;
    cursor: pointer;
}

.fundo-video {
    position: absolute;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.fundo-video .video {
    height: 100vh;
}

.fundo-video::after {
    content: "";
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(0,0,0,2) 0%, rgba(0,0,0,0.12) 50%, rgba(0,0,0,2) 100%);
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: 0 auto;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
}

.logo {
    width: 85px;
}

.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    margin: 0 auto;
}

.nav-link {
    font-weight: bold;
    margin: 0 auto;
    color: #666840;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 20px;
    transition: 0.2s;
}

.nav-link:hover {
    background-color: black;
}

.mobile-menu-icon {
    display: none;
}

.mobile-menu {
    display: none;
}

.layout {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: calc(100vh - 131px);
    padding: 0 30px 30px;
}

.info .imagem-titulo {
    max-width: 400px;
}

.layout .banda {
    max-width: 450px;
}

.info .descricao {
    color: #a8adb7;
    width: 80%;
    padding: 10px;
    font-size: 16px;
    margin: 30px 0;
    text-align: justify;
}

.info .botao {
    background-color: #666840;
    color: #192523;
    padding: 15px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: 0.5s all ease-in-out;
}

.info .botao a {
    text-decoration: none;
    color: #a8adb7;
}

.layout .botao:hover {
    transform: scale(1.1);
}

@media (max-width: 1050px) {
    .fundo-video {
        display: none;
    }

    header {
        background-color: #192523;
        height: auto;
    }

    .mobile-menu {
        position: absolute;
        top: 8%;
        right: 0;
        width: 50%;
        height: 100vh;
        background-color: #192523;
    }

    .nav-item {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
        z-index: 1;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu .nav-item {
        display: block;
        padding: 20%;
    }

    .open {
        display: block;
    }

    .layout {
        background-color: #192523;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        gap: 30px;
    }

    .layout .imagem-titulo {
        max-width: 300px;
    }

    .layout .info {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    section {
        width: 100vw;
    }

    .logo-2 {
        display: none;
    }
}

main {
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
    padding: 0 30px 30px;
    text-align: justify;
}

h2.titulo {
    padding-top: 10px;
}

h2 {
    font-size: 25px;
    padding-bottom: 25px;
    padding-top: 45px;
}

section.texto {
    background-color: #ffffff;
    color: #212121;
    width: 100%;
    padding: 8px;
    font-size: 16px;
    padding-top: 10vh;
    padding-bottom: 10vh;
    line-height: 1.5em;
}

section.lateral {
    display: flex;
}

.logo-2 {
    margin: auto;
    padding-left: 70px;
    padding-right: 60px;
}

section ul {
    flex-direction: column;
}

section.imagem {
    min-height: 100vh;
    width: 100%;
    background-color: rgb(51, 51, 51);
    box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.473);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

section#img01 {
    background-image: url(../imagens/banda01.jpg);
}

section#img02 {
    background-image: url(../imagens/banda02.jpg);
}

section#img03 {
    background-image: url(../imagens/banda03.jpg);
}

div.botao {
    text-align: center;
    padding-top: 50vh;
}

.imagem .saiba-mais {
    background-color: #666840;
    color: #192523;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: 0.5s all ease-in-out;
    text-decoration: none;
}

.imagem a .saiba-mais:hover {
    transform: scale(1.1);
}

footer {
    background-color: #212121;
    padding: 15px;
    text-align: center;
    color: #a8adb7;
}

footer > a {
    color: #a8adb7;
    cursor: pointer;
}

footer > a:hover {
    text-decoration: underline;
}