/* RODÍZIO SEM FOTOS — 194 SUSHI */
:root {
    --background: #111111;
    --surface: #191919;
    --surface-light: #222222;
    --red: #b51218;
    --red-hover: #d01a21;
    --white: #ffffff;
    --muted: #aaaaaa;
    --border: rgba(255, 255, 255, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 118px;
}

body {
    min-width: 320px;
    background: var(--background);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 86px;
    padding: 0 clamp(20px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(17, 17, 17, 0.91);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(15px);
}

.brand img {
    width: 170px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dddddd;
    font-size: 14px;
}

.back-link svg {
    width: 18px;
}

main {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

.hero {
    min-height: 490px;
    padding: 80px 0 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--red-hover);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1,
.menu-heading h2,
.info-banner h2 {
    font-family: "Forum", serif;
    font-weight: 400;
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 20px;
    font-size: clamp(56px, 8vw, 94px);
    line-height: 0.93;
}

.hero-copy > p:last-child {
    max-width: 630px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.price-panel {
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.price-card {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--border);
}

.price-card span {
    color: #cccccc;
    font-size: 14px;
}

.price-card strong {
    font-size: 25px;
}

.price-card.featured strong {
    color: var(--red-hover);
}

.reserve-button {
    min-height: 54px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    background: var(--red);
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.reserve-button:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
}

.reserve-button svg {
    width: 20px;
}

.category-nav {
    position: sticky;
    top: 86px;
    z-index: 900;
    margin: 0 calc(50% - 50vw);
    padding: 14px max(20px, calc((100vw - 1180px) / 2));
    display: flex;
    gap: 10px;
    overflow-x: auto;
    background: rgba(17, 17, 17, 0.94);
    border-block: 1px solid var(--border);
    backdrop-filter: blur(15px);
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav a {
    flex: 0 0 auto;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #dddddd;
    font-size: 13px;
    transition: background 0.2s, border-color 0.2s;
}

.category-nav a:hover {
    background: var(--red);
    border-color: var(--red);
}

.menu-heading {
    padding: 100px 0 52px;
    text-align: center;
}

.menu-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(45px, 7vw, 72px);
}

.menu-heading > p:last-child {
    color: var(--muted);
}

.menu-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.section-title {
    margin-bottom: 34px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.section-title > span {
    color: var(--red-hover);
    font-family: "Forum", serif;
    font-size: 26px;
}

.section-title p {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-family: "Forum", serif;
    font-size: 43px;
    font-weight: 400;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 70px;
}

.menu-item {
    min-height: 112px;
    padding: 23px 0;
    border-bottom: 1px solid var(--border);
}

.menu-item h3 {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-item p {
    max-width: 500px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.info-banner {
    margin: 70px 0 90px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 24px;
    background: var(--red);
}

.info-banner .eyebrow {
    color: #ffffff;
    opacity: 0.72;
}

.info-banner h2 {
    margin-bottom: 8px;
    font-size: 43px;
}

.info-banner p:last-child {
    color: rgba(255, 255, 255, 0.80);
}

.info-banner > a {
    min-width: 225px;
    min-height: 52px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    background: #ffffff;
    color: #171717;
    font-weight: 700;
}

.info-banner svg {
    width: 18px;
}

.site-footer {
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}

.site-footer img {
    width: 145px;
}

@media (max-width: 820px) {
    .hero {
        padding-top: 56px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .price-panel {
        width: 100%;
    }

    .menu-list {
        grid-template-columns: 1fr;
    }

    .info-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .info-banner > a {
        width: 100%;
    }
}

@media (max-width: 520px) {
    main {
        width: min(100% - 32px, 1180px);
    }

    .site-header {
        height: 72px;
        padding-inline: 16px;
    }

    .brand img {
        width: 135px;
    }

    .back-link {
        font-size: 0;
    }

    .back-link svg {
        width: 22px;
    }

    .category-nav {
        top: 72px;
        padding-inline: 16px;
    }

    .hero {
        min-height: auto;
        padding: 48px 0;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-copy > p:last-child {
        font-size: 15px;
    }

    .price-card {
        padding-inline: 14px;
    }

    .price-card strong {
        font-size: 21px;
    }

    .menu-heading {
        padding-top: 78px;
    }

    .menu-section {
        padding: 47px 0;
    }

    .section-title h2 {
        font-size: 37px;
    }

    .info-banner {
        margin-bottom: 55px;
        padding: 27px 22px;
    }

    .info-banner h2 {
        font-size: 36px;
    }
}


/* AJUSTES EXCLUSIVOS DO À LA CARTE */
.hero {
    min-height: 420px;
}

.hero .price-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card {
    padding: 21px 22px;
    border-bottom: 1px solid var(--border);
}

.service-card:last-of-type {
    border-bottom: 0;
}

.service-card span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.service-card strong {
    font-size: 17px;
    line-height: 1.5;
}

.menu-item {
    position: relative;
    padding-right: 105px;
}

.menu-item h3 {
    max-width: calc(100% - 5px);
}

.menu-price {
    position: absolute;
    top: 23px;
    right: 0;
    color: var(--red-hover);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .menu-item {
        padding-right: 0;
    }

    .menu-price {
        position: static;
        display: block;
        margin-top: 10px;
    }
}
