:root {
    --yellow: #f2b705;
    --orange: #e68a00;
    --black: #111;
}

body {
    margin: 0;
    padding-top: 56px;
    /* o la altura de tu navbar */
}


.navbar {
    background: linear-gradient(90deg, #111, #222);
    border-bottom: 2px solid var(--orange);
}

.navbar .btn {
    padding: 6px 14px;
    font-size: 14px;
}



.hero {
    height: 65vh;
    background:
        linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .75)),
        url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092");
    background-size: cover;
    background-position: center;
}

.hero .container {
    padding-top: 40px;
}

.hero-title {
    font-size: 2.4rem;
}

.section-title {
    color: var(--orange);
    font-weight: 700;
}

.menu-section {
    background: #fafafa;
}

.menu-card {
    background: #fff;
    border: 2px solid var(--yellow);
    border-radius: 14px;
    padding: 15px;
    height: 100%;
}

.menu-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.menu-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.menu-card.highlight {
    background: var(--yellow);
}

.cta {
    background: var(--orange);
}

.footer {
    background: var(--black);
    color: #ccc;
}

/* ===== MENU DINÁMICO MARCA ===== */

.menu-box {
    border: 2px solid var(--yellow);
    padding: 22px 26px;
    margin-bottom: 35px;
    background: #fff;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.menu-title {
    position: absolute;
    top: -16px;
    right: 20px;
    background: var(--orange);
    color: #fff;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 20px;
}

.menu-list {
    margin: 0;
    padding-left: 22px;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--yellow);
    padding: 8px 0;
    font-size: 16px;
}

.menu-list li span:last-child {
    font-weight: 600;
    color: var(--orange);
}

.horario-box {
    border: 2px solid var(--yellow);
    border-radius: 14px;
    background: #fff;
}