/* ================================================
   MINNA SAN SUSHI — Stylesheet
   Restaurante oriental · Nilópolis, RJ
   ================================================ */

/* Tipografia alinhada às artes do Minna San: display bold arredondada + texto neutro */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Paleta oficial, tirada das artes do Minna San */
  --brand:        #E11B64;   /* magenta — fundo e cor principal */
  --brand-dark:   #B81250;
  --brand-soft:   #FDEBF2;
  --plum:         #3E1239;   /* roxo ameixa — cartões e seções escuras */
  --plum-light:   #55204F;
  --yellow:       #FDC700;   /* amarelo — destaques e preços */
  --cyan:         #2BA9E0;
  --ink:          #3E1239;   /* texto escuro = ameixa da marca */
  --ink-soft:     #6E5E6B;
  --line:         #EAE2E8;
  --white:        #FFFFFF;
  --cream:        #FDF7FA;
  --gold:         #E8A93C;
  --radius:       14px;
  --transition:   .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--ink); font-family: 'Poppins', sans-serif; line-height: 1.75; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Tipografia ---- */
.display, h1, h2, .menu-card h3, .value-card h3 {
  font-family: 'Fredoka', 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
h3 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 600; letter-spacing: .01em; line-height: 1.4; }
p  { color: var(--ink-soft); font-size: .97rem; }

.eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--brand);
  margin-bottom: .9rem;
}
.eyebrow.light { color: rgba(255,255,255,.85); }

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6.5rem 0; }

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.9rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn .arrow {
  width: 19px; height: 19px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: .6rem;
  line-height: 1;
  transition: transform var(--transition);
}
.btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-light { border-color: var(--white); color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--ink); }

.btn-brand { background: var(--brand); border-color: var(--brand); color: var(--white); }
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: var(--white); }

.btn-sm { padding: .7rem 1.3rem; font-size: .7rem; gap: .6rem; }


/* ---- Cabeçalho de seção ---- */
.section-head { margin-bottom: 3.5rem; max-width: 640px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 1.2rem; }
.section-head p { font-size: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo-img { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links > a:not(.btn) {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  position: relative; padding: .4rem 0; color: var(--ink);
}
.nav-links > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--brand); transition: width var(--transition);
}
.nav-links > a:not(.btn):hover::after, .nav-links > a.active::after { width: 100%; }
.nav-links > a.active { color: var(--brand); }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle-label span { display: block; width: 24px; height: 2px; background: var(--ink); transition: var(--transition); }

/* ============================================================
   HERO — foto full-bleed
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 7rem 0;
  background: var(--plum);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(62,18,57,.72) 0%, rgba(62,18,57,.55) 45%, rgba(62,18,57,.85) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 0 2rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.6rem; }
.hero-content > p { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.6rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(62,18,57,.42);
  backdrop-filter: blur(6px);
}
.hero-meta .container { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; padding-top: 1.1rem; padding-bottom: 1.1rem; }
.hero-meta span { color: rgba(255,255,255,.85); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; display: flex; align-items: center; gap: .55rem; }
.hero-meta .stars { color: var(--yellow); letter-spacing: 1px; }

/* ============================================================
   SPLIT (texto + foto com bloco deslocado)
   ============================================================ */
.split-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; position: relative; z-index: 2; }
.split-media::after {
  content: ''; position: absolute;
  inset: 20px -20px -20px 20px;
  background: var(--brand);
  border-radius: var(--radius);
  z-index: 1;
}
.split.reverse .split-media { order: -1; }
.split.reverse .split-media::after { inset: 20px 20px -20px -20px; }
.split-body p { margin-bottom: 1.1rem; }
.split-body .btn { margin-top: 1.6rem; }

/* ============================================================
   FAIXA COLORIDA (cardápios)
   ============================================================ */
