/* COMMOM */

* {
    margin: 0;
    padding: 0;
    scrollbar-width: none;

    /* overflow: hidden;
    overflow-y: scroll;
     -ms-overflow-style: none;   */
}

* ::-webkit-scrollbar {
    width: 0;
    height: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:active {
    color: aliceblue;
}

body {
    background-color: black;
    font-family: 'Nunito', sans-serif;
    font-weight: normal;
    color: #7dbdbc;
    font-size: 14pt;
}

img {
    width: 100%;
    height: auto;
}

.title {
    color: #c92626;
    font-size: 18pt;
}

/* LINES */
.line {
    position: fixed;
    background-color: #7dbdbc;
    height: 85%;
    width: 1px;
    z-index: 80;
    animation: lineEntry 4s ease-out;
}

.left {
    left: 3%;
}

.right {
    right: 3%;
    bottom: 0;
}

@keyframes lineEntry {
    0% {
        height: 0%;
    }

    100% {
        height: 85%;
    }
}

.little-square {
    position: fixed;
    background-color: #7dbdbc;
    width: 5px;
    height: 5px;
    z-index: 80;
    transform: rotate(45deg);
    animation: squaresEntry 5s;
}

.s-left {
    bottom: 85px;
    left: 2.9%;
}

.s-right {
    top: 100px;
    right: 2.9%;
}

@keyframes squaresEntry {
    0% {
        width: 0px;
        height: 0px;
    }

    75% {
        width: 0px;
        height: 0px;
        transform: rotate(-90deg);
    }

    100% {
        width: 5px;
        height: 5px;
        transform: rotate(45deg);
    }
}


/* HEADER */

.header {
    position: fixed;
    width: 100%;
    height: 85px;
    z-index: 90;
    text-align: center;
    transition: 0.5s;
}

.scrolled {
    background-color: #000;
    transition: 0.5s;
}

.button-holder {
    /* background-color: rgba(107, 78, 41, 0.5); */
    height: 100%;
    width: 95%;
    max-width: 1488px;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
}

.button-holder-sides {
    position: relative;
    height: 100%;
    width: 20%;
    display: flex;
    justify-content: space-between;

    /* background-color: rgba(107, 78, 41, 0.5); */
}

.header-button {
    position: relative;
    top: 40%;
    height: 24px;
    width: 33%;
    text-align: center;
    font-size: 18;
    cursor: pointer;

    /* background-color: rgba(255, 228, 196, 0.281); */
}

.header-logo {
    width: 102px;
    height: 47px;
    top: 25%;
    opacity: 0;
    transition: opacity 0s;
}


/* MOBILE HEADER */

.m-header {
    position: fixed;
    width: 100%;
    height: 64px;
    z-index: 90;
    text-align: center;
    display: none;
}

.m-menu {
    display: none;
}

.m-menu-button {
    display: none;
}

.m-header-logo {
    position: relative;
    width: 80px;
    left: 9%;
    top: 13px;
    opacity: 0;
    transition: opacity 0s;
}


/* HOME */

.home {
    position: fixed;
    background-color: rgb(40, 29, 51);
    background-image: url(../img/home-bg.jpg);
    background-position: center -112px;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 1;
    animation: logoEntry 1.4s;
}

.home-logo {
    position: relative;
    margin: 0 auto;
    width: 308px;
    height: auto;
    top: 42px;
    /* background-color: bisque; */
    transition: opacity 0.5s;
    opacity: 1;
    animation: logoEntry ease-in-out 1.5s;
}

@keyframes logoEntry {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.home-space {
    height: auto;
    min-height: 100vh;
    margin-bottom: -85px;
}


/* PAGINA */

.page {
    position: relative;
    height: auto;
    width: 100%;
    text-align: center;
}

.content {
    /* background-color: #bd01a42c; */
    width: 95%;
    height: auto;
    max-width: 1488px;
    margin: 0 auto;
    padding-top: 85px;
}

.divisor {
    position: relative;
    background-image: url(../img/divisor.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 422px;
    height: 66px;
    z-index: 10;
    margin: -33px auto;
}


/* BANDA */

.band {
    background-color: #041424;
    display: flex;
    background-image: url(../img/squares-ornam.png);
    background-repeat: no-repeat;
    background-position: right 17% top 36px;
    /* margin-bottom: -64px; */
}

.band-slideshow {
    width: 64%;
    max-width: 956px;
    height: auto;
    display: inline-block;
    align-self: flex-end;
    overflow: hidden;
    position: relative;

    /* background-color: #e20039e0; */
}

.band-text {
    /* background-color: rgba(116, 18, 18, 0.212); */
    width: 33%;
    max-width: 496px;
    height: auto;
    padding-left: 18px;
    padding-bottom: 18px;
    text-align: left;
    display: inline-block;
    align-self: flex-end;
    position: relative;
}


/* INTEGRANTES */

.members {
    background-image: url(../img/grad-bg.jpg);
    background-size: cover;
    background-position: top center;
    height: auto;
    min-height: 200px;
    padding-bottom: 36px;
}

.integrante-slider {
    display: none;
}

.int-desktop {
    width: 20%;
    display: inline-block;
    margin: 36px 16px;
}

.int-img {
    overflow: hidden;
}

.int-img img {
    transition: transform 0.3s;
}

.int-img img:hover {
    transform: scale(1.1) translateY(3%);
}

.int-caption {
    margin-top: 10px;
}

.int-name {
    font-weight: 500;
    font-size: 16pt;
}

.int-inst {
    font-weight: 200;
    font-size: 10pt;
    text-transform: uppercase;
}


/* VIDEOS */

.videos {
    /* display: none; */
    background-color: black;
    min-height: 300px;
    padding-bottom: 85px;
}

.video-holder {
    background-color: #0e0e0e;
    height: 550px;
}

.video-holder iframe {
    margin: 275px auto 0 auto;
    transform: translateY(-50%);
}


/* AGENDA */

.agenda {
    /* background-color: #041424; */
    background-image: linear-gradient(#041424, black);
    min-height: 300px;
    display: none;
}

.agenda-container {
    margin-top: 36px;
    padding-bottom: 85px;

    /* background-color: #7dbdbc; */
}

.embed-agenda {
    width: 100%;
    height: auto;
    min-height: 56px;
}


/* CONTATO */

.contact {
    background-color: black;
    min-height: 300px;
    /* padding-bottom: 128px; */
}

.contact-title {
    padding-bottom: 36px;
}

.contact-button {
    width: 70%;
    margin: 12px auto;
    height: 50px;
    border-radius: 32px;
    border: 1px solid;
    border-color: #7dbdbc;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    display: none;
}

.contact-img {
    width: 25%;
    margin: 85px auto;
    margin-top: 128px;
    opacity: 0.7;
}

.contact-desktop {
    height: 36px;
    width: 20%;
    display: inline-block;
    margin: 16px 36px;
    cursor: pointer;

    /* background-color: #c92626; */
}

.contact-desktop img {
    height: 100%;
    width: auto;
    vertical-align: middle;
}

.contact-text {
    font-weight: 200;
    padding: 36px 15%;
    font-size: 12pt;
}

.legalline {
    font-size: 8pt;
    font-weight: 200;
    padding-bottom: 36px;
    opacity: 0.5;
}

/* SPLIDE */

.splide__slide .caption {
    width: 200px;
    height: 110px;
    padding-top: 20px;
    left: 50%;
    transform: translateX(-100px);
    opacity: 0;

}

.splide__slide.is-active .caption {
    opacity: 1;
    transition: opacity .3s;
}


/* //////////////////////////////////////////////////  MOBILE */

@media only screen and (max-width:720px) {
    html {
        scroll-padding-top: 64px;
    }

    .m-header {
        display: unset;
    }

    .m-menu {
        background-image: linear-gradient(-90deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.205));
        position: fixed;
        /* display: inherit; */
        width: 100%;
        height: 364px;
        z-index: 95;
        opacity: 1;
    }

    .m-menu-item {
        position: relative;
        /* background-color: #041424; */
        width: 85%;
        height: 40px;
        margin-top: 2px;
        padding-top: 10px;
        text-align: right;
        padding-right: 15%;
        font-weight: 200;
    }

    .m-menu-close {
        position: fixed;
        width: 60px;
        height: 60px;
        right: 15px;
        z-index: 90;
        top: 0;
    }

    .m-menu-button {
        /* background-color: aquamarine; */
        display: unset;
        position: fixed;
        height: 60px;
        width: 60px;
        z-index: 90;
        right: 15px;
        animation: fade 4s;
    }

    @keyframes fade {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .m-menu-line {
        background-color: #7dbdbc;
        position: absolute;
        height: 70%;
        /* para 6 itens: 85%*/
        width: 1px;
        right: 45px;
        top: 30px;
    }

    .m-menu-square {
        background-color: #7dbdbc;
        width: 9px;
        height: 9px;
        position: absolute;
        transform: rotate(45deg);
        right: 41px;
        top: 20px;
        z-index: 90;
    }


    /* HOME */

    .home {
        background-image: url(../img/home-bg-m.jpg);
        background-size: cover;
        background-position: inherit;
    }

    .home-logo {
        width: 55%;
        top: 110px;
    }

    .home-space {
        /* height:  87vh; */
        height: 100vh;
        margin-bottom: -86px;
    }

    .header {
        display: none;
    }

    /* LINES */

    .left {
        left: 8.5%;
    }

    .right {
        right: 8.5%;
    }

    .s-left {
        bottom: 85px;
        left: 8%;
    }

    .s-right {
        top: 85px;
        right: 8%;
    }


    /* PAGINA */

    .content {
        width: 100%;
        height: auto;
        padding: 0px;
    }


    /* BANDA */

    .band {
        padding-bottom: 45px;
        background-image: none;
    }

    .band-slideshow {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        height: auto;
        /* height:100vw; */
        padding: 0;
        /* display: inherit; */

        /* background-color: #c92626; */
    }

    .wrap li {
        /* height: 87vw; */
        height: calc(87vw + 2em);
        overflow: hidden;
    }

    .wrap li img {
        transform: scale(1.25) translateY(10%);
    }

    .band-text {
        position: relative;
        width: 70%;
        max-width: inherit;
        display: inherit;
        align-self: inherit;
        padding: 16px 15%;
        font-size: 11pt;
        text-align: center;
        height: auto;
    }

    .title {
        font-size: 16pt;
    }


    /* INTEGRANTES */

    .members {
        min-height: 145vw;
        background-color: #041424;
        background-image: none;

    }

    .int-desktop {
        display: none;
    }

    .integrante-slider {
        display: inherit;
        position: relative;
        width: 100vw;
        height: 100vw;
        margin: 20px auto;
    }

    /* VIDEO */
    .videos {
        padding-top: 85px;
        padding-bottom: 45px;
    }

    .video-holder {
        background-color: black;
        height: 60vw;
    }

    .video-holder iframe {
        height: 55vw;
        width: 100vw;
        margin: 30vw auto 0 auto;
        transform: translateY(-50%);
    }

    /* AGENDA */

    .agenda {
        padding-top: 85px;
    }

    .agenda-container {
        width: 100%;
        min-height: 100vw;
        /* background-color: #c92626; */
        padding-bottom: 85px;
    }


    /* CONTATO */

    .contact {
        padding-top: 85px;
    }

    .contact-button {
        display: inherit;
    }

    .contact-img {
        width: 40%;
    }

    .contact-img img {
        content: url(../img/logo-fatal-queen-vert.png);
    }

    .contact-desktop {
        display: none;
    }
}