@font-face {
    font-family: 'Luengo';
    src: url(./fonts/Luengo/Luengo.ttf);
}

:root {
    --font-family: 'Luengo', sans-serif;
    --purple: #3d1152;
    --purple-to-listing: #3d1152d5;
    --pink: #e72082;
    --yellow-text: #ffd600;
    --white: #FFF;
    --yellow: #e3db00;
    --width-menu: 23rem;
    --orange: #eb5a37;
}

* {
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    outline: none;
}

a {
    color: #FFF;
}

body,
input,
textarea,
button {
    border: 0;
    font-family: var(--font-family);
}

html {
    font-size: 62.5%;
}

menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    cursor: initial;
    z-index: 1000;
}

menu .bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    z-index: 1000;
}

menu .logo {
    position: absolute;
    height: 6.5rem;
    bottom: 1rem;
    right: 4rem;
    cursor: pointer;
    z-index: 1000;
}

menu .hamburger-menu {
    height: 5rem;
    width: 5rem;
    bottom: 2rem;
    left: 6rem;
    cursor: pointer;
    position: absolute;
    z-index: 1000;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2.5px 2.5px var(--orange);
}
    menu .hamburger-menu .container, menu .hamburger-menu .container::before, 
    menu .hamburger-menu .container::after {
    position: absolute;
    width: 3rem;
    height: 4px;
    background: var(--yellow);
    -moz-transition: all 0.6s, background 0s;
    -o-transition: all 0.6s, background 0s;
    -webkit-transition: all 0.6s, background 0s;
    transition: all 0.6s, background 0s;
    }

    menu .hamburger-menu .container::before, menu .hamburger-menu .container::after {
    content: "";
    display: block;
    }

    menu .hamburger-menu .container::before {
    margin-top: -10px;
    }
    menu .hamburger-menu .container::after {
    margin-top: 10px;
    }

    menu .hamburger-menu.animate .container {
    background: transparent;
    }
    menu .hamburger-menu.animate .container::before {
    margin-top: 0px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    }
    menu .hamburger-menu.animate .container::after {
    margin-top: 0px;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    }

menu .mobile-bar {
    display: none;
}

menu .menu {
    position: absolute;
    bottom: -4rem;
    left: 4rem;
    width: var(--width-menu);
    height: 34rem;
    transform: translate3d(-10rem, 32rem, 0) scale(0);
    transition: transform cubic-bezier(.25, .1, .25, 1) .6s;
    z-index: 999;
}

menu .menu.animate {
    transform: translate3d(0, 0, 0) scale(1);
}

menu .menu section {
    width: 100%;
    padding: 1.5rem 2rem;
}

menu .menu .title-menu {
    text-transform: uppercase;
    color: var(--yellow-text);
    cursor: pointer;
    font-size: 2rem;
}

menu .menu .purple {
    width: 100%;
    background: var(--purple);
}

menu .menu .purple:first-child {
    border-radius: 10px 10px 0 0;
}

menu .menu .purple:last-child {
    padding: 1.5rem 1.5rem 11.2rem;
}

menu .menu .pink {
    width: 100%;
    background: var(--pink);
}

menu .menu ul {
    margin: .5rem 1.2rem;
}

menu .menu ul li {
    font-size: 1.5rem;
    line-height: 2.2rem;
    font-weight: 300;
}

menu .menu ul li a {
    transition: color linear .2s;
}

menu .menu ul li a:hover {
    color: var(--yellow-text);
}

.container-to-list {
    cursor: initial;
    width: 100vw;
    max-width: 100%;
    height: 48rem;
    bottom: 0;
    position: fixed;
    left: 0;
    background: var(--purple);
    background: linear-gradient(0deg, rgba(61,17,82,0.79) 80%, rgba(0,0,0,0) 100%);
}

.container-to-list .cards {
    position: relative;
    left: calc(var(--width-menu) + 10rem);
    top: 6rem;
    cursor: initial;
}

.container-to-list .cards .row {
    position: relative;
    align-items: stretch;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    /* height: 28rem; */
    width: calc((100vw - 8rem - 21rem) - 10rem);
    margin: 0 auto 0 0;
    cursor: grab;
    padding: 5rem 0;
    scroll-behavior: smooth;
}

.container-to-list .cards .row::-webkit-scrollbar {
    width: 0;
}

