/* styles.css */

/* Estilos Globais */
@font-face {
    font-family: Lemonada;
    src: url(../font/Lemonada-VariableFont_wght.ttf);
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Libre Franklin", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #054E72;
    padding: 20px 20px;
    color: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ver-precos {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.logo img {
    height: 38px;
    margin-left: 15px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-item {
    text-decoration: none;
    padding: 15px 18px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    height: 100%;
    width: 100px;
}

.menu-item.home {
    background-color: #FF6A14;

    border-top-left-radius: 16px;
}

.menu-item.elements {
    background-color: #FFC600;
    cursor: pointer;
}

.menu-item.pages {
    background-color: #97D700;
}

.menu-item.pctes {
    background-color: #0072CE;
}

.menu-item.portfolio {
    background-color: #ff6a14;

    border-bottom-right-radius: 16px;
}

.menu-item.contact {
    background-color: #ffc600;
}

#accommodations{
    display: none;
    align-items: center;
    flex-direction: column;
    position: absolute;
    bottom: -115px;
}

#accommodations a{
    text-decoration: none;
    padding: 8px 0;
    color: white;
    width: 136px;
    text-align: center;
    background-color: #FFC600;
}

#accommodations a:hover {
    opacity: 0.8;
}

.menu-item:hover {
    opacity: 0.8;
}

.menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

.menu-overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    /* Coloca o menu por cima de todos os outros elementos */
    top: 0;
    right: 0;
    background-color: rgba(5, 78, 114, 0.95);
    /* Fundo semi-transparente escuro */
    overflow-x: hidden;
    transition: 0.5s;
}

.menu-overlay .closebtn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    cursor: pointer;
    color: white;
}

.menu-overlay .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

.menu-overlay .overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 1.5rem;
    /* Tamanho da fonte do menu */
    color: white;
    display: block;
    transition: color 0.3s;
}

.menu-overlay .overlay-content a:hover {
    color: #f1c40f;
    /* Cor de destaque ao passar o mouse */
}

/*Formulário de reserva ------------------------------------------------*/
.booking-form-container{
    padding: 0 20px;
}

.form-div {
    position: relative;
    top: -62px;
    background-color: white;
    max-width: 1300px;
    margin: auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 16px;
    z-index: 2;
}