.band-brand {
  background: var(--brand);
  position: relative;
  overflow: hidden;
}
.band-brand::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,.10) 0 90px, transparent 91px),
    radial-gradient(circle at 78% 68%, rgba(255,255,255,.08) 0 140px, transparent 141px),
    radial-gradient(circle at 45% 92%, rgba(255,255,255,.07) 0 110px, transparent 111px),
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.09) 0 70px, transparent 71px);
}
.band-brand .container { position: relative; z-index: 2; }
.band-brand h2, .band-brand h3 { color: var(--white); }
.band-brand p { color: rgba(255,255,255,.88); }

/* cards de serviço dentro da faixa */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.service-card {
  background: var(--plum);
  border: none;
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  display: flex; flex-direction: column;
  transition: background var(--transition), border-color var(--transition);
}
.service-card:hover { background: var(--plum-light); transform: translateY(-4px); }
.service-card .num { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 2.1rem; color: var(--yellow); line-height: 1; margin-bottom: .8rem; }
.service-card h3 { margin-bottom: .7rem; }
.service-card p { font-size: .88rem; margin-bottom: 1.4rem; }
.service-card ul { display: grid; gap: .45rem; margin-bottom: 1.8rem; }
.service-card li { font-size: .85rem; color: rgba(255,255,255,.85); display: flex; gap: .6rem; }
.service-card li::before { content: '—'; opacity: .6; }
.service-card .btn { margin-top: auto; align-self: flex-start; }
.band-note { margin-top: 2.4rem; font-size: .85rem; color: rgba(255,255,255,.85); text-align: center; }

/* ============================================================
   DIFERENCIAIS (colunas simples sobre branco)
   ============================================================ */
.pillars { background: var(--cream); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 3rem 2.5rem; }
.pillar { text-align: center; }
.pillar .icon { font-size: 1.9rem; margin-bottom: 1rem; }
.pillar h3 { margin-bottom: .6rem; }
.pillar p { font-size: .88rem; }

/* ============================================================
   FAIXA ESCURA COM FOTO
   ============================================================ */
.band-photo { position: relative; padding: 8rem 0; overflow: hidden; }
.band-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(62,18,57,.55) 0%, rgba(62,18,57,.88) 65%); }
.band-photo .container { position: relative; z-index: 2; }
.band-photo .inner { max-width: 540px; margin-left: auto; text-align: right; }
.band-photo h2 { color: var(--white); margin-bottom: 1.2rem; }
.band-photo p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* ============================================================
   GALERIA (tira vertical)
   ============================================================ */
.gallery { padding-bottom: 6.5rem; }
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.gallery-strip a { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; position: relative; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-strip a:hover img { transform: scale(1.06); }

/* ============================================================
   PROVA SOCIAL
   ============================================================ */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 2.9rem; font-weight: 600; color: var(--brand); line-height: 1; }
.stat span { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 2rem; margin-top: 3.5rem; }
.review-card { border-left: 2px solid var(--brand); padding: .3rem 0 .3rem 1.6rem; }
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: .85rem; margin-bottom: .7rem; }
.review-card p { font-style: italic; font-size: .93rem; margin-bottom: 1rem; }
.review-card cite { font-style: normal; font-weight: 600; font-size: .8rem; }
.review-card cite small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .72rem; letter-spacing: .06em; }

/* ============================================================
   PÁGINAS INTERNAS
   ============================================================ */
.page-header { background: var(--plum); padding: 5.5rem 0 5rem; text-align: center; }
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,.65); max-width: 560px; margin: 1rem auto 0; }
.breadcrumb { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--brand); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; }
.value-card h3 { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.3rem; text-transform: uppercase; color: var(--brand); margin-bottom: .7rem; }
.value-card p { font-size: .9rem; }

