*{ box-sizing: border-box; }
body{ 
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
}

header{
    position: fixed;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #d5d5d5;
}
nav{max-width: 1024px;}
header nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    padding: 0 10px;
    margin: 0 auto;
}
.logo{
    text-decoration: none;
    color: rgb(78, 78, 78);
    font-size: 22px;
}
.logo span{ color: #ff3434; font-weight: 600;}
.navbar-topo a{
    text-decoration: none;
    color: rgb(87, 87, 87);
    font-size: 14px;
    padding: 0 15px;
    line-height: 18px;
}

#background{
    background-image: url('../img/img-fundo2.1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 30vh;
}

.texto-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    margin-bottom: 30px;
    padding: 20px;
}
.texto-container h2{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    color: #444444;
}
.texto-container p{
    font-size: 16px; 
    color: #5f5f5f;
}

figure{height: 240px;}
.img-quartos{
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-quartos img{
    width: 350px;
    height: 100%;
    object-fit: cover;
    margin: 5px;
}
.info-quartos{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.info-quartos h4{
    text-align: center;
    margin: 40px;
    font-size: 18px;
    color: #3a3a3a;
}
.info-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #444444;;
}
.info-list li{
    margin: 0 20px;
    width: 25%;
    text-align: left;
}


footer{
    margin-top: 80px;
    height: 180px;
    background-color: #ff3939;
}
.container-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
#text-footer{
    font-size: 20px;
    margin: 10px;
}
.box-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    width: 200px;
    margin: 0 30px;
}
.box-footer img{
    margin: 0 20px;
    width: 30px;
    height: 30px;
}
#copy-footer{
    text-align: center;
    width: 100%;
}