@charset "UTF-8";
/* 
    GERAL 
*/

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

@keyframes pulsate {
    0% {
    transform: scale(1);
    }
    50% {
    transform: scale(1.1);
    }
    100% {
    transform: scale(1);
    }
}

.pulsating-btn {
    animation: pulsate 2s ease-in-out infinite;
    transition: 0.3s ease-in-out; /* Adiciona uma transição suave */
}

.pulsating-btn:hover {
    transition: 0.3s ease-in-out; /* Adiciona uma transição suave */
    animation: none;
}

a{
    text-decoration: none;
}

/* 
    FIM GERAL 
*/


/* 
    Sessão Banner 
*/

.banner {
    height: 100%;
    background-image: url("leola.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-interno {
    max-width: 800px;
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0px 30px;
    height: 100%;
}

.banner .stars svg {
    color: #FDC408;
    fill: #FDC408;
    font-size: 24px;
}

.banner .hotel-name {
    font-size: 32px;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    margin-bottom: 0px;
    margin-top: 5px;
    text-shadow: 0px 0px 10px #0000008f;
}

.banner .maintenance-frase {
    font-size: 52px;
    font-family: 'Montserrat', sans-serif;
    line-height: 52px;
    color: #FEC01B;
    margin-top: 50px;
    margin-bottom: 0px;
    font-weight: bold;
    text-shadow: 0px 0px 10px #0000008f;
}

.banner .frase {
    font-size: 24px;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 10px;
    margin-top: 10px;
    text-shadow: 0px 0px 10px #0000008f;
}

.botao{
    margin-top: 20px;
    text-align: -webkit-center;
    text-align: -moz-center;
}

.reserve-btn {
    color: #000 !important;
    background-color: #FEC01B!important;
    padding: 1.5rem!important;
    border-style: solid;
    border-radius: 50px;
    border-color: #FEC01B!important;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0px 0px 20px #0000008f;
}

.reserve-btn:hover {
    transition: 0.3s ease-in-out; /* Adiciona uma transição suave */
    color: #fff !important;
    background-color: #00009a!important;
    border-color: #00009a!important;
}

.reserve-btn svg {
    margin-right: 10px;
    transition: 0.3s ease-in-out; /* Adiciona uma transição suave */
}

.reserve-btn:hover svg {
    transition: 0.3s ease-in-out; /* Adiciona uma transição suave */
    fill: #fff;
}

/* 
    Fim Sessão Banner 
*/

@media (max-width: 767px) {

    .banner .stars svg {
        font-size: 18px;
    }
    
    .banner .hotel-name {
        font-size: 24px;
        line-height: 24px;
    }

    .banner .maintenance-frase {
        font-size: 36px;
        line-height: 36px;
    }

    .banner .frase {
        font-size: 18px;
    }

    .reserve-btn {
        font-size: 18px;
        padding: 1.3rem!important;
    }

    .banner {
        background-image: url("leola.webp");
    }

}