* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-image: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiD_ZNG24cpI4NjOiwHMU3DyPqoj5hTUwsgQRBMV8BPciu4On1lLGfu__8XtN6rwNTgKuPK5vytMunxACeZAQrI1GA01xCGQLvClsGF3GeW2-o5TQd-fYHdiPqay1HhXKBPf1kVt-5t2B0/s1600/image.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.header-content {
    position: relative;
    z-index: 1;
}

.logo-circle {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 90px;
    height: auto;
}

.header-text {
    color: white;
}

.cardapio-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-top: 5px;
}

.header-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.icon-link {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: #1424fc;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#search-input {
    padding: 8px;
    border: 2px solid #1424fc;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    width: 150px;
}

#search-button {
    background-color: #1424fc;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#search-button:hover {
    background-color: #0f1cb0;
}

.main-content {
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

.menu-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1424fc;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cardapio-container {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.cardapio-container li {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #1424fc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cardapio-container li:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.item-details {
    flex: 1;
}

.item-details strong {
    font-size: 1.3rem;
    color: #1424fc;
    display: block;
    margin-bottom: 5px;
}

.item-details p {
    color: #555;
    font-size: 0.9rem;
    margin: 5px 0;
    font-style: italic;
}

.item-details span {
    color: #1424fc;
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    order: 2;
}

.footer {
    background: #1424fc;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .header {
        padding: 15px;
    }

    .logo-circle {
        width: 80px;
        height: 80px;
    }

    .cardapio-text {
        font-size: 1.8rem;
    }

    .subtitulo {
        font-size: 0.9rem;
    }

    .header-icons {
        gap: 10px;
    }

    .icon-link {
        font-size: 1rem;
    }

    #search-input {
        width: 120px;
        font-size: 0.9rem;
    }

    #search-button {
        padding: 6px 10px;
    }

    .menu-section h2 {
        font-size: 1.5rem;
    }

    .cardapio-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .item-details strong {
        font-size: 1.2rem;
    }

    .item-details p {
        font-size: 0.8rem;
    }

    .item-details span {
        font-size: 1rem;
    }

    .item-image {
        width: 70px;
        height: 70px;
    }
}

/* Efeito de Pulsação */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 1.5s infinite;
}

/* Tela de Loading */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.active {
    opacity: 1;
    visibility: visible;
}

.loading-screen img {
    width: 300px;
    height: 300px;
}

/* Estilos para o formulário de feedback */
.feedback-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
    border: 2px solid #1424fc;
}

.feedback-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1424fc;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #1424fc;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: #0f1cb0;
}

.feedback-form textarea {
    resize: vertical;
    min-height: 100px;
}

.feedback-form button {
    width: 100%;
    padding: 10px;
    background-color: #1424fc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feedback-form button:hover {
    background-color: #0f1cb0;
}