* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#home {
    width: 100%;
    height: 95vh;
    background-image: url(imgs/h1_hero1.jpg);
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
    display: inline-block;
}

#home header {
    margin-left: 14%;
    padding: 2%;
}

#home img {
    vertical-align: middle;
    margin-right: 48%;
}

#home #telefone {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: questrial
}

#home #button {
    margin-left: 2%;
    margin-right: 2%;
    font-family: questrial;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background-color: #D6A04C;
    padding: 14px 24px;
    border: 1px solid #D6A04C;
    vertical-align: middle;
}

#home #button:hover {
    background-color: transparent;
    color: #D6A04C;
    transition: 0.5s;
}

#home header #nav_button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

#home header #nav_button .menu {
    height: 10px;
    width: 30px;
    display: inline-block;
    border-top: solid 2px white;
    border-bottom: solid 2px white;
}

#home header #nav_button>input {
    z-index: 101;
    opacity: 0;
    height: 40px;
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

#home header #nav_button>input:checked {
    position: fixed;
    left: 85%;
    top: 6.5%;
}

#home header #nav_button>input:checked+nav {
    transition: 1s;
    right: 0;
}

#home header #nav_button input:hover+nav .close_button>svg {
    fill: #D6A04C;
}

#home nav {
    width: 17.5%;
    height: 100vh;
    position: fixed;
    z-index: 100;
    right: -17.5%;
    top: 0;
    background-color: #111111;
    display: inline-block;
    transition: 1s;
}

#home nav svg {
    fill: white;
    height: 21px;
}

#home nav .close_button {
    margin-top: 15%;
    margin-left: 11%;
}

#home nav .primary_list {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 22%;
}

#home nav .primary_list li {
    list-style: none;
    margin-top: 10%;
}

#home nav .primary_list li .blog .svg_mais {
    vertical-align: middle;
    height: 15px;
    width: 15px;
    margin-left: 4%;
}

#home nav .primary_list li .blog .svg_menos {
    display: none;
    vertical-align: middle;
    height: 15px;
    width: 15px;
    margin-left: 4%;
}

#home nav .primary_list li a {
    text-decoration: none;
}

#home nav .primary_list li p {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 100;
    font-family: Questrial;
    display: inline-block;
    vertical-align: middle;
}

#home #nav_button nav .icons {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home #nav_button nav .icons a {
    display: inline-block;
    margin-right: 15px;
}

#home #nav_button nav .icons a svg {
    height: 22px;
    fill: white;
    transition: all .4s ease-out 0s;
}

#home #nav_button nav .icons a:hover svg {
    fill: #D6A04C;
    transition: all .4s ease-out 0s;
    transform: rotateY(200deg);
}

#home nav .primary_list li .blog {
    position: relative;
    height: 100%;
    width: 100%;
}

#home nav .primary_list li .blog input {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home nav .primary_list li .blog .secondary_list {
    position: relative;
    left: 5%;
    width: 100%;
    display: none;
    transition: 0.5s;
}

#home nav .primary_list li .blog input:checked~.secondary_list {
    display: inline-block;
}

#home nav .primary_list li .blog input:checked~.svg_mais {
    display: none;
}

#home nav .primary_list li .blog input:checked~.svg_menos {
    display: inline-block;
}

#home section {
    margin-top: 10%;
    margin-left: 22%;
}

#home section .subtitle {
    font-family: questrial;
    margin-bottom: 1%;
    font-size: 16px;
    color: #E9E3D9;
}

#home section p {
    color: white;
    font-family: cabin;
    font-size: 60px;
    display: inline-block;
    vertical-align: middle;
}

#home section .prebutton {
    display: inline-block;
    vertical-align: middle;
    color: white;
    font-size: 20px;
    font-family: questrial;
    margin-left: 31%;
    margin-right: 2%;
}

#home section .div_play {
    display: inline-block;
}

#home section .play_button {
    vertical-align: middle;
    height: 70px;
    width: 70px;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    background-color: white;
}

#home section .play_button::after {
    content: "";
    height: 72px;
    width: 72px;
    background-color: transparent;
    border: #D6A04C, solid, 1px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home section .play_button::before {
    content: "";
    height: 120px;
    width: 120px;
    background-color: rgba(255, 255, 255, 10%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home section .play_button svg {
    height: 29px;
    fill: #D6A04C;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home section .play_button:hover {
    background-color: #D6A04C;
    transition: 0.5s;
}

#home section .play_button:hover svg {
    fill: white;
    transition: 0.5s;
}

