@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    outline: 0;
}


html { 
    font-size: 62.5%;
}

body { 
    font-family: 'Roboto', sans-serif;
    background: #42340C;
    overflow: hidden; 
    height: 100vh;
    width: 100%;
}

input, textarea { 
    outline: 0;
}

figure {
    margin: 0;
}

.webapp { 
    overflow: hidden; 
    min-height: 100vh; 
}

a:hover {
    text-decoration: none;
}

h1 {
    position: fixed;
    left: 3rem;
    top: 3rem;
    font-size: 4.4rem;
    line-height: 4.4rem;
    font-weight: 400;
    color: #fff;
    z-index: 1;
    text-shadow: 0 8px 30px rgb(0 0 0 / 30%);
}

h3 {
    color: #fff;
    font-size: 3.2rem;
    border-bottom: 1px solid #ffffff20;
    padding-bottom: 1rem;
}

canvas {
    cursor: grab;
}

canvas:active {
    cursor: grabbing.col
}

h2 {
    font-size: 4rem;
    color: #000;
    font-family: 'Roboto', sans-serif;
    line-height: 4.2rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.logo-footer {
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    z-index: 1;
}

.open-sidemenu {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    height: 5rem;
    padding: 0 3rem;
    background: #fff;
    border: none;
    border-radius: 3rem;
    font-size: 2rem;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    z-index: 100;
}

.voltar {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    height: 5rem;
    padding: 0 3rem;
    background: #fff;
    border: none;
    border-radius: 3rem;
    font-size: 2rem;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}

.map {
    position: fixed;
    width: 100%;
    height: 100vh;
}

.map-holder {
    position: relative;
}

.sidemenu {
    background: #776F57;
    padding: 4rem;
    width: 47rem;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 120;
    height: 100vh;
    opacity: 0;
    right: -47rem;
    z-index: 1000;
    box-shadow: -5px 0 20px rgb(0 0 0 / 20%);
}

.sidemenu-container {
    height: 100%;
}

.sidemenu header {
    margin-bottom: 2rem;
}

.sidemenu header button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.sidemenu ul li {
    display: block;
    border-bottom: 1px solid #fff;
    height: 5rem;
    line-height: 5rem;
}

.sidemenu ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 400;
}

.point {
    position: absolute;
    transition: opacity .3s ease-in-out;

    top: 50%;
    left: 50%;
}

.juri {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: opacity .3s ease-in-out;

    top: 50%;
    left: 50%;
}

.pin {
    font-size: 1.6rem;
    color: #fff;
    background: #1A1919;
    text-transform: uppercase;
    height: 2.6rem;
    border-radius: .4rem;
    padding: .4rem .8rem;
    display: inline-block;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    z-index: 200;
}

.juri .pin {
    background: #776F57;
    box-shadow: 0 5px 20px rgb(255 255 255 / 50%);
}

.juri::after {
    content: '';
    width: .8rem;
    height: .8rem;
    background: #fff;
    border-radius: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.4rem;
    margin: auto;
    border: .2rem solid #776F57;
}

.point.onTop {
    z-index: 300;
    /* background: #776F57; */
}

.point::after {
    content: '';
    width: .8rem;
    height: .8rem;
    background: #fff;
    border-radius: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.4rem;
    margin: auto;
    border: .2rem solid #000;
}

.sidenav {
    background: #776F57;
    padding: 3rem;
    padding-bottom: 5rem;
    width: 47rem;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 120;
    height: 50vh;
    opacity: 0;
    right: -50rem;
    visibility: hidden;
    pointer-events: none;
    transform: scale(.6);
    border-radius: 6px;
}

.sidenav-container {
    height: 100%;
}

.sidenav header {
    margin-bottom: 0;
    position: absolute;
    background: #776F57;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 2rem 3rem;
    box-shadow: 0 2px 20px rgb(0 0 0 / 20%);
    z-index: 100;
}

.sidenav header button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    float: right;
}

.sidenav header button svg {
    margin-right: 1rem;
}

.sidenav ul {
    padding-bottom: 5rem;
}

.sidenav ul li {
    display: block;
    border-bottom: 1px solid #fff;
    height: 5rem;
    line-height: 5rem;
}

.sidenav ul li:last-child {
    border: none;
}

.sidenav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 400;
}

.interna {
    position: fixed;
    display: flex;
    width: 100%;
    height: 0;
    z-index: 400;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.interna .sidebar {
    background: url(images/bg.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    height: 100vh;
    padding: 4rem;
    width: 20%;
    position: relative;
}

.interna .sidebar ul {
    position: absolute;
    height: 2rem;
    display: block;
    width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.interna .sidebar ul li {
    display: block;
}

.interna .sidebar ul li a {
    color: #fff;
    font-size: 2.6rem;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    position: relative;
    transition: all .3s ease-in-out;
}

.interna .sidebar ul li a::after {
    content: '';
    width: 10px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: calc(100% + 10px);
    top: 15px;
    transition: all .3s ease-in-out;
}

.interna .sidebar ul li a.active {
    padding-left: 20px;
}

.interna .sidebar ul li a.active::after {
    width: 40px;
    right: calc(100% - 10px);
}

.interna .sidebar button {
    position: absolute;
    left: 3rem;
    right: inherit;
}

.interna .content {
    background: url(images/bg-interna.jpg) center center no-repeat;
    background-size: cover;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-content: space-between;
}

.col-up {
    display: flex;
}

.col-left {
    width: 50%;
    padding-right: 20px;
}

.col-left ul {
    padding-left: 2rem;
    border-left: 1px solid #C4C4C4;
    margin: 0;
}

.col-left ul li {
    list-style: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.col-right {
    width: 70%;
    position: relative;
}

.col-right figure {
    height: 300px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
    pointer-events: none;
    border: 3px solid #54451B;
}

.col-mid iframe {
    height: 200px;
    width: 100%;
    margin: 30px 0;
}

.col-right figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-right iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.col-down {
    background: #fff;
    height: 30vh;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
}

.col-down h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.col-down p {
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
}

.close-sidebar {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    height: 5rem;
    padding: 0 3rem;
    background: #fff;
    border: none;
    border-radius: 3rem;
    font-size: 2rem;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    z-index: 100;
}

.home__map {
    width: 180.6rem;
    height: 182.4rem;
    opacity: .2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    /* visibility: hidden; */
    /* pointer-events: none; */
}

.home__map_view {
    position: absolute;
    top: 0;
    left: 0;
    width: 180.6rem;
    height: 182.4rem;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
}