/* Patropi Lanches — site institucional
   Paleta: base quente (bege/creme) + vermelho institucional + amarelo de destaque
   Inspiração: lanchonete tradicional/americana, mantendo o Patropi moderno e limpo
   Tipografia: Poppins (display) + Inter (texto) — carregadas via <link> no <head> de cada página */

:root {
  --red: #e30613;
  --red-dark: #a90812;
  --red-light: #ff4550;
  --yellow: #fecc00;
  --yellow-dark: #e0b400;
  --white: #ffffff;
  --bg: #f5e9d8;
  --bg-secondary: #fff3e3;
  --surface: #fff9f0;
  --footer-wine: #2a1012;
  --ifood-red: #ea1d2c;
  --ifood-red-dark: #c8101e;

  --ink: #241717;
  --ink-soft: rgba(36, 23, 23, 0.66);
  --paper-soft: rgba(255, 255, 255, 0.82);
  --line: rgba(36, 23, 23, 0.12);
  --line-on-red: rgba(255, 255, 255, 0.22);

  --cream-light: #fbf3e1;
  --brush-a: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cpath fill='%23FECC00' d='M320,40 C370,70 390,140 360,190 C330,240 250,270 180,255 C110,240 50,200 40,140 C30,80 80,30 150,20 C220,10 270,10 320,40 Z'/%3E%3C/svg%3E");
  --brush-b: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 200'%3E%3Cpath fill='%23FECC00' d='M10,120 C40,60 120,20 220,30 C320,40 420,60 480,110 C440,160 340,180 240,175 C140,170 40,180 10,120 Z'/%3E%3C/svg%3E");

  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --header-h: 76px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, p {
  margin: 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Foco de teclado visível */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--red-dark);
  outline-offset: 2px;
}

/* ---------- Botões ---------- */
.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
  box-shadow: 0 8px 20px rgba(254, 204, 0, 0.32);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  box-shadow: 0 14px 28px rgba(254, 204, 0, 0.42);
}

.btn-secondary {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-secondary:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-ifood,
.btn-99food,
.btn-direto {
  min-width: 124px;
}

.nav-links .btn-cta {
  min-width: unset;
}

/* Delivery Patropi: sempre o CTA principal da hierarquia de pedido */
.btn-direto {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(227, 6, 19, 0.28);
}

.btn-direto:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* iFood: secundário, fundo branco, identidade vermelha */
.btn-ifood {
  background: var(--white);
  color: var(--ifood-red);
  border-color: rgba(36, 23, 23, 0.12);
  box-shadow: 0 6px 16px rgba(36, 23, 23, 0.12);
}

.btn-ifood:hover {
  background: #f5f0e8;
}

/* 99Food: secundário, fundo amarelo, texto escuro + borda para não sumir sobre fundos amarelos */
.btn-99food {
  background: var(--yellow);
  color: #141414;
  border: 2px solid rgba(36, 23, 23, 0.22);
  box-shadow: 0 6px 16px rgba(36, 23, 23, 0.12);
}

.btn-99food:hover {
  background: var(--yellow-dark);
}

.cta-row-order .btn {
  padding: 20px 42px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 16.5px;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 13px;
  min-width: 104px;
}

/* ---------- CTA de pedido (hierarquia: Patropi > iFood > 99Food) ---------- */
.order-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.order-cta-secondary-label {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.order-cta-secondary {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.order-cta-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.order-benefit {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 300px;
  line-height: 1.45;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
  border-bottom: 1px solid var(--red-dark);
  height: var(--header-h);
}

.site-header .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  height: 48px;
  width: auto;
  border-radius: 10px;
  background: var(--bg-secondary);
  padding: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  padding: 10px 12px;
  border-radius: 999px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-links a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--yellow);
}

.nav-links a[aria-current="page"]:not(.btn) {
  background: var(--yellow);
  color: var(--ink);
}

.nav-links .btn {
  margin-left: 8px;
  padding: 11px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--white);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -8px;
}

.nav-toggle span::after {
  position: absolute;
  top: 8px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--white);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--white);
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--red);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }

  .nav-links.is-open {
    max-height: 420px;
  }

  .nav-links a {
    padding: 16px 20px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-links .btn {
    margin: 14px 20px;
  }
}