#home footer .mouseicon {
    position: absolute;
    bottom: 15%;
    height: 37px;
    width: 37px;
    fill: #D6A04C;
    margin-left: 22%;
    display: inline-block;
}

#home footer .block {
    background-color: #D6A04C;
    height: 12vh;
    width: 50%;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 5%;
}

#home footer .block .text1,
.text2 {
    padding: 3.5%;
    display: inline-block;
    width: 40%;
    font-size: 20px;
    font-family: questrial;
    color: white;
}

#about_area {
    padding-top: 5%;
    font-family: Questrial, sans-serif;
    font-size: 16px;
    color: white;
    background-color: #0b0016;
}

#about_area .container {
    margin-left: 16%;
}

#about_area .container h2 {
    font-size: 50px;
    font-weight: 100;
    padding-bottom: 3%;
}

#about_area .container .guri_sorrindo {
    margin-left: 7%;
    display: inline-block;
    width: 25%;
}

#about_area .container .guri_sorrindo p {
    font-size: 27px;
    line-height: 150%;
    margin-bottom: 10%;
    display: inline-block;
}

#about_area .container .guria_de_costas {
    display: inline-block;
    margin-left: 10%;
    width: 26%;
    vertical-align: top;
}

#about_area .container .guria_de_costas p {
    font-size: 18px;
    line-height: 150%;
    position: sticky;
    right: 20%;
    margin-bottom: 10%;
}

#about_area .container .guria_de_costas #button {
    color: white;
    background-color: transparent;
    border: #D6A04C, solid, 1px;
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12%;
}

#about_area .container .guria_de_costas #button:hover {
    background-color: #D6A04C;
    transition: 0.5s;
}

#home_block {
    font-family: Cabin;
    color: white;
    padding-top: 5%;
    padding-left: 16%;
    background-color: #0b0016;
}

#home_block .row1 h2 {
    font-size: 44px;
    font-weight: 100;
    padding-bottom: 3%;
}

#home_block .row {
    padding-bottom: 6%;
}

#home_block .row img {
    padding-bottom: 5%;
    width: 105%;
}

#home_block .row a {
    text-decoration: none;
    color: white;
}

#home_block .row h1 {
    font-size: 32px;
    font-weight: 100;
    margin-bottom: 3%;
}

#home_block .row p {
    font-size: 14px;
    font-family: questrial;
}

#home_block .row .image {
    display: inline-block;
    margin-right: 3%;
    transform: translateY(0);
    transition: 0.5s;
}

#home_block .row .image:hover {
    transform: translatey(5%);
    transition: 0.5s;

    img {
        filter: contrast(50%);
        transition: 0.5s;
    }

    h1 {
        color: #D6A04C;
        transition: 0.5s;
    }

    svg {
        fill: black;
        transition: 0.5s;
    }

    .arrow {
        background-color: white;
        transition: 0.5s;
    }
}

#home_block .row .div_arrow {
    position: relative;
}

#home_block .row .div_align {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#home_block .row .arrow {
    display: inline-block;
    background-color: transparent;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: relative;
}

#home_block .row .arrow svg {
    display: inline-block;
    height: 16px;
    width: 16px;
    fill: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#projects_part {
    display: inline-block;
    width: 100%;
    background-color: #1e1e1e;
    color: #2A2A2A;
    color: white;
    font-family: questrial;
    font-size: 16px;
    text-align: center;
    position: relative;
}

#projects_part .container {
    display: inline-block;
    text-align: left;
    width: 1296px;
    position: relative;
}

#projects_part .container .row p {
    font-family: cabin;
    font-size: 215px;
    font-weight: 600;
    -webkit-text-stroke: 2px #E9E3D9;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    position: relative;
    top: 10vh;
}

#projects_part .container .img_projects img {
    position: relative;
    z-index: 2;
}

#projects_part .container .img_projects {
    position: relative;
    width: 100%;
    height: 100%;
}

#projects_part .container .img_projects .angle_right {
    position: absolute;
    left: 99.5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

