* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #1f2937;
}
header {
    display: flex; /*coloca logo e menu lado a lado*/
    justify-content: space-between; /*um vai pra esquerda, outro pra direita*/
    align-items: center;

    background-color: #ffffff;
    padding: 20px 40px;
    border-bottom: 2px solid #2563eb;
    
}
/*===LOGO_nome_site=====*/

.logo h1 {
    color: #2563eb;
    font-size: 24px;
    
}
.logo a {
    text-decoration: none;
}
nav {
    display: none;
    transition: all 0.3s ease;
}

nav.ativo {
    display: block;
}


nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;

    background-color: #ffffff;
    padding: 20px;
}

nav ul li a {
    font-size: 20px;
    padding: 10px;
}

nav ul li a:hover {
    color: #2563eb;
}
nav.active {
    display: block;
}
.menu-toggle.aberto {
    color: #2563eb;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2563eb;
}

.banner {
    position: relative;
    width: 100%;
    height:80vh;

    background-image: url("../imagens/fotoLogoLajeDoModesto1.jpg");
    background-size: cover;
    background-position: center;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width:100%;
    height:100%;

    background-color: rgba(37, 99, 235, 0.6);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}
.banner h2 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 10px;
}
.banner p {
    color:#ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}
.btn {
    background-color: #ffffff;
    color: #2563eb;

    padding: 12px 30px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: bold;
}
.btn:hover {
    background-color: #1e40af;
    color: #ffffff;
}
/*===Media Query (celular)=====*/
@media (min-width: 768px) {

    .menu-toggle {
        display: none;
    }

    nav {
        display: block;
    }

    nav ul {
        flex-direction: row;
        background: none;
        padding: 0;
    }
}

footer {
    background-color: #2563eb;
    color: #ffffff;
    margin-top: center;

}
.footer-content p {
    margin-bottom: 8px;
}
.footer-bottom {
    background-color: #1e40af;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/*====Container principal====*/
.reserva-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;

    background-color: #ffffff;
    border-radius: 8px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/*====Título====*/
.reserva-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2563eb;
}
/*====Formulário====*/
.reserva-form {
    display: flex;
    flex-direction: column;
}
/*====Formulário====*/
.reserva-form label {
    margin-bottom: 5px;
    font-weight: bold;
}
/*====Inputs====*/
.reserva-form input {
    padding: 10px;
    margin-bottom: 20px;

    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}
/*====Botão====*/
.reserva-form button {
    align-self: center;
}
.resumo-reserva {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}
.resumo-reserva h3 {
    margin-bottom: 15px;
    color: #2563eb;
}
.resumo-reserva p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}
.resumo-reserva .total {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 20px;
    font-weight: bold;
    color: #1e40af;
}
.adicionais {
    margin-top: 30px;    
}
.adicionais h3 {
    margin-bottom: 15px;
    color: #2563eb;
}
.adicionais label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}
.cupom {
    margin-top: 30px;    
}
.cupom input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;

    border-radius: 5px;
    border: 1px solid #ccc;
}
#msgCupom {
    margin-top: 5px;
    font-size: 14px;
}
.resumo-reserva .desconto {
    color: #16a34a; /* verde */
}
.acao-final {
    margin-top: 30px;
    text-align: center;
}

.btn-final {
    font-size: 18px;
    padding: 14px 40px;
}
/* ===== MENU MOBILE LATERAL ===== */

.menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Menu fechado */
#menuNav {
    position: fixed;          /* Fica fixo na tela */
    top: 0;                   /* Começa no topo */
    left: -260px;             /* Escondido fora da tela */
    width: 250px;
    height: 100vh;            /* Altura total da tela */

    background-color: #ffffff;
    padding-top: 80px;

    transition: left 0.3s ease; /* Animação suave */
    z-index: 1000;
}

/* Menu aberto */
#menuNav.ativo {
    left: 0; /* Entra na tela */
}

#menuNav ul {
    list-style: none;
    padding: 0;
}

#menuNav ul li {
    margin: 20px 0;
    text-align: center;
}

#menuNav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #1f2937;
    font-weight: bold;
}

/* Desktop */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    #menuNav {
        position: static;
        height: auto;
        width: auto;
        left: 0;
        padding-top: 0;
        display: block;
    }
}
/* ===== OVERLAY (FUNDO ESCURO) ===== */
#overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.6);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease;
    z-index: 900;
}

/* Overlay ativo */
#overlay.ativo {
    opacity: 1;
    visibility: visible;
}

/* ===== BOTÃO MENU ===== */
.menu-toggle {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

/* Quando menu estiver aberto */
.menu-toggle.aberto {
    transform: rotate(90deg);
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 26px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}