/* ---- Contato ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.contact-list { display: grid; gap: 1.6rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-item .ci-icon { flex-shrink: 0; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 1rem; }
.contact-item h4 { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: .2rem; }
.contact-item p, .contact-item a { font-size: .95rem; color: var(--ink); }
.contact-item a:hover { color: var(--brand); }
.map-wrap { border-radius: var(--radius); overflow: hidden; min-height: 460px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.4rem; }
.hours-table td { padding: .85rem 0; font-size: .92rem; border-bottom: 1px solid var(--line); }
.hours-table td:first-child { font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }

/* ---- Texto legal ---- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 2.8rem 0 1rem; }
.prose h2:first-of-type { margin-top: 0; }
.prose p { margin-bottom: 1.1rem; font-size: .94rem; }
.prose ul { margin-bottom: 1.4rem; display: grid; gap: .55rem; }
.prose li { font-size: .94rem; color: var(--ink-soft); display: flex; gap: .7rem; }
.prose li::before { content: '—'; color: var(--brand); }
.prose .updated { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 2.5rem; }
.prose a { color: var(--brand); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--plum); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 3rem; padding: 5rem 0 3rem; }
.footer-brand .logo-img { height: 66px; margin-bottom: 1.4rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .89rem; }
.footer-brand .cnpj { font-size: .76rem; color: rgba(255,255,255,.32); margin-top: 1rem; }
.footer-col h5 { font-family: 'Fredoka', sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-bottom: 1.3rem; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { font-size: .87rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--brand); }
.contact-line { display: flex; gap: .7rem; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: .85rem; }
.contact-line span:first-child { flex-shrink: 0; opacity: .7; }
.social-row { display: flex; gap: .7rem; margin-top: 1.6rem; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center; transition: var(--transition); }
.social-row a:hover { background: var(--brand); border-color: var(--brand); }
.social-row svg { width: 16px; height: 16px; fill: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.6rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .76rem; color: rgba(255,255,255,.38);
}
.footer-bottom a:hover { color: var(--brand); }


/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .split-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .split.reverse .split-media { order: 0; }
  .split-media::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .band-photo .inner { margin: 0; text-align: left; }
  .band-photo::after { background: linear-gradient(180deg, rgba(62,18,57,.6) 0%, rgba(62,18,57,.85) 100%); }
}

@media (max-width: 860px) {
  .nav-toggle-label { display: flex; }
  .nav-links {
    position: absolute; top: 84px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0 2rem; max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle:checked ~ .nav-links { max-height: 400px; padding: 1rem 2rem 1.8rem; }
  .nav-links > a:not(.btn) { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 1.2rem; justify-content: center; }

  section { padding: 4.5rem 0; }
  .hero { min-height: 78vh; }
  .hero-meta .container { gap: 1.5rem; }
  .band-photo { padding: 5rem 0; }
}

@media (max-width: 560px) {
  .container { padding: 0 1.4rem; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-meta { position: static; background: var(--ink); }
}

/* ---- Tabela de preços do rodízio (dentro do card) ---- */
.price-lead {
  background: var(--white);
  border-radius: 10px;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap;
}
.price-lead b { font-family: 'Fredoka', sans-serif; font-size: 2rem; font-weight: 600; color: var(--plum); line-height: 1; }
.price-lead .from { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); font-weight: 600; width: 100%; }
.price-lead .cond { font-size: .7rem; color: var(--ink-soft); }

.price-rows { display: grid; gap: 0; margin-bottom: 1.4rem; }
.price-rows div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.22);
  font-size: .84rem; color: rgba(255,255,255,.85);
}
.price-rows div:last-child { border-bottom: none; }
.price-rows b { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--yellow); }

/* ---- Faixa de promoção ---- */
.promo {
  margin-top: 2.6rem;
  background: var(--plum);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  text-align: center;
}
.promo h3 {
  font-family: 'Fredoka', sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.3rem,2.6vw,1.9rem); color: var(--white); margin-bottom: .3rem;
}
.promo h3 em { font-style: normal; color: var(--yellow); }
.promo .big { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: clamp(2.4rem,6vw,3.6rem); color: var(--white); line-height: 1; margin: .5rem 0; }
.promo .big span { font-size: .45em; }
.promo .terms { font-size: .78rem; color: rgba(255,255,255,.72); margin-top: .6rem; }
.promo .terms b { color: var(--yellow); font-weight: 600; }