#projects_part .container .img_projects .angle_right svg {
    height: 30px;
    width: 30px;
    fill: #D6A04C;
}

#projects_part .container .img_projects .angle_left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

#projects_part .container .img_projects .angle_left svg {
    height: 30px;
    width: 30px;
    fill: #D6A04C;
}

#projects_part .container .bloco {
    margin-top: -13.8%;
    width: 60%;
    background-color: #D6A04C;
    position: relative;
    top: 10vh;
    z-index: 3;
    transition: 0.5s;
    padding: 30px;
    vertical-align: middle;
}

#projects_part .container .bloco .texto {
    margin-left: 40px;
    width: 60%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20%;
}

#projects_part .container .bloco .texto h1 {
    font-weight: 100;
    font-family: cabin;
    margin-bottom: 5%;
}

#projects_part .container .bloco a {
    vertical-align: middle;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    width: 60px;
    height: 60px;
    transition: 0.5s;
}

#projects_part .container .bloco svg {
    width: 16px;
    position: absolute;
    fill: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#projects_part .container .bloco:hover {
    transition: 0.5s;
    background-color: #212529;

    h1 {
        transition: 0.5s;
        color: #D6A04C;
    }

    a {
        background-color: #D6A04C;
    }
}

#projects_part .container .img_projects .bolinhas {
    position: absolute;
    display: inline-block;
    z-index: 4;
    right: -1.5%;
    top: 106%;
}

#projects_part .container .img_projects .bolinhas div {
    width: 15px;
    height: 15px;
    background-color: #382d3d;
    border-radius: 50%;
    display: inline-block;
    margin-left: 15px;
}

#projects_part .container .img_projects .bolinhas .bolinha_branca {
    background-color: white;
    margin: 0;
}

#why_us {
    background-color: #0b0016;
    padding-top: 15%;
}

#why_us .container {
    width: 100%;
    text-align: center;
}

#why_us .container img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5%;
}

#why_us .container .text {
    color: white;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

#why_us .container .text h1 {
    font-family: Cabin;
    font-size: 50px;
    font-weight: 100;
    margin-bottom: 5%;
}

#why_us .container .text p {
    font-family: questrial;
    font-weight: 100;
    font-size: 27px;
    line-height: 1.5;
    margin-bottom: 10%;
}

#why_us .container .text a {
    background-color: transparent;
    text-decoration: none;
    color: #D6A04C;
    border: solid, 1px, #D6A04C;
    z-index: 99;
    background-color: transparent;
    position: relative;
    font-family: questrial;
    padding: 15px 27px;
}

#why_us .container .text a::before {
    position: absolute;
    content: "";
    top: 0%;
    left: 0%;
    background-color: white;
    height: 0;
    width: 100%;
}

#why_us .container .text a:hover::before {
    animation: quicada 0.5s forwards ease-out;
    z-index: -1;
}

#why_us .container .text a:hover {
    color: #D6A04C;
}

@keyframes quicada {
    50% {
        height: 100%;
    }

    90% {
        height: 90%;
    }

    100% {
        height: 100%;
    }
}

#careca {
    background-color: #0a0a0a;
    padding: 139px 0px 130px;
    text-align: center;
}

#careca #svg {
    margin-bottom: 1.5%;
}

#careca #text {
    color: #C1C1C1;
    line-height: 1.5;
    font-size: 24px;
    font-family: questrial;
    margin-bottom: 1.5%;
}

#careca p {
    color: white;
    font-size: 12px;
    font-weight: 300;
    font-family: questrial;
}

#careca #img_careca {
    margin-bottom: 1%;
}

#careca .container {
    display: inline-block;
    width: 60%;
    position: relative;
}

#careca .container .angle_right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#careca .container .angle_right svg {
    height: 25px;
    width: 25px;
    fill: #858585;
    transition: 0.5s;
}

#careca .container .angle_left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#careca .container .angle_left svg {
    height: 25px;
    width: 25px;
    fill: #858585;
    transition: 0.5s;
}

#careca .container>a:hover svg {
    fill: white;
}

#rooms {
    background-color: #0b0016;
    text-align: center;
    position: relative;
    padding-bottom: 5%;
}

