body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: white;
    border-bottom: 2px solid #d3d3d3;
    flex-wrap: wrap;
}

.wrapper {
    transform: scale(0.8);
    transform-origin: top left;
    width: 125vw;
    min-height: 125vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.show {
    display: flex !important;
}

.logo {
    width: 180px;
}

.espaco-login {
    margin-left: auto;
}

.container {
    width: 100%;
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    background-size: cover;
  }
  
.cabecalho-semana {
    text-align: center;
    background-color: white;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: auto;
}

.cabecalho-semana h1 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.navegacao-semana {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.mensagem-semanal {
    font-style: italic;
    color: black;
    padding: 8px 16px;
    background-color: #fff;
    border-radius: 40px;
    width: fit-content;
    max-width: 90%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
    width: 100%;
    padding: 0.8rem 0;
    box-sizing: border-box;
}

.day {
    background-color: #ffffff;
    padding: 0.8rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: transform 0.2s ease-in-out;
    text-align: left;
    gap: 0.4rem;
    cursor: pointer;
    border: 1px solid #ddd;

    /* ADICIONE ISSO 👇 */
    width: 100%;
    box-sizing: border-box;
}


.day:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.day strong {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
}

.day span {
    font-size: 1rem;
    color: #777;
}

.day ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.day li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 26px;
    padding: 0.2rem 0;
    color: #333;
}

.day li::before {
    content: "•";
    color: #3498db;
}

.hoje {
    background-color: #d7f8d4;
    border: 2px solid #8cd790;
}

.amanha {
    background-color: #f2ffe5;
    border: 2px solid #cce9a0;
    transform: scale(1.03);
}

.sem-cardapio {
    background-color: #fff5f5;
    border: 1px solid #f2caca;
}

.bt-seta {
    background-color: #222;
    border-color: #222;
    border: solid 2px #222;
}

.bt-seta:hover {
    background-color: #ffffff;
    color: #222;
}

.modal,
.admin-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.modal-content input[type="text"],
.modal-content input[type="password"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 5px;
}

.modal-content .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 30px;
}

.password-wrapper .toggle-pass {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #888;
}

button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #3498db;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #2980b9;
}

footer {
    width: 100%;
    margin-top: auto;
    position: relative;
  }
  

.footer-image {
    width: 100%;
    max-height: 20px;
    object-fit: cover;
}

.mensagens-rodape {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.texto-semana {
    font-size: 14px;
    color: #333;
    text-align: center;
}

.linha-semana {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qr-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.qr-flutuante img {
    width: 100px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.ocultar-mobile {
    display: block;
}

@media screen and (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        width: 140px;
    }

    .espaco-login {
        margin-left: 0;
        align-self: flex-end;
    }

    .modal-content {
        width: 90%;
        padding: 1rem;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        padding: 0.8rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }


    .cabecalho-semana,
    .mensagem-semanal {
        max-width: 90%;
    }

    .cabecalho-semana {
        align-items: center;
    }

    .linha-semana {
        flex-direction: column;
    }

    .ocultar-mobile {
        display: none !important;
    }
    
   .modal-content{
    width: 1000px;
   }

}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  

*,
*::before,
*::after {
    box-sizing: inherit;
}

#add-dica{
    position:relative;
    left:10px;
}

