   /* === ESTILOS GERAIS === */
   body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.alinhamento {
    margin-left: 100px !important;
    margin-right: 100px !important;
}

header {
    background: #ffffff;
    color: #070707;
    padding: 30px 20px;
    text-align: center;
    margin-top: -100px;
    margin-left: 50px;
}

img {
    width: 120px;
    margin-left: 10px;
    margin-top: 10px;
}

main {
    padding: 20px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #dd6f08;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* === BANNER === */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from { opacity: 0.4 }
    to { opacity: 1 }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    user-select: none;
    transition: 0.6s ease;
}

.next { right: 0; }

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: rgb(247, 132, 0);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* === RESTAURANTES === */
.produtos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.produto {
    width: 30%;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    transition: 0.3s ease-in-out;
}

.produto:hover {
    transform: scale(1.06);
}

body.modo-escuro .produto {
    background-color: #333;
    color: white;
    font-weight: bold;
}

body.modo-escuro .produto:hover {
    transform: scale(1.06);
}

/* === MODAL === */
.modal, .modal-overlay {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal {
    display: block;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.10);
    padding: 20px;
    border: 5px solid orangered;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 600px;
    height: 400px;
    text-align: center;
}

p {
    font-size: 10px;
    color: black;
}

a {
    color:orange;
}

body.modo-escuro p {
    color:white;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.form-container {
    flex: 1;
    padding: 20px;
}

input[type="email"], input[type="password"], input[type="submit"] {
    display: block;
    width: 90%;
    margin: 15px auto;
    padding: 8px;
    border: 1px solid #f76002;
    border-radius: 4px;
    font-size: 12px;
}

input[type="submit"] {
    background-color: #f76002;
    color: white;
    cursor: pointer;
}

h2 {
    color: black;
    font-family: cursive;
}

h3 {
    margin-left: 20px;
    font-family: fantasy;
    color: #dd6f08;
    font-size: 30px;
    margin-bottom: -5px;
}

button {
    width: 80px;
    height: 30px;
    background-color: #eb3d12;
    color: white;
    font-size: 14px;
    font-family: fantasy;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    font-weight: bold;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9);
    padding: 5px;
}

/* === MODO ESCURO === */
body.modo-escuro {
    background-color: #333;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

body.modo-escuro a,
body.modo-escuro h2 {
    color: white;
}

body.modo-escuro button[type="submit"] {
    background-color: #333;
    color: white;
}

body.modo-escuro .modal-content {
    background-color: #333;
    color: white;
}

body.modo-escuro h3 {
    text-shadow: 2px 2px 5px white;
}

/* === CAMPOS DE SENHA COM OLHO === */
.senha-container {
    position: relative;
    width: 100%;
}

.senha-container input[type="password"],
.senha-container input[type="text"] {
    width: 250px;
    padding-right: 40px;
}

.senha-container i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #dd6f08;
}

.mensagem-erro {
    background-color: #ffe0e0;
    color: #ff0000;
    padding: 10px;
    border: 1px solid #ff0000;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 14px;
}

/* === RESPONSIVIDADE === */
@media screen and (max-width: 1024px) {
    .produto {
        width: 45%;
    }

    .modal-content {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .image-container, .form-container {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    header {
        margin-top: -50px;
        margin-left: 10px;
    }

    .produto {
        width: 90%;
    }

    h3 {
        font-size: 24px;
        margin-left: 10px;
    }

    button {
        width: 100%;
        height: 40px;
    }

    .senha-container input {
        width: 80%;
    }

    .alinhamento {
        margin: 0 10px !important;
    }
}

@media screen and (max-width: 480px) and (max-height: 825px) {
    h2, h3 {
        font-size: 20px;
    }

    .produto {
        width: 100%;
    }

    .modal-content {
        padding: 10px;
    }
}


.img_logo {
    transition: transform 0.3s ease-in-out;
}

.img_logo:hover {
    transform:scale(1.07);
}

.horario {
    text-align:center; 
    font-weight:bold; 
    color:white; 
    background-color:#333; 
    padding:5px; 
    border-radius:5px;
    font-size: 15px;
}
body.modo-escuro .horario {
    background-color: #555;
}