/* ---------- Popover "Pedir Agora" (header desktop + folha mobile) ---------- */
.order-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36, 23, 23, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
  z-index: 140;
}

body.order-open .order-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.order-popover {
  position: fixed;
  top: calc(var(--header-h) + 10px);
  right: max(20px, calc((100vw - var(--container)) / 2 + 20px));
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

body.order-open .order-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.order-popover-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: var(--ink);
  margin-bottom: 16px;
}

.order-popover .btn-direto {
  margin-bottom: 8px;
}

.order-popover .order-benefit {
  margin: 0 auto 4px;
}

@media (max-width: 900px) {
  .order-popover {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
    padding: 22px 20px calc(22px + env(safe-area-inset-bottom));
    transform: translateY(100%);
  }

  body.order-open .order-popover {
    transform: translateY(0);
  }
}

/* ---------- Barra fixa "Pedir Agora" (mobile) ---------- */
.mobile-order-bar {
  display: none;
}

@media (max-width: 900px) {
  .mobile-order-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 130;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

/* ---------- Hero (Home): duas colunas, texto + imagem grande ---------- */
.hero {
  position: relative;
  background: var(--cream-light);
  padding: 76px 0 96px;
  overflow: hidden;
}

/* Campo orgânico grande, atrás de texto e foto — não é mais um único círculo solto */
.hero::before {
  content: "";
  position: absolute;
  inset: -15% -10% -5% -10%;
  background:
    radial-gradient(46% 60% at 78% 28%, rgba(254, 204, 0, 0.4) 0%, rgba(254, 204, 0, 0) 72%),
    radial-gradient(40% 46% at 20% 85%, rgba(227, 6, 19, 0.06) 0%, rgba(227, 6, 19, 0) 70%),
    radial-gradient(70% 60% at 50% 0%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -90px;
  width: 520px;
  height: 400px;
  background-image: var(--brush-a);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 480px) 1fr;
  align-items: center;
  gap: 40px;
  padding-left: max(24px, calc(50vw - 566px));
  padding-right: 24px;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.hero-text h1 .hero-title-brand {
  display: block;
  color: var(--red);
}

.hero-text h1 .hero-title-tag {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.hero-text .tagline {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 420px;
  margin: 0 0 30px;
  line-height: 1.6;
}

.hero-text .order-cta {
  align-items: flex-start;
}

.hero-text .order-cta-primary {
  align-items: flex-start;
}

.hero-text .order-benefit {
  text-align: left;
}

.hero-text .order-cta-secondary {
  justify-content: flex-start;
}

.hero-media {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 620px;
}

.hero-media::before {
  content: "";
  position: absolute;
  top: -8%;
  left: -10%;
  width: 62%;
  height: 62%;
  border-radius: 50%;
  background: rgba(254, 204, 0, 0.45);
  z-index: 0;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -8%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  border: 2px solid rgba(227, 6, 19, 0.25);
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 45% 55% 52% 48% / 58% 46% 54% 42%;
  box-shadow: 0 30px 60px rgba(36, 23, 23, 0.22);
  display: block;
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(280px, 420px) 1fr;
    padding-left: 24px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 44px 0 64px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    padding: 0 20px;
    max-width: 480px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text .tagline {
    margin-inline: auto;
  }

  .hero-text .order-cta {
    align-items: center;
  }

  .hero-text .order-cta-primary {
    align-items: center;
  }

  .hero-text .order-benefit {
    text-align: center;
  }

  .hero-text .order-cta-secondary {
    justify-content: center;
  }

  .hero-text .btn-direto {
    width: 100%;
  }

  .hero-media {
    justify-self: center;
    max-width: 380px;
  }

  .hero-photo {
    aspect-ratio: 4 / 5;
    border-radius: 42% 58% 50% 50% / 55% 45% 55% 45%;
  }

  .hero-media::before {
    width: 68%;
    height: 68%;
  }

  .hero::after {
    width: 300px;
    height: 230px;
    top: -40px;
    right: -70px;
    opacity: 0.26;
  }
}

/* ---------- Diferenciais: faixa flutuante integrada ao Hero ---------- */
.diff-band-wrap {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  margin-top: -64px;
}

.diff-band {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 34px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.diff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.diff-item:last-child {
  border-right: none;
}

.diff-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--yellow) 0%, #ffb300 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}

.diff-item p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .diff-band-wrap {
    margin-top: -36px;
  }

  .diff-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 8px;
    border-radius: 22px;
    padding: 28px 16px;
  }

  .diff-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0 10px 22px;
  }

  .diff-item:nth-child(3),
  .diff-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-row + .cta-row {
  margin-top: 16px;
}

/* ---------- Page hero (páginas internas) ---------- */
.page-hero {
  background: var(--bg-secondary);
  color: var(--ink);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -70px;
  width: 260px;
  height: 190px;
  background-image: var(--brush-a);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  color: var(--red);
}

.page-hero p {
  margin-top: 12px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-inline: auto;
  font-size: 15.5px;
}

/* Variante sem subtítulo, para não sobrar espaço vazio */
.page-hero-compact {
  padding: 38px 20px;
}

/* ---------- Seções ---------- */
.section-white,
.section-cream,
.section-red {
  padding: 76px 0;
}

.section-white {
  background: var(--bg);
  color: var(--ink);
}

.section-cream {
  background: var(--bg-secondary);
  color: var(--ink);
}

.section-red {
  background: var(--yellow);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.section-red::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  width: 360px;
  height: 260px;
  background-image: var(--brush-a);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.28;
  filter: brightness(0.85);
  pointer-events: none;
}

.section-red::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -70px;
  width: 380px;
  height: 220px;
  background-image: var(--brush-b);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.28;
  filter: brightness(0.85);
  pointer-events: none;
}

