*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background-color: #E3E3E3;
}

.interface{
    max-width: 1280px;
    /* margin: 0 4%; */
    margin: 0 auto;
}

header .btn-contato button, .hero-site button, .hoteis button{
    font-size: 18px;
    background-color: transparent;
    border: 1px solid #FFF;
    color: #FFF;
    cursor: pointer;
    transition: .5s;
}

header .btn-contato button:hover, .hero-site button:hover, .hoteis button:hover{
    background-color: #FFF;
    color: #000;
}

/* Estilo do Header
------------------------------------------------------------
-----------------------------------------------------------*/
header{
    width: 100%;
    padding: 40px 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: .5s;
}

header .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
    max-width: 70px;
}

/* Estilo do Menu Dinâmico */
header .logo img.logo-preta{
    display: none;
}

header.rolar{
    background-color: #FFF;
    padding: 20px 0;
    box-shadow: 0 0 8px #000;
    z-index: 3;
}

header.rolar .menu-desktop nav ul li a{
    color: #000;
}

header.rolar .btn-whatsapp{
    
}

header.rolar .logo .logo-branca{
    display: none;
}

header.rolar .logo .logo-preta{
    display: block;
}

/* ----------------------------------- */

header .menu-desktop nav ul{
    list-style-type: none;
}

header .menu-desktop nav ul li{
    display: inline-block;
    margin: 0 40px;
}

header .menu-desktop nav ul li a{
    color: #FFF;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

.menu-desktop nav a:hover{
    transform: scale(1.05);
}

header .btn-contato button{
    width: 140px;
    height: 50px;
}

/* WhatsApp 
-------------------------------------------*/
header .btn-whatsapp {
    position: relative;
}

header .btn-whatsapp img{
    width: 200px;
    z-index: 1;
}

.legenda p{
    position:absolute;
    font-size: 11px;
    text-decoration: none;
    border-style: none;
    left: 10px;
    bottom: 25px;
    color: #000;
    font-weight: 500;
    z-index: 2;
}

.legenda span{
    font-weight: 800;
}

@keyframes anima{
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.15);
    }
}

header .btn-whatsapp a img:hover{
    animation-name: anima;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

/* Estilo do Hero
------------------------------------------------------------
-----------------------------------------------------------*/
section.hero-site{
    height: 98vh;
    background-image: url(../images/bg-inicio-site.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #FFF;
}

.hero-site .interface{
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-site .txt-hero h1{
    font-size: 4em;
    line-height: 70px;
    font-weight: 200;
}

.hero-site .txt-hero h1 span{
    display: block;
    font-weight: 800;
}

.hero-site .txt-hero p{
    font-size: 20px;
    font-weight: 300;
    margin: 20px 0 30px;
}

.hero-site .txt-hero p span{
    display: block;
}

.hero-site button{
    width: 280px;
    height: 60px;
    font-size: 20px;
}

/* Estilo das Vantagens
------------------------------------------------------------
-----------------------------------------------------------*/
section.vantagens{
    padding: 80px 0;
}

.vantagens .itens-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    margin-bottom: 60px;
}

.vantagens .itens-container .img-itens img{
    max-width: 420px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 10px #000;
}

.vantagens .itens-container .txt-itens h3{
    font-size: 3em;
    line-height: 50px;
    margin-bottom: 20px;
}

.itens-container .txt-itens h3 span{
    font-weight: 300;
}

/* Estilo do Contato
------------------------------------------------------------
-----------------------------------------------------------*/
section.contato{
    background-color: #FFF;
    padding: 80px 0;
}

.txt-contato, .icons-contato{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.contato .txt-contato h3{
    font-size: 2.5em;
    line-height: 45px;
    font-weight: 300;
    margin-bottom: 15px;
}

.contato .txt-contato h3 span{
    display: block;
    font-weight: 700;
}

.contato .icons-contato a{
    text-decoration: none;
}

.contato .icons-contato button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    height: 60px;
    margin: 0 auto 20px auto;
    padding: 0 60px;
    background-color: transparent;
    border: 1px solid #000;
    cursor: pointer;
    transition: .5s;
}

.contato .icons-contato button i{
    font-size: 20px;
}

.contato .icons-contato button:hover{
    background-color: #000;
    color: #FFF;
}

.contato .icons-contato button:hover i, .contato .icons-contato button:hover p{
    color: #FFF;
}

/* Estilo de Hoteis
------------------------------------------------------------
-----------------------------------------------------------*/
section.hoteis{
    height: 750px;
    background-image: url(../images/hotel-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
background-attachment: fixed;
    position: relative;
    color: #FFF;
    text-align: center;
    box-shadow: 0px 0px 10px 10px #000;
}

.hoteis > .overlay{
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: #000000d7; */
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hoteis > .interface{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    z-index: 2;
    position: relative;
}

.hoteis h3{
    font-size: 3em;
    line-height: 55px;
    font-weight: 200;
}

.hoteis h3 span{
    display: block;
    font-weight: 600;
}

.hoteis p{
    margin: 20px 0;
    font-size: 20px;
    font-weight: 300;
}

.hoteis button{
    width: 230px;
    height: 60px;
}

/* Estilo de Como Funciona
------------------------------------------------------------
-----------------------------------------------------------*/
section.como-funciona{
    padding: 80px 0;
}

.txt-funciona, .instrucoes{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: top;
}

.como-funciona .txt-funciona{
    position: sticky;
    top: 50%;
    padding-bottom: 35px;
}

.como-funciona .txt-funciona h3{
    font-size: 4em;
    line-height: 60px;
    font-weight: 300;
}

.como-funciona .txt-funciona h3 span{
    display: block;
    font-weight: 700;
}

.instrucoes .instru-box{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    border:  1px solid #000;
    padding: 20px;
}

.instrucoes .instru-box img{
    max-width: 200px;
    border-radius: 10px;
}

.instrucoes .instru-box h4{
    font-size: 1.5em;
    font-weight: 800;
    margin-bottom: 10px;
}

.instrucoes .instru-box h4 span{
    font-weight: 300;
}

.instrucoes .instru-box p{
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
}

/* Estilo de Rodapé
------------------------------------------------------------
-----------------------------------------------------------*/
footer{
    background-color: #000;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

footer .top-footer button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #FFF;
    background-color: transparent;
    color: #FFF;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
    transition: .5s;
}

footer .top-footer button{
    background-color: #FFF;
    color: #000;
}

footer .middle-footer{
    margin: 20px 0;
}

footer .middle-footer a{
    color: #FFF;
    margin: 0 15px;
    text-decoration: none;
}

footer .bottom-footer{
    border-top: 1px solid #FFF;

}

footer .bottom-footer p{
    color: #FFF;
    margin-top: 10px;
    font-size: 12px;
}