*{ 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;
}

.container-main{
    background-image: url('../img/img-fundo2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color:   #ff3939cc;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 15px;
    width: 470px;
    height: 220px;
}
.main h1{
    font-size: 50px;
    font-weight: bold;
    margin: 10px 0;
}
.main p{
    font-size: 25px;
}

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

.container-quartos{
    display: flex;
}
.box-quartos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.box-quartos img{ 
    width: calc(100% - 200px);
    margin: 20px
}
.box-quartos a{
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: #5f5f5f;
    font-weight: 600;
    font-size: 15px;
    width: 320px;
    border-bottom: 2px solid #ff3434;
}


.container-sobre{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.box-sobre{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 130px;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    width: 500px;
    margin: 50px;
    text-align: justify;
}
.box-sobre img{
    width: 150px;
    height: 100%;
    object-fit: cover;
}
.texto-box-sobre h3{
    text-align: center;
    text-transform: capitalize;
    color: #444444;
}
.texto-box-sobre p{
    color: #5f5f5f;
    margin: 10px 20px;
}

footer{
    margin-top: 50px;
    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%;
}