.container-to-list .card {
    opacity: 1;
    width: 23rem;
    height: 26rem;
    border-radius: 10px;
    margin: 0 4rem 0 0;
    background: var(--yellow);
    box-shadow: 3px 3px var(--orange);
    flex-grow: 0;
    flex-shrink: 0;
    transition: all .2s ease-in;
}

.container-to-list .card:hover {
    /* transform: scale(1.02);*/
}

.container-to-list .card.animate {
    opacity: 0;
}

.container-to-list .card .image-card {
    width: 100%;
    height: 16rem;
    border-radius: 10px 10px 0 0;
}

.container-to-list .card .text {
    position: relative;
    padding: 1rem 1.2rem 1rem;
}

.container-to-list .card .text img {
    width: 70%;
}

.container-to-list .card .text img.grande {
    width: 100%;
}

.container-to-list .card .text h1 {
    width: 100%;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--yellow-text);
    padding: 0 0 0 1rem;
}

.container-to-list .card .text img,
.container-to-list .card .text h1 {
    position: absolute;
    top: -2.3rem;
    left: 0;
}

.container-to-list .card .text img {
    top: -3.2rem;
}

.container-to-list .card .text p {
    font-size: 1.2rem;
    color: var(--purple);
    text-align: left;
}

.closed {
    display: none;
}

/* Configurando a modal */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    max-height: 100%;
    width: 100vw;
    max-width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    cursor: initial;
}

.modal #closeModal {
    width: 4rem;
    position: absolute;
    right: 1rem;
    top: .7rem;
    z-index: 1000;
    cursor: pointer;
}

.modal .container {
    width: 80rem;
    height: 37rem;
    margin: auto;
    display: flex;
    position: relative;
    border-radius: 10px;
    left: 13rem;
    bottom: 5rem;
    box-shadow: 3px 3px var(--orange);
    border-radius: 10px;
    background: var(--yellow);
    transition: all .5s ease-in-out;
    transform: scale(1);
}

.modal .container.animate {
    transform: scale(.1);
}

.modal .container .modal-image {
    width: 50rem;
    border-radius: 10px 0 0 10px;
    height: 100%;
    background-size: cover;
}

.modal .container .fundo {
    width: 40rem;
    height: 101.5%;
    position: absolute;
    left: 40rem;
    bottom: -.3rem;
    border-radius: 0 10px 10px 0;
}

.modal .container .content {
    height: 100%;
    position: absolute;
    left: 50rem;
    padding-top: 10%;
}

.modal .container .content .title-bg,
.modal .container .content h1 {
    position: absolute;
    width: 28rem;
    font-size: 2rem;
    color: var(--yellow-text);
    height: 5rem;
    text-align: center;
}

.modal .container .content h1 {
    margin-top: 1rem;
}

.modal .container .content .options {
    position: absolute;
    top: 14rem;
    left: 1rem;
    width: 25rem;
    font-size: 1.5rem;
}

.modal .container .content .options .option {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    height: 10rem;
    color: var(--purple);
}

.modal .container .content .options .option img {
    width: 6rem;
}

.modal.closed {
    display: none;
}

.container-to-list .cards .row.closed {
    display: none;
}

.lightbox {
    position: fixed;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    max-width: 100%;
    cursor: initial;
    display: none;
    z-index: 140000;
    background: rgba(255, 255, 255, .22);
}

.lightbox .container {
    font-size: 1rem;
    width: 90vw;
    height: 82vh;
    position: relative;
    box-shadow: 2.5px 2.5px 7.5px 2.5px #0000005b;
    z-index: 1001;
}

.lightbox-icon-back {
    cursor: pointer;
    position: absolute;
    width: 0;
    height: 0;
    border-right: 11em solid transparent;
    border-bottom: 11em solid var(--purple);
    border-top: 11em solid transparent;
    border-left: 11em solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -11em;
    right: -11em;
    transform: rotate(45deg);
}

.lightbox img {
    position: absolute;
    height: 6em;
    width: 6em;
    margin: 0 0 1em;
    top: 1em;
    right: 2em;
    cursor: pointer;
}

.lightbox iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.arrow {
    position: absolute;
    width: 6rem;
    cursor: pointer;
    right: 0;
    top: 20.8rem;
    transition: .3s;
}

.arrow.back {
    transform: rotate(180deg);
    left: 27rem;
    bottom: 22rem;
}