.section-red .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.section-white .section-title,
.section-cream .section-title {
  color: var(--ink);
}

.section-red .section-title {
  color: var(--red);
  position: relative;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 15.5px;
}

.section-white .section-sub,
.section-cream .section-sub {
  color: var(--ink-soft);
}

.section-red .section-sub {
  color: var(--ink-soft);
  position: relative;
}

/* ---------- Diferenciais ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--red);
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--yellow) 0%, #ffb300 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 20px rgba(254, 204, 0, 0.28);
}

.feature-card h3 {
  color: var(--ink);
  font-size: 17.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Vitrine de lanches / destaques (cards com foto grande) ---------- */
.promo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 620px) {
  .promo-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .promo-row {
    grid-template-columns: 1fr;
  }
}

.promo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card .promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.promo-card h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.promo-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ---------- CTA final ---------- */
.cta-band {
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -60px;
  width: 340px;
  height: 260px;
  background-image: var(--brush-a);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.28;
  filter: brightness(0.85);
  pointer-events: none;
}

.cta-band h2,
.cta-band p,
.cta-band .order-cta {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--red);
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--ink-soft);
  margin-bottom: 30px;
}

@media (max-width: 620px) {
  .section-red::before,
  .section-red::after,
  .cta-band::before {
    width: 220px;
    height: 160px;
    opacity: 0.22;
  }
}

/* ---------- Tag pills ---------- */
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
}

.tag-novo {
  background: var(--yellow);
  color: var(--ink);
}

/* ---------- Cardápio: abas ---------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 0 20px;
  margin: 0 0 40px;
  border-bottom: 1px solid var(--line);
}

.menu-tab {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}

.menu-tab:hover {
  border-color: var(--red);
}

.menu-tab[aria-selected="true"] {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 6px 16px rgba(227, 6, 19, 0.25);
}

.menu-panel {
  display: none;
}

.menu-panel.is-active {
  display: block;
  animation: fadeIn 0.35s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-group + .menu-group {
  margin-top: 44px;
}

.menu-group-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.menu-group-sub {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 22px;
}

/* ---------- Cardápio: grid de cards com foto ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 960px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.menu-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-secondary);
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: repeating-linear-gradient(
    135deg,
    var(--bg-secondary),
    var(--bg-secondary) 12px,
    var(--bg) 12px,
    var(--bg) 24px
  );
}

.menu-card-body {
  padding: 18px 20px 22px;
}

.menu-card-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.menu-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.menu-card-desc {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ---------- Cardápio: itens em lista (sem foto) ---------- */
.menu-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
}

.menu-item-desc {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.55;
}

.menu-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 16px;
}

.menu-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- Delivery: bloco de canais ---------- */
.delivery-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 40px;
  background: var(--bg-secondary);
}

