@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --cor1: #021B6B;
    --cor2: #C2D5DB;
    --cor3: #FCEEE3;
    --cor4: #CA0404;
    --cor5: #8F0304;
    --cor6: #FDC830;

    --sansserif: "Rubik", Arial, Helvetica, Sans-Serif;
    --display: "Knewave", Arial, Helvetica, Sans-Serif;
    --serif: "Playfair Display", Arial, Helvetica, Sans-Serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--sansserif);
    scroll-behavior: smooth;
}

body {
    background-color: var(--cor1);
}

body::-webkit-scrollbar {
    display: none;
}

header {
    width: 100vw;
    height: 70vh;
    background-color: var(--cor1);
}

nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px 20px;
    position: fixed;
    background: var(--cor1);
    transition: .2s;
}

nav .escuro {
    display: none;
}

.navsticky {
    background: #fff;
    transition: .3s;
    box-shadow: 10px 0 10px #0004;
}

.navsticky .escuro {
    display: block;
}

.navsticky .claro {
    display: none;
}

.logo img {
    width: 25px;
    height: 25px;
}

.menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin: 0px 25px;
    font-weight: bold;
}

.navsticky .menu a {
    color: var(--cor1) !important;
}

.searchbox {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
}

.searchbar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
    /*
    justify-content: center;
    align-items: center;
    text-align: center;
    */
}

.searchbar #search {
    border: solid 2px transparent;
    border-radius: 20px;
    width: 80%;
    height: 10%;
    padding: 10px;
    outline: none;
    transition: .5s;
}

.options > a {
    width: 25px !important;
    height: 25px !important;
    margin: 0px 5px;
    color: #fff;
}

.navsticky .options a {
    width: 25px;
    height: 25px;
    margin: 0px 5px;
    color: var(--cor1);
}

main {
    background-color: #fff;
    padding: 50px 20px;
    border-radius: 20px;
    max-width: 90%;
    margin: 0 auto 50px auto;
}

article > section {
    color: #000;
    text-align: left;
    display: block;
    padding: 0;
    cursor: default;
}

article > section > h2 {
    font-size: 25px;
    text-transform: uppercase;
    margin-top: 20px;
}

article > section > h2 a {
    font-size: small;
    padding-left: 5px;
    color: #333;
    text-decoration: none;
}

article > section > h2 a:hover {
    text-decoration: underline;
}

.section {
    display: flex;
    justify-content: space-around;
    width: 100%;
    overflow: hidden;
}

.grupo {
    width: 250px;
    height: 380px;
    border-radius: 20px;
    margin: 20px 0px 0 0px;
    transition: .6s;
    outline: none;
}

.grupo:hover {
    box-shadow: 0 0 10px #0004;
    transition: .2s;
    cursor: pointer;
    margin: 18px 0px 0 0px;
}

.grupo .imagem {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
}

.grupo .imagem img {
    height: 300px;
}


.grupo .descricao {
    padding: 10px;
}

.grupo .descricao  {
    font-weight: normal;
} 

.bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: .1s linear;
}

.bottom-sheet.show {
    opacity: 1;
    pointer-events: auto;
    transition: .1s;
}

.bottom-sheet .header {
    display: flex;
    justify-content: center;
}

.bottom-sheet .drag {
    cursor: grab;
    user-select: none;
    padding: 15px;
    margin-top: -15px;
}

.bottom-sheet .drag span {
    height: 4px;
    width: 40px;
    display: block;
    background: var(--cor2);
    border-radius: 50px;
}

.bottom-sheet .sheet-overlay {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    background: #000;
}

.bottom-sheet .content {
    background: #fff;
    height: 50vh;
    max-height: 100vh;
    padding: 25px 30px;
    max-width: 1100px;
    border-radius: 20px 20px 0 0;
    margin: 0 auto;
    z-index: 100;
    max-width: 90%;
    position: relative;
    transform: translateY(100%);
    transition: .3s ease;
}

