h1 {
    color: var(--cor-laranja);
}


body.app-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.container {
    padding: 10px;
    background-color: var(--cor-fundo-pagina);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.layout-wrapper {
    display: flex;
    flex: 1;
    width: 100%;
    margin-top: 70px;
}


.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.suggestion-card {
    background-color: var(--cor-fundo-pagina);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

.suggestion-card h3 {
    margin: 0;
    color: var(--cor-texto-principal);
}

.ingredientes-title {
    margin-top: 10px;
    font-size: 14px;
    color: var(--cor-texto-secundario);
}

.suggestion-card ul {
    margin: 8px 0 0 16px;
    padding: 0;
    color: var(--cor-texto-principal);
}


.pratos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.prato-card {
    background-color: var(--cor-fundo-card);
    border-radius: 12px;
    width: 350px;
    padding: 20px;
    box-shadow: var(--sombra-card);
    text-align: center;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.prato-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.btn-olho {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
}

.btn-olho:hover {
    transform: scale(1.1);
}

.modal-prato {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 20px;
    border-radius: 12px;
}

.modal-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-close {
    background: var(--cor-laranja);
    border: none;
    padding: 10px 16px;
    margin-top: 15px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}


.prato-card h3 {
    margin: 0;
    font-size: 18px;
    color: var(--cor-texto-principal);
}

.prato-card .preco {
    margin-top: 8px;
    font-size: 16px;
    color: var(--cor-texto-secundario);
}

.btn-prato {
    margin-top: 12px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background-color: var(--cor-laranja);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-prato:hover {
    opacity: 0.9;
}

.modal-modern {
    border: none;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-header-clean {
    border-bottom: none;
    padding: 24px 24px 10px;
}

.modal-body-clean {
    padding: 0 24px 24px;
}

.dish-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#dishImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#dishImg:hover {
    transform: scale(1.05);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2ecc71;
    display: flex;
    align-items: center;
    gap: 5px;
}

#dishIngredients {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#dishIngredients li {
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #9ca3af;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}