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

html{
    scroll-behavior: smooth;
}

header{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 50px;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    background-color: white;
    border-bottom: 1px solid #cecec9;
}

header a{
    color: #222;
}

.titulo-empresa, .links-topo{
    font-size: 20px;
}

nav{
    display: flex;
    gap: 30px;
}

#destaque-topo{
    color: #3396D3;
}

.intro{
    height: 100vh;
    background: url(assets/img-fundo.jpg) center/cover no-repeat;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.conteudo-intro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    padding: 30px 50px;
    max-width: 600px;
    color: #fff;
    background-color: #00d2b389;
    border: 1px solid;
    border-radius: 5px;
    text-align: center;
}

.bem-vindo{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    gap: 20px;
    line-height: 30px;
    height: 200px;
    width: 40%;
    min-width: 320px;
    color: #222;
}

.quartos{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1440px;
    
}

.card-quarto{
   flex: 0 0 350px;
   text-align: center;
   border-bottom: 3px solid #5A9690;
   padding: 15px;
   transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card-quarto:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.card-quarto img{
    width: 100%;
    padding-bottom: 20px;
}

.card-quarto a{
    color: #222;
}

.rota{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    gap: 20px;
    line-height: 30px;
    height: 200px;
    width: 40%;
    min-width: 320px;
    color: #222;
    font-size: 19px;
}

.iframe iframe{
    width: 100%;
    height: 400px;
    display: block;
}

.sobre{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    gap: 20px;
    line-height: 30px;
    height: 200px;
    width: 40%;
    min-width: 320px;
    color: #222;
    font-size: 19px;
}

.sobre-info {
    display: flex;
    flex-wrap: wrap;      
    justify-content: center; 
    gap: 30px;
    max-width: 1440px;     
    margin: 0 auto;
    padding: 60px 20px;
}

.card-sobre {
    display: flex;
    align-items: center; 
    gap: 20px;
    flex-basis: 45%;
    min-width: 350px;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.sobre-texto p {
    font-size: 16px;
    color: #222;
    line-height: 1.6;
}

.img-sobre img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

.rodape-principal{
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    height: 100px;
    padding: 0 10px;
    flex: 1 0 auto;
    border-bottom: 1px solid #cecec9;
}
.card-rodape{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
}

.card-rodape img{
    height: 20px;
    width: auto;
}

.card-rodape h3{
    color: #fff;
    font-weight: bold;
    font-size: 23px;
    border-bottom: 2px solid;
    border-radius: 4px;
}

.booking{
    color: #fff;
    background-color: #0A5EB0;
    border-radius: 3px;
    font-weight: bold;
}

.dev{
    display: flex;
    justify-content: center;
    color: #22222270;
    font-weight: 444;
    padding: 5px;
}

.dev span{
    color: #ffffff7f;
    font-weight: 444;
}

footer{
    background-color: #67C090;
    width: 100vw;
}