.form-options {
    display: flex;
    padding: 16px 16px 0;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.form-option {
    background-color: #0072ce;
    padding: 12px 28px;
    border-radius: 24px;
    cursor: pointer;
    color: white;
    font-size: 1.2em;
    transition: 0.2s ease;
    text-align: center;
}

.form-option:first-child{
    padding-right: 44px;
    border-radius: 24px 0 0 24px;
}

.form-option:last-child{
    margin-left: -34px;
    background-color: #054e72;
}

#bookingForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.form-group, .dateform {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

input,
select {
    all: unset;
    background-color: #F2F2F2;
    width: 100%;
    padding: 12px 16px;
    border-radius: 24px;
    box-sizing: border-box;
    transition: 0.2s;
}

.form-button {
    background-color: #25D366;
    text-align: center;
    color: white;
    font-size: 1.1em;
    padding: 12px 16px;
    cursor: pointer;

    margin-top: 23px;
}

.form-button:hover{
    transform: scale(1.03);
}

label {
    margin-left: 12px;
    margin-bottom: 4px;
    color: #054e72;
}

.select-wrapper {
    position: relative;
    max-width: 100%;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
    pointer-events: none;
} 
/*Newsletter ------------------------------------------------------------------------------------------------------------------------------------------------*/

.email-sec {
    background-image: url('../images/form-cadastro.png');
    background-color: #054E72;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
    padding: 48px 32px;
}

.email-sec .container {
    display: flex;
    align-items: center;
    flex-direction: column;
    
    gap: 56px;
}

.email-sec .email-text {
    width: 100%;
    text-align: center;
}

.email-sec h2 {
    margin: 0;
    color: white;
    font-size: 2em;

    font-weight: 400;
}

.email-sec h2 span{
    font-size: 0.8em;
}

.email-sec .content {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;
}

.email-sec .content-container {
    flex: 1;

    position: relative;

    display: flex;
    align-items: center;

    padding: 20px;
    max-width: 300px;
    min-width: 280px;
    width: 100%;
    height: 390px;

    margin: 24px 12px;
    
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.email-sec .whatsapp-community{
    border-radius: 32px 0 0 0;
    background-color: #64DB48;
}

.email-sec .zapar-form{
    background-color: #FFC700;
}

.email-sec .email-form{
    border-radius: 0 0 32px 0;
    background-color: #FF6A14;
}

.content-image {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    
    width: 145px;
    height: 145px;
}

.content-text {
    text-align: center;
}

.content-text p, .content-text h3{
    margin: 0 0 20px;

    color: #054E72;
}

.content-text p{
    font-weight: 600;
}

.content-text a{
    background-color: #054E72;
    color: #FFFFFF;
    text-decoration: none;

    display: block;
    width: 100%;
    margin: auto;
    padding: 12px 0;

    border-radius: 16px;
    cursor: pointer;
    font-weight: 700;

    transition: 0.2s;
}

.content-text a:hover{
    transform: scale(1.025);
}

.email-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.email-content .email-form-button {
    cursor: pointer;
    background-color: #054E72;
    color: #FFFFFF;
    font-weight: 700;

    padding: 12px 0;
    border-radius: 16px;
    border: none;
    transition: 0.2s;
}

.email-content .email-form-button:hover {
    transform: scale(1.015);
}

.email-content .text-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    font-size: 16px;
    
    border: 1px solid #ccc;
    border-radius: 12px;

    box-sizing: border-box;
}

.email-content input:focus {
    outline: none;
}

/* Footer verde
------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.before-footer{
    background-color: #FFFFFF;
    padding: 40px 20px;
    border-bottom: 1px solid #FFFFFF;
}

.information{
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #054E72;
}

.information a{
    text-decoration: none;
    color: #054E72;
}

.info{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1em;
    border-radius: 44px;
    border: 1px solid #054E72;
    padding: 16px;
}

.info ion-icon{
    font-size: 1.3em;
}

/*Footer*/

footer{
    background-color: #004D74;

    padding: 80px 0 0;
    color: white;
}

footer * {
    margin: 0;
    padding: 0;

    box-sizing: border-box;

    color: white;
    text-decoration: none;
}

footer nav {
    display: unset;
    align-items: unset;
}

footer ul {
    list-style: none;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;

    max-width: 1320px;
    margin: auto;

    padding: 0 20px;
}

.footer-container1{
    font-size: 16px;

    font-weight: 500;
}

.footer-container-content {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;

    width: 65%;
}

.footer-logo {
    justify-self: flex-start;
}

.atendimento dl{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.atendimento dl div {
  display: flex;
  gap: 8px; /* Espaço entre dt e dd */
}

.atendimento dt, .atendimento dd {
  margin: 0;
}

.social *, .atendimento *, .contact * {
    font-weight: 500;

    font-size: 16px;
}

.social h2, .atendimento h2, .contact h2 {
    margin-bottom: 16px;
}

.social ul{
    display: flex;
    gap: 8px;
}

.social ul li{
    border: 0.13em solid #0085B4;
}

.social ul li:nth-child(1){
    border-radius: 8px 0 0 0;
}

.social ul li:nth-child(3){
    border-radius: 0 0 8px 0;
}

.social a {
    padding: 5px;
    display: flex;
}

.social ion-icon{
    font-size: 24px;
}

/* .contact {
    align-self: center;
} */

.contact button{
    display: flex;
    align-items: center;

    gap: 4px;

    background-color: #72D800;
    border: none;
    border-radius: 8px 0 8px 0;

    padding: 10px 24px;

    font-weight: 600;

    text-transform: uppercase;

    cursor: pointer;
}

.contact ion-icon {
    font-size: 18px;
}

/* Linha de divisão */
.footer-division {
    max-width: 1320px;
    width: 100%;
    height: 1px;

    margin: 48px auto;

    background-color: #005B7F;
}


/* Footer pt 2 */
.footer-container2{
    margin-bottom: 48px;
    align-items: flex-start;

    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
}

.content2 *{
    font-size: 18px;
}

.content2 h2{
    font-size: 19px;
    font-weight: 700;

    text-transform: uppercase;
}

.content2 h2::after{
    content: '';
    display: block;
    
    max-width: 40px;
    width: 100%;
    height: 2px;
    background-color: #0085B4;

    margin: 24px 0;
}

.content2 li {
    margin: 12px 0;
}

/* footer bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.205);
    text-align: center;
    font-size: 12px;

    background-color: #004166;
    width: 100%;


    padding: 20px 30px;
}

/*Modal de espera --------------------------------------------------------------------------------------------------------------------------------*/
.wait-modal{
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.295);
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wait-modal-content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.wait-modal-div{
    background-color: white;
    padding: 24px 24px 0;
    border-radius: 16px;
}

.wait-modal-content .loading {
    margin: auto;
    width: 30px;
    height: 30px;
    background-color: transparent;
    display: block;
    border: 8px solid #e5e5e5;
    border-top: 8px solid  #0072ce;
    border-radius: 50%;

    animation: loading 1s infinite;
}

/* fim modal de espera --------------------------------------------------------------------------------------------------------------------------------*/

/*Botão Whatsapp ------------------------------------------------------------------------------------------------------------------------------------------------*/

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.whatsapp-button:hover {
    background-color: #1ebe5b;
    transform: scale(1.1);
}

/* Modal da resposta */
#response-modal {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000000;

    width: 200px;
    padding: 24px 12px;
    text-align: center;

    background-color: #FFFFFF;
    border: 1px solid #ccc;
    border-radius: 16px;

    display: none;
}

/* Media Queries para responsividade */


#CTA-mobile{
    background-color: #FFC600;

    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;

    height: 60px;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.459) 0px 7px 29px 0px;
}

