* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#home {
    width: 100%;
    height: 50vh;
    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;
    background-position: 20%;
}

#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 .title {
    margin-left: 22%;
    margin-top: 4%;
}

#home .title a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-family: questrial;
}

#home .title p {
    color: white;
    font-size: 16px;
    font-family: questrial;
}

#home .title h1 {
    margin-top: 10px;
    color: white;
    font-size: 60px;
    font-family: cabin, sans-serif;
    font-weight: 100;
}

#about_area {
    padding-top: 6%;
    padding-bottom: 6%;
    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;
}

#why_us {
    background-color: #1e1e1e;
    padding-top: 6%;
    padding-bottom: 6%;
}

#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;
}