/* INDEX — 194 SUSHI */
:root{
    --background:#0f0f0f;
    --surface:rgba(22,22,22,.82);
    --surface-hover:rgba(34,34,34,.95);

    --primary:#B41217;      /* vermelho 194 */
    --primary-hover:#D11D24;

    --white:#FFFFFF;
    --gray:#B8B8B8;
    --border:rgba(255,255,255,.08);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{min-width:320px;min-height:100vh;background:var(--background);color:var(--white);font-family:"DM Sans",sans-serif}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.landing-page{position:relative;min-height:100svh;padding:48px 24px 30px;display:grid;place-items:center;overflow:hidden;isolation:isolate}
.background-image,.background-overlay{position:fixed;inset:0;z-index:-2}
.background-image{background:url("../images/bg-menu.jpg") center/cover no-repeat;transform:scale(1.03)}
.background-overlay{z-index:-1;background:radial-gradient(circle at 50% 12%,rgba(212,175,55,.12),transparent 32%),linear-gradient(180deg,rgba(8,8,8,.67) 0%,rgba(8,8,8,.88) 55%,rgba(8,8,8,.97) 100%)}
.landing-content{width:min(100%,940px);display:flex;flex-direction:column;align-items:center}
.brand-area{margin-bottom:38px;text-align:center}
.brand-logo{width:min(260px,68vw);margin:0 auto 26px}
.brand-kicker{margin-bottom:12px;color:var(--gold);font-size:12px;font-weight:700;letter-spacing:4px;text-transform:uppercase}
.brand-area h1{margin-bottom:13px;font-family:"Forum",serif;font-size:clamp(42px,6vw,68px);font-weight:400;line-height:.98;letter-spacing:-1px}
.brand-description{width:min(100%,510px);margin:0 auto;color:var(--muted);font-size:16px;line-height:1.6}
.menu-grid{width:100%;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.menu-card{min-height:154px;padding:24px;display:grid;grid-template-columns:52px minmax(0,1fr) 36px;align-items:center;gap:18px;border:1px solid var(--border);border-radius:22px;background:var(--surface);box-shadow:var(--shadow);backdrop-filter:blur(14px);transition:transform .25s,border-color .25s,background .25s}
.menu-card:hover{transform:translateY(-4px);border-color:rgba(212,175,55,.55);background:var(--surface-hover)}
.menu-card-featured{border-color:rgba(159,17,17,.72);background:linear-gradient(135deg,rgba(159,17,17,.22),rgba(24,24,24,.86))}
.menu-icon{width:52px;height:52px;display:grid;place-items:center;border:1px solid rgba(212,175,55,.32);border-radius:16px;background:rgba(212,175,55,.08);color:var(--gold)}
.menu-icon svg{width:24px;height:24px;stroke-width:1.7}
.menu-copy{min-width:0;display:flex;flex-direction:column;align-items:flex-start}
.menu-copy small{margin-bottom:5px;color:var(--gold-light);font-size:11px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase}
.menu-copy strong{margin-bottom:7px;font-family:"Forum",serif;font-size:27px;font-weight:400;line-height:1}
.menu-copy>span{color:var(--muted);font-size:13px;line-height:1.45}
.menu-arrow{width:36px;height:36px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.06);color:var(--white);transition:background .25s,color .25s,transform .25s}
.menu-card:hover .menu-arrow{background:var(--gold);color:#151515;transform:rotate(5deg)}
.menu-arrow svg{width:17px;height:17px}
.landing-footer{margin-top:26px;display:flex;align-items:center;justify-content:center;gap:17px;color:#d0d0d0;font-size:13px}
.footer-link{display:inline-flex;align-items:center;gap:7px;transition:color .2s}
.footer-link:hover{color:var(--gold)}
.footer-link svg{width:17px;height:17px}
.footer-divider{width:1px;height:18px;background:var(--border)}
@media(max-width:720px){
  .landing-page{padding:34px 18px 24px;align-items:start}
  .brand-area{margin-bottom:28px}
  .brand-logo{width:min(220px,66vw);margin-bottom:22px}
  .brand-area h1{font-size:clamp(39px,12vw,55px)}
  .brand-description{font-size:15px}
  .menu-grid{grid-template-columns:1fr;gap:11px}
  .menu-card{min-height:124px;padding:19px;grid-template-columns:46px minmax(0,1fr) 32px;gap:14px;border-radius:19px}
  .menu-icon{width:46px;height:46px;border-radius:14px}
  .menu-copy strong{font-size:24px}
  .menu-copy>span{font-size:12px}
  .menu-arrow{width:32px;height:32px}
  .landing-footer{margin-top:24px;flex-direction:column;gap:12px}
  .footer-divider{display:none}
}
@media(max-width:390px){
  .landing-page{padding-inline:14px}
  .menu-card{padding:17px 15px;grid-template-columns:42px minmax(0,1fr) 28px;gap:11px}
  .menu-icon{width:42px;height:42px}
  .menu-copy strong{font-size:22px}
}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important}}