.cta-mobile-div{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 0 20px ;
    gap: 12px;
}

.cta-mobile-button{
    background-color: #0072ce;
    color: white;
    text-decoration: none;

    width: 220px;
    padding: 8px 0;
    text-align: center;
    border-radius: 8px;
    
    cursor: pointer;
    box-shadow: rgbargba(0, 0, 0, 0.295) 7px 29px 0px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cta-mobile-button ion-icon{
    font-size: 20px;
}

@media (max-width: 1250px) {

    .menu {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .menu.show {
        display: flex;
    }

    .menu-item {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    #menuOverlay {
        width: 0;
        transition: width 0.5s;
    }

    #menuOverlay.open {
        width: 50%;
    }

    .logo img {
        height: 40px;
        width: 275px;
    }

    .menu-icon {
        display: block;
    }
}

@media (max-width: 850px) {
    .footer-container2{
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        row-gap: 24px;

        align-items: start;
        text-align: center;
    }

    .content2 h2::after{
        margin: 24px auto;
    }
    
    .footer-container-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        row-gap: 24px;
    }

    .contact {
        justify-self: flex-start;
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 768px) {

    .booking-form-container{
        padding: 0;
    }

    .form-div {
        padding: 16px;
        top: 0px;
    }

    .form-options {
        justify-content: center;
    }

    #bookingForm {
        gap: 16px;
    }

    .form-group, .dateform {
        max-width: 100%;
    }

    .email-sec .container {
        flex-direction: column;
    }

    .email-sec .email-text {
        width: 100%;
    }

    .email-sec h2 {
        margin: 0;
        margin-bottom: 32px;
        text-align: center;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 600px) {
    .footer-container1{
        flex-direction: column;
        gap: 24px;

        align-items: center;

        text-align: center;
    }

    .footer-container-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);

        justify-items: center;

        row-gap: 24px;

        width: unset;
    }
    
    .atendimento dl div {
        justify-content: center;
    }

    .social ul {
        justify-content: center;
    }

    .contact {
        grid-row: 3;

        justify-self: center;
    }
}


@media (max-width: 500px) {
    .footer-container2{
        display: grid;
        grid-template-columns: repeat(1, 1fr);

        row-gap: 24px;

        align-items: start;
        text-align: center;
    }

    .content2 h2::after{
        margin: 24px auto;
    }

    .footer-bottom{
        padding-bottom: 80px;
    }

    #CTA-mobile{
        display: block;
    }

    
    .whatsapp-button {
        display: none;
    }
}

@media (max-width: 480px) {
    
    .form-button {
        font-size: 1em;
    }

    .whatsapp-button {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
    
}

@media (max-width: 425px) {
    .email-sec h2 {
        color: white;
        font-size: 1.6em;
    }

    .info{
        font-size: 1.1em;
    }
    
    .info ion-icon{
        font-size: 1.3em;
    }
}