.bottom-sheet.show .content {
    transform: translateY(0%);
}

.bottom-sheet.dr .content {
    transition: none;
}

.bottom-sheet.fullscreen .content {
    border-radius: 0px;
    overflow-y: hidden;
    width: 110vw;
    margin: 0;
}

.bottom-sheet .body {
    overflow-y: auto;
    height: 100%;
    scrollbar-width: none;
}

.bottom-sheet .body::-webkit-scrollbar {
    width: 0;
}


.bodycontent {
    width: 100%;
    display: flex;
    max-height: 100%;
    overflow: hidden;
}

.body1 {
    width: 65vw;
    height: 100vh;
    background: #f1f1f1;
    padding: 20px 10px;
    border-radius: 20px 0 0 20px;
    overflow-y: auto;
}

.body1 > a {
    display: flex;
    justify-content: start;
    color: #000;
    text-decoration: none;
    align-items: center;
    text-align: center;
    margin: auto;
}

.body1 > a h3 {
    margin-left: 15px;
    font-size: 40px;
}

.body1 .bodybanner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    padding: 10px 50px;
    border-radius: 10px;
}

.bodybanner img {
    top: 50%;
    left: 50%;
    transform: translate(0, -25%);
    width: 100%;
    border-radius: 10px;
}

.body1::-webkit-scrollbar {
    width: 10px;
    background: transparent;
}

.body1::-webkit-scrollbar-thumb { 
    background-color: var(--cor2);
    border-radius: 20px;
}

.body1 .bannerinfo {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    font-size: small;
}

.body1 .coment {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.coment .comentbox {
    width: 50%;
}

.coment .comentbox h3 {
    text-indent: 12%;
    font-size: 25px;
    margin-top: 10px;
}

.comentbox .comentcontent {
    background: #eaeaea;
    border-radius: 20px;
    width: 80%; 
    margin-top: 10px;
    margin: 0 auto;
    padding: 10px 15px
}

.comentbox .comentcontent a {
    font-size: small;
    color: var(--cor1);
}

.comentbox .comentcontent p {
    font-family: var(--serif);
}

.coment .comentrate {
    width: 40%;
    background: #eaeaea;
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 20px;
}

.comentrate .nota {
    display: flex;
    justify-content: center;
    font-size: 30px;
}

.nota i {
    color: var(--cor6);
    font-size: 40px;
    display: block;
}

.galeria {
    width: 90%;
    margin: 0 auto;
}

.galeria h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 25px;
}

.galeria .galeriacontent {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 100px;
}

.galeria .galeriacontent img {
    width: 100%;
}

.galeria .galeriacontent img:first-child {
    border-radius: 10px 10px 0 0;
}

.galeria .galeriacontent img:last-child {
    border-radius: 0 0 10px 10px;
}

.body2 {
    width: 35vw;
    height: 100vh;
    background: #cfcfcf;
    padding: 20px 10px;
    border-radius: 0 20px 20px 0;
    overflow-y: auto;
}

.body2::-webkit-scrollbar {
    width: 10px;
    background: transparent;
    display: block;
}

.body2::-webkit-scrollbar-thumb { 
    background-color: var(--cor2);
    border-radius: 20px;
}

.body2 .hist, .traj {
    width: 100%;
    padding: 20px;
    padding-top: 5px;
}

.body2 .hist p {
    text-indent: 20px;
}

.traj .iframe {
    background-color: #fff;
    border-radius: 20px;
}

.iframe iframe {
    border-radius: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

i {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    color: #000;
}

i.fa-left {
    left: 0px;
    top: 30px;
}

i.fa-right {
    right: 0px;
    top: 30px;
}




/* @MEDIA */

@media (max-width: 1400px) {
    body::-webkit-scrollbar {
        width: 10px;
        background: transparent;
        display: block;
    }
    
    body::-webkit-scrollbar-thumb { 
        background-color: var(--cor2);
        border-radius: 20px;
    }
}