:root {
  --brand: #15245A;
  --brand-light: #2447A5;
  --ifood-red: #EA1D2C;
  --ph-red: #C8102E;
  --gold: #FFB800;
  --bg: #ffffff;
  --bg-gray: #f5f6f8;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 2px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(21,36,90,.12);
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  padding-bottom: 80px;
}
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Ticker bar (clima + infos) ── */
.ticker-bar {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 600;
}
.ticker-bar__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ticker-bar__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: 0.55rem 0;
  animation: tickerScroll 40s linear infinite;
}
.ticker-bar__track:hover { animation-play-state: paused; }
.ticker-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  padding-left: 3rem;
}
.ticker-bar__item strong { color: var(--gold); font-weight: 800; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 80px;
}
.logo img { height: 68px; width: auto; }
.logo--footer img { height: 52px; }
.logo__neon {
  height: 64px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(21,36,90,.18);
}
.logo__neon--footer { height: 72px; }

.nav {
  display: flex;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color .2s;
}
.nav a:hover { color: var(--brand); }
.nav-admin {
  color: var(--brand) !important;
  font-weight: 700 !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.header-admin {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  background: #fff;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.header-admin:hover {
  background: var(--brand);
  color: #fff;
}

.header-cta {
  background: var(--ifood-red);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(234,29,44,.3);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,29,44,.4); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: .3s;
}

/* ── Buttons ── */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
  border: none;
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.btn-order--sm { padding: 0.65rem 1.25rem; font-size: 0.85rem; }

.btn-menu {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: var(--brand);
  border: 2px solid var(--brand);
  background: #fff;
  transition: background .2s;
}
.btn-menu:hover { background: var(--bg-gray); }

/* ── Hero ── */
.hero {
  background: #F7F8FC;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 2rem;
  min-height: 700px;
}
.hero__badge {
  display: inline-block;
  background: #FF2E44;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.hero__title-blue {
  display: block;
  color: #162B75;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: #FF2E44;
}
.hero__copy p {
  font-size: 1.05rem;
  color: #5c6478;
  max-width: 460px;
  margin: 0 0 2rem;
  line-height: 1.65;
}
.hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 500px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.hero__btn:hover { transform: translateY(-2px); }
.hero__btn--ifood {
  background: #FF2E44;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 46, 68, 0.3);
}
.hero__btn--ifood:hover { box-shadow: 0 10px 28px rgba(255, 46, 68, 0.4); }
.hero__btn--aiqfome {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}
.hero__btn--aiqfome:hover { box-shadow: 0 10px 28px rgba(124, 58, 237, 0.4); }
.hero__btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.hero__btn--wa:hover { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4); }
.hero__btn--menu {
  background: #fff;
  color: #162B75;
  border-color: #162B75;
  box-shadow: 0 4px 16px rgba(22, 43, 117, 0.08);
}
.hero__btn--menu:hover { background: #f4f6ff; }
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}
.hero__glow {
  position: absolute;
  width: 90%;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 175, 255, 0.35) 0%, rgba(200, 220, 255, 0.15) 50%, transparent 72%);
  z-index: 0;
}
.hero__pizza-ring {
  position: absolute;
  width: 85%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(22, 43, 117, 0.18);
  z-index: 1;
}
.hero__pizza {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 500px;
  filter: drop-shadow(0 28px 48px rgba(22, 43, 117, 0.2));
  animation: heroFloat 5s ease-in-out infinite;
}
.hero__seal {
  position: absolute;
  top: 2%;
  right: 4%;
  z-index: 3;
  width: 130px;
  height: 130px;
  filter: drop-shadow(0 8px 24px rgba(22, 43, 117, 0.25));
  animation: heroFloat 5s ease-in-out infinite 0.6s;
}
.hero__seal-svg {
  width: 100%;
  height: 100%;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.logo__neon {
  height: 64px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(21,36,90,.18);
}
.logo__neon--footer { height: 72px; }

/* ── Categories (iFood chips) ── */
.categories {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 80px;
  z-index: 50;
}
.cat-scroll {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.cat-chip:hover { border-color: var(--brand); color: var(--brand); }
.cat-chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ── Sections ── */
.section { padding: 3.5rem 0; }
.section--gray { background: var(--bg-gray); }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.section-head h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand);
}
.section-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-gray);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}
.section-link {
  color: var(--ifood-red);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.section-link:hover { text-decoration: underline; }

.promo-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

/* ── Promo cards (Pizza Hut) ── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.promo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-card--hot {
  border-color: var(--ph-red);
  background: linear-gradient(160deg, #fff5f5 0%, #fff 60%);
}
.promo-card__badge {
  display: inline-block;
  background: var(--ph-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.promo-card__badge--blue { background: var(--brand); }
.promo-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; color: var(--brand); }
.promo-card p { margin: 0 0 1.25rem; color: var(--text-muted); font-size: 0.9rem; }
.promo-card__btn {
  color: var(--ifood-red);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
}
.promo-card__btn:hover { text-decoration: underline; }

/* ── Product cards (iFood) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card.is-hidden { display: none; }
.product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-gray);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__info { padding: 1rem 1.1rem 1.15rem; }
.product-card__info h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
}
.product-card__info p {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ifood-red);
  background: #fff0f0;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.product-card__add {
  background: var(--brand);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  margin-left: auto;
  transition: background .2s;
}
.product-card__add:hover { background: var(--brand-light); }

/* ── Cardápio teaser (home) ── */
.cardapio-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.cardapio-teaser__copy h3 {
  margin: 0 0 0.65rem;
  font-size: 1.5rem;
  color: var(--brand);
}
.cardapio-teaser__copy p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}
.cardapio-teaser__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.cardapio-teaser__tags span {
  background: var(--bg-gray);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.btn-cardapio-full {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(21,36,90,.25);
  transition: transform .2s, box-shadow .2s;
}
.btn-cardapio-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(21,36,90,.35);
}
.cardapio-teaser__visual img {
  width: min(260px, 35vw);
  filter: drop-shadow(0 12px 28px rgba(21,36,90,.15));
}
@media (max-width: 720px) {
  .cardapio-teaser {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cardapio-teaser__tags { justify-content: center; }
  .cardapio-teaser__visual { display: none; }
}

/* ── Steps (Domino's) ── */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-gray);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}
.step h3 { margin: 0 0 0.35rem; font-size: 1rem; color: var(--brand); }
.step p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
.step__arrow {
  font-size: 1.5rem;
  color: var(--brand-light);
  font-weight: 700;
  align-self: center;
  padding-top: 1.5rem;
}

