/* 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;
}

/* Footer */

footer{
    background-color: #004D74;

    padding: 60px 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;
}


/*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);
}


#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) {

    .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;
    }
}

@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) {

    .whatsapp-button {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }


}