.delivery-block-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
  text-align: center;
}

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 760px) {
  .delivery-cards {
    grid-template-columns: 1fr;
  }
}

.delivery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.delivery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.delivery-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}

.delivery-card.card-ifood .icon {
  background: rgba(234, 29, 44, 0.1);
}

.delivery-card.card-99food .icon {
  background: rgba(255, 179, 0, 0.15);
}

.delivery-card.card-direto .icon {
  background: rgba(227, 6, 19, 0.08);
}

.delivery-card.card-direto {
  position: relative;
  border: 2px solid var(--yellow);
  box-shadow: 0 14px 34px rgba(254, 204, 0, 0.28);
}

.delivery-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.delivery-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.delivery-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.app-links {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.app-links p {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.app-links-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.app-links-row a {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--red);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.app-links-row a:hover {
  border-color: var(--red);
}

/* ---------- Placeholders de imagem ---------- */
.img-placeholder {
  background: repeating-linear-gradient(
    135deg,
    var(--bg-secondary),
    var(--bg-secondary) 10px,
    var(--bg) 10px,
    var(--bg) 20px
  );
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  min-height: 160px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.photo-grid .img-placeholder,
.photo-grid img {
  aspect-ratio: 4 / 3;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-text p {
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ---------- Seção história/tradição: card editorial integrado ---------- */
.story-section {
  background: var(--bg);
  padding: 88px 20px;
}

.story-block {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--surface);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.story-block::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -80px;
  width: 320px;
  height: 240px;
  background-image: var(--brush-a);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
}

@media (max-width: 760px) {
  .story-block {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }
}

.story-block img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

@media (max-width: 760px) {
  .story-block img {
    min-height: 260px;
  }
}

.story-block-text {
  position: relative;
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 760px) {
  .story-block-text {
    padding: 34px 26px 40px;
  }
}

.story-block-text h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.story-block-text p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 26px;
}

/* ---------- Bloco de marca (foto de impacto em largura total) ---------- */
.brand-block {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(320px, 32vw, 500px);
  overflow: hidden;
}

.brand-block img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

.brand-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 23, 23, 0.05) 0%, rgba(36, 23, 23, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 36px 20px;
  text-align: center;
}

.brand-block-overlay p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 4vw, 30px);
  color: var(--white);
  max-width: 640px;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .brand-block {
    height: min(100vw, 420px);
  }

  .brand-block img {
    object-position: 50% 45%;
  }
}

/* Embed de vídeo (Instagram) */
.video-embed {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-embed iframe {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-lg);
}

/* Aparência do card ANTES do embed.js carregar o preview real (ou caso falhe) */
blockquote.instagram-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

blockquote.instagram-media a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--red);
}

blockquote.instagram-media a::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.insta-follow {
  text-align: center;
  margin-top: 30px;
}

/* ---------- Página Peça seu Patropi ---------- */
.order-page {
  padding: 70px 20px;
}

.order-hero {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 50px;
}

.order-hero h1 {
  color: var(--ink);
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
}

.order-hero p {
  color: var(--ink-soft);
  font-size: 16px;
}

/* ---------- Lojas & Contato ---------- */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 820px) {
  .stores-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow-dark);
}

.store-card-photo {
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: -30px -28px 22px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.store-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}

.store-card .map-wrap {
  margin-bottom: 20px;
}

.info-row {
  margin-bottom: 16px;
}

.info-row h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.info-row h4::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.info-row p,
.info-row a {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-wine);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 32px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-brand img {
  height: 40px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Cardápio: listas simples (bebidas, adicionais) ---------- */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: var(--bg-secondary);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.chip:hover {
  background: var(--bg);
  border-color: var(--yellow-dark);
}

.simple-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.simple-list li strong {
  font-weight: 700;
}

/* ---------- Formulário (Trabalhe Conosco) ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

@media (max-width: 620px) {
  .form-card {
    padding: 28px 22px;
  }
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-secondary);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.2s var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(26, 20, 20, 0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e30613'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input[type="file"] {
  width: 100%;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 10px 0;
}

.form-field input[type="file"]::file-selector-button {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  margin-right: 14px;
  cursor: pointer;
}

.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: -8px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* ---------- Skip link (acessibilidade) ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--red);
  color: var(--white);
  padding: 12px 18px;
  font-weight: 700;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}