/* ── About ── */
.about-block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-block__text h2 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand);
}
.about-block__text p {
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  font-size: 1rem;
}
.btn-missao {
  margin-top: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 2px solid var(--brand);
  background: transparent;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.btn-missao:hover { background: var(--brand); color: #fff; }
.btn-missao--fill {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  margin-top: 0.5rem;
}
.btn-missao--fill:hover { background: var(--brand-light); }
.about-block__stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
}
.stat span { font-size: 0.85rem; color: var(--text-muted); }

/* ── Store cards (iFood) ── */
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.store-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.store-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}
.store-card__head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
}
.store-card__open {
  font-size: 0.72rem;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.store-card__addr {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.store-card__meta {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Footer ── */
.footer {
  background: var(--brand);
  color: rgba(255,255,255,.8);
  padding: 2.5rem 0;
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.footer__links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer__links a:hover { color: #fff; }
.footer__admin {
  font-weight: 600 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__legal {
  width: 100%;
  margin: 0;
}
.footer__copy,
.footer__dev {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
}
.footer__dev {
  margin-top: 0.35rem;
}
.footer__dev a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer__dev a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ── Mobile sticky bar (iFood) ── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.65rem 0.75rem;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  gap: 0.5rem;
}
.mobile-bar__btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  color: #fff;
}
.mobile-bar__btn--ifood { background: var(--ifood-red); }
.mobile-bar__btn--aiqfome { background: #7c3aed; }
.mobile-bar__btn--wa { background: #25d366; }


/* ── Platform buttons (iFood / Aiqfome) ── */
.btn-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  transition: transform .2s, box-shadow .2s;
}
.btn-platform:hover { transform: translateY(-2px); }
.btn-platform--sm { padding: 0.6rem 1rem; font-size: 0.82rem; }
.btn-platform--ifood {
  background: var(--ifood-red);
  box-shadow: 0 4px 20px rgba(234,29,44,.35);
}
.btn-platform--ifood:hover { box-shadow: 0 8px 28px rgba(234,29,44,.45); }
.btn-platform--aiqfome {
  background: #7c3aed;
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.btn-platform--aiqfome:hover { box-shadow: 0 8px 28px rgba(124,58,237,.45); }

.section--apps { padding-top: 2rem; }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.app-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.app-card__logo {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.85rem;
  width: fit-content;
}
.app-card--ifood .app-card__logo { background: rgba(234,29,44,.12); color: var(--ifood-red); }
.app-card--aiqfome .app-card__logo { background: rgba(124,58,237,.12); color: #7c3aed; }
.app-card--wa .app-card__logo { background: rgba(37,211,102,.12); color: #25d366; }
.app-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; color: var(--brand); }
.app-card p { margin: 0 0 1rem; font-size: 0.88rem; color: var(--text-muted); flex: 1; }
.app-card__cta { font-weight: 700; font-size: 0.88rem; color: var(--brand); }
.section-links { display: flex; gap: 1rem; }
.store-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
/* ── Modal Missão & Valores ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 36, 90, 0.55);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.97);
  transition: transform .25s;
}
.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg-gray);
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}
.modal__close:hover { background: var(--border); color: var(--brand); }
.modal__logo {
  display: block;
  margin: 0 auto 1rem;
  height: 80px;
  width: auto;
  border-radius: 12px;
}
.modal h2 {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
}
.modal__intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}
.modal__block {
  background: var(--bg-gray);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}
.modal__block--purpose {
  background: linear-gradient(135deg, rgba(21,36,90,.08), rgba(36,71,165,.06));
  border: 1px solid rgba(21,36,90,.1);
}
.modal__block h3 {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-light);
}
.modal__block p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.modal__values {
  margin: 0;
  padding: 0;
  list-style: none;
}
.modal__values li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.modal__values li:last-child { border-bottom: none; }
.modal__values strong { color: var(--brand); }
body.modal-open { overflow: hidden; }

/* ── Login ── */
.ip-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--bg-gray);
}
.ip-login__card {
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
}
.ip-login__card h1 { font-size: 1.25rem; margin: 1rem 0; color: var(--brand); text-align: center; }
.ip-login label { display: block; margin-bottom: 1rem; font-size: 0.9rem; font-weight: 600; }
.ip-login input {
  display: block; width: 100%; margin-top: 0.35rem;
  padding: 0.65rem 0.75rem; border: 1px solid var(--border);
  border-radius: 8px; background: #fff;
}
.ip-erro { color: var(--ifood-red); font-size: 0.9rem; text-align: center; }
.ip-back { display: inline-block; margin-top: 1rem; color: var(--text-muted); text-decoration: none; }
.ip-logo--center { display: flex; justify-content: center; margin-bottom: 0.75rem; }
.ip-logo__img { height: 96px; width: auto; }
.btn-primary {
  background: var(--brand); color: #fff; padding: 0.65rem 1.25rem;
  border-radius: 999px; font-weight: 700; border: none; cursor: pointer;
}
.btn-sm { font-size: 0.85rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    gap: 2.5rem;
  }
  .hero__copy { order: 1; }
  .hero__copy p { margin-left: auto; margin-right: auto; }
  .hero__actions {
    margin-left: auto;
    margin-right: auto;
    max-width: 440px;
  }
  .hero__visual {
    order: 2;
    min-height: 380px;
  }
  .hero__pizza { max-width: 340px; }
  .hero__seal {
    width: 110px;
    height: 110px;
    right: 8%;
  }
  .promo-grid, .store-grid, .about-block, .apps-grid { grid-template-columns: 1fr; }
  .step__arrow { display: none; }
  .logo img, .logo__neon { height: 56px; }
}

@media (max-width: 640px) {
  .hero { padding: 1.5rem 0 2.5rem; }
  .hero__actions {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .hero__btn {
    font-size: 16px;
    width: 100%;
  }
  .hero__visual { min-height: 300px; }
  .hero__pizza { max-width: 280px; }
  .hero__seal {
    width: 96px;
    height: 96px;
    top: 0;
    right: 2%;
  }
}

@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .mobile-bar { display: flex; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    margin-left: 0;
  }
  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .categories { top: 80px; }
  .footer__links { margin-left: 0; width: 100%; }
}
