/* 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;
}

.menu-item:hover {
    opacity: 0.8;
}

#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-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 */
}

/*BADGE*/

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #97d700;
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
}

/*Newsletter ------------------------------------------------------------------------------------------------------------------------------------------------*/

.email-sec {
    background-color: #ff6a14;
    padding: 32px;
}

.email-sec .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.email-sec .content {
    width: 40%;
}

.email-sec h3 {
    margin: 0;
    color: white;
    font-size: 2.2em;
}

#email-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#email-content #email-button {
    cursor: pointer;
    background-color: #FFC600;
    color: #054e72;
    font-weight: 700;
    border: none;
    transition: 0.2s;
}

#email-content #email-button:hover {
    transform: scale(1.015);
}

#email-content input {
    width: 100%;
    max-width: 400px;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

#email-content input:focus {
    outline: none;
}

/*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);
}

/* Footer styles ------------------------------------------------------------------------------------------------------------------------------------------------- */

.site-footer {
    background-color: #054e72;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-column h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-column p,
.footer-column a {
    margin: 5px 0;
    color: white;
    text-decoration: none;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom {
    border-top: 1px solid white;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 5px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
}

/* Footer verde
------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.before-footer{
    background-color: #054E72;
    padding: 40px 20px;
    border-bottom: 1px solid #FFFFFF;
}

.information{
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #FFFFFF;
}

.information a{
    text-decoration: none;
    color: #FFFFFF;
}

.info{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1em;
    border-radius: 44px;
    border: 1px solid white;
    padding: 16px;
}

.info ion-icon{
    font-size: 1.3em;
}


/* Media Queries para responsividade */

@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: 768px) {

    .email-sec .container {
        flex-direction: column;
    }

    .email-sec .content {
        width: 100%;
    }

    .email-sec h3 {
        margin: 0;
        margin-bottom: 32px;
        text-align: center;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 480px) {

    .whatsapp-button {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }


}