#rooms .space {
    text-align: left;
    display: inline-block;
    position: relative;
    border: solid, 1px, #4B4B4B;
    padding: 30px;
    width: 70%;
    transition: 0.5s;
    margin-bottom: 2%;
}

#rooms .space img {
    margin-right: 3%;
    display: inline-block;
    vertical-align: middle;
}

#rooms .space .text {
    display: inline-block;
    vertical-align: middle;
}

#rooms .space .text p {
    color: white;
    font-family: questrial;
    font-size: 14px;
}

#rooms .space .text h1 {
    color: white;
    font-size: 32px;
    font-family: cabin;
    font-weight: 100;
    margin-top: 5%;
    margin-bottom: 5%;
    transition: 0.5s;
}

#rooms .space .botao {
    display: inline-block;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
}

#rooms .space .botao a {
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    transition: 0.5s;
}

#rooms .space .botao a svg {
    fill: white;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#rooms .space:hover {
    transition: 0.5s;
    background-color: #272727;

    h1 {
        transition: 0.5s;
        color: #D6A04C;
    }

    a {
        transition: 0.5s;
        background-color: #D6A04C;
    }
}

#rodape {
    height: 55vh;
    background-color: #1e1e1e;
    text-align: center;
    padding-top: 120px;
}

#rodape .listas {
    padding-bottom: 4%;
    display: inline-block;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #353535;
    margin-bottom: 2%;
}

#rodape .listas .espaco_rodape {
    position: relative;
    display: inline-block;
    padding: 0px 12px;
    width: 220px;
    vertical-align: top;
    text-align: left;
}

#rodape .listas .espaco_rodape h4 {
    font-size: 20px;
    font-family: cabin;
    font-weight: 100;
    color: white;
    margin: 0 0 30px;
}

#rodape .listas .espaco_rodape ul {
    text-align: left;
}

#rodape .listas .espaco_rodape ul a li {
    list-style: none;
    margin-bottom: 25px;
}

#rodape .listas .espaco_rodape ul a {
    text-decoration: none;
    color: white;
    font-family: questrial, sans-serif;
    font-weight: 400;
    font-size: 16px;
}

#rodape .listas .espaco_rodape ul a:hover {
    text-decoration: underline;
}

#rodape .listas .espaco_email {
    display: inline-block;
    text-align: left;
    color: white;
    width: 416px;
    margin-left: 200px;
}

#rodape .listas .espaco_email h4 {
    font-size: 20px;
    font-family: cabin;
    font-weight: 100;
    color: white;
    margin: 0 0 30px;
}

#rodape .listas .espaco_email p {
    font-size: 16px;
    font-family: questrial, sans-serif;
    font-weight: 400;
    margin-bottom: 5%;
    color: #A4A6AE;
}

#rodape .listas .espaco_email input {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    font-family: questrial, sans-serif;
    padding: 10px 20px;
    color: #5C6168;
    border: 0;
    font-size: 16px;
    background: white;
}

#rodape .listas .espaco_email .input_email {
    position: relative;
    margin-bottom: 10%;
}

#rodape .listas .espaco_email .input_email input {
    outline: none;
}

#rodape .listas .espaco_email .input_email .button_submit {
    z-index: 2;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translatey(-47%);
}

#rodape .listas .espaco_email button {
    height: 60px;
    width: 80.5px;
    border: 0;
    position: relative;
    display: inline-block;
    background: #D6A04C;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    cursor: pointer;
}

#rodape .listas .espaco_email button img {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#rodape .listas .espaco_email .icons a {
    vertical-align: middle;
}

#rodape .listas .espaco_email .icons a:hover svg {
    fill: #D6A04C;
    transition: all .4s ease-out 0s;
    transform: rotateY(200deg);
}

#rodape .listas .espaco_email .icons a svg {
    fill: white;
    height: 22px;
    margin-right: 5%;
    transition: all .4s ease-out 0s;
}

#rodape .listas .espaco_email .icons svg path {
    vertical-align: middle;
}

#rodape .fim p {
    color: #A4A6AE;
    font-size: 16px;
    font-weight: 400;
    font-family: questrial, sans-serif;
    display: inline-block;
}

#rodape .fim svg {
    width: 16px;
    height: 16px;
    fill: #D6A04C;
}

#rodape .fim a {
    text-decoration: none;
    font-family: questrial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #D6A04C;
}