/* Base e variáveis */
:root {
  --coal: #080807;
  --charcoal: #11100e;
  --steel: #1d1b18;
  --card: #181512;
  --line: rgba(255, 244, 224, 0.14);
  --text: #fff6e8;
  --muted: #cbbba3;
  --red: #d71920;
  --red-dark: #8d1014;
  --orange: #ff7a18;
  --amber: #ffc247;
  --wood: #3b2417;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(215, 25, 32, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(255, 122, 24, 0.16), transparent 24rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, var(--coal), #0d0c0b 42%, #070706);
  background-size: auto, auto, 52px 52px, auto;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.16) 47%, transparent 48% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 5px);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 64px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.order-panel h2,
.about h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 7vw, 3.4rem);
}

.section-heading p,
.order-panel > p,
.about-text p,
.location-card p {
  font-size: 1.05rem;
}

.section-kicker,
.badge {
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 194, 71, 0.45);
  border-radius: 999px;
  background: rgba(255, 194, 71, 0.08);
}

.badge-dark {
  color: var(--coal);
  border-color: rgba(8, 8, 7, 0.2);
  background: rgba(255, 246, 232, 0.86);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Botões e links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.36);
}

.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.btn-hot {
  color: #160c05;
  background: linear-gradient(135deg, var(--amber), var(--orange) 58%, #ff4b18);
}

.btn-outline {
  color: var(--text);
  border-color: rgba(255, 246, 232, 0.28);
  background: rgba(255, 246, 232, 0.05);
}

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.82rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 194, 71, 0.16);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.12), transparent 38%, rgba(255, 122, 24, 0.08)),
    rgba(8, 8, 7, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.header-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 9px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  width: fit-content;
  color: var(--text);
  line-height: 1;
}

.brand img {
  width: auto;
  height: clamp(42px, 8vw, 52px);
  border-radius: 6px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 122, 24, 0.22));
}

.brand span {
  font-size: clamp(0.98rem, 3vw, 1.24rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 122, 24, 0.26);
  white-space: nowrap;
}

.main-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--amber);
}

.site-header .btn-hot {
  box-shadow: 0 8px 26px rgba(255, 122, 24, 0.28);
}

/* Hero principal */
.hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  display: block;
  padding: clamp(64px, 7vw, 96px) 0 clamp(48px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 122, 24, 0.22), transparent 25rem),
    radial-gradient(circle at 22% 30%, rgba(215, 25, 32, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(255, 246, 232, 0.045) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(8, 8, 7, 0.18), rgba(8, 8, 7, 0.88));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background:
    repeating-linear-gradient(90deg, rgba(255, 246, 232, 0.04) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(255, 246, 232, 0.025) 0 1px, transparent 1px 54px),
    linear-gradient(115deg, rgba(59, 36, 23, 0.26), transparent 42%, rgba(215, 25, 32, 0.12));
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: 2%;
  width: min(680px, 90vw);
  height: 180px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(215, 25, 32, 0.72), rgba(255, 122, 24, 0.82), transparent);
  filter: blur(52px);
  transform: rotate(-8deg);
}

.hero-grid {
  display: grid;
  width: min(100% - 32px, 1200px);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: clamp(14px, 2.8vw, 20px);
  font-size: clamp(3.2rem, 5.7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.hero-text {
  max-width: 580px;
  margin-bottom: 22px;
  color: #ead8bf;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.5;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 10px;
  color: var(--amber);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-social-link::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--amber));
  box-shadow: 0 0 14px rgba(255, 122, 24, 0.7);
}

.hero-social-link:hover {
  color: var(--text);
}

.microcopy {
  margin-bottom: 0;
  color: #b6a68e;
  font-size: 0.9rem;
}

.hero-showcase {
  position: relative;
  min-height: clamp(390px, 42vw, 520px);
  isolation: isolate;
}

.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  z-index: -1;
}

.hero-showcase::before {
  inset: 4% -5% 12% 8%;
  background:
    radial-gradient(circle at 56% 40%, rgba(255, 194, 71, 0.2), transparent 32%),
    radial-gradient(circle at 50% 52%, rgba(215, 25, 32, 0.44), transparent 58%),
    radial-gradient(circle at 76% 70%, rgba(255, 122, 24, 0.34), transparent 45%);
  filter: blur(34px);
}

.hero-showcase::after {
  right: 4%;
  bottom: 8%;
  width: 68%;
  height: 28%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(32px);
  transform: rotate(-6deg);
}

.hero-main-photo,
.hero-side-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 194, 71, 0.25);
  border-radius: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgba(215, 25, 32, 0.24), rgba(59, 36, 23, 0.44)),
    var(--wood);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.56),
    0 0 64px rgba(215, 25, 32, 0.28),
    0 0 104px rgba(255, 122, 24, 0.14);
}

.hero-main-photo {
  height: clamp(360px, 38vw, 470px);
  transform: rotate(1deg);
}

.hero-main-photo::before,
.hero-main-photo::after,
.hero-side-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-main-photo::before {
  z-index: 1;
  background:
    radial-gradient(circle at 48% 28%, rgba(255, 194, 71, 0.2), transparent 28%),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.11) 45%, transparent 51% 100%);
}

.hero-main-photo::after,
.hero-side-card::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.02), rgba(8, 8, 7, 0.5)),
    radial-gradient(circle at 70% 28%, transparent 0 36%, rgba(215, 25, 32, 0.2) 78%);
}

.hero-main-photo img,
.hero-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.08);
}

.hero-side-card {
  position: absolute;
  z-index: 4;
  width: min(44%, 230px);
  height: clamp(126px, 14vw, 170px);
}

.hero-side-card span,
.floating-tag {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  color: #fff6e8;
  border: 1px solid rgba(255, 194, 71, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.82), rgba(8, 8, 7, 0.78)),
    rgba(17, 16, 14, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.44), 0 0 24px rgba(255, 122, 24, 0.24);
  font-size: clamp(0.68rem, 1.2vw, 0.8rem);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.tag-hot {
  top: 16px;
  left: 16px;
}

.tag-beer {
  right: 14px;
  bottom: 18px;
  color: #190c05;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.side-card-fries {
  right: -8px;
  bottom: -32px;
  transform: rotate(3deg);
}

.side-card-drinks {
  left: -22px;
  bottom: -28px;
  transform-origin: center center;
  transform: rotate(-4deg);
}

.side-card-drinks img {
  object-position: 50% 68%;
}

.side-card-fries span,
.side-card-drinks span {
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  font-size: 0.66rem;
}

/* Vibe */
.vibe-strip {
  position: relative;
  padding: clamp(38px, 4vw, 48px) 0;
  margin-top: 0;
  border-block: 1px solid rgba(255, 194, 71, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.22), rgba(8, 8, 7, 0.02)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.1), transparent 38%, rgba(255, 122, 24, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 246, 232, 0.026) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(59, 36, 23, 0.52), rgba(17, 16, 14, 0.9));
  box-shadow:
    inset 0 18px 34px rgba(0, 0, 0, 0.18),
    inset 0 -1px 0 rgba(255, 246, 232, 0.04);
}

.vibe-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 194, 71, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(255, 246, 232, 0.035), transparent 62%);
}

.vibe-strip-inner {
  position: relative;
  display: block;
}

.vibe-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(56px, 7vw, 92px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 3.8vw, 44px);
  min-width: 0;
}

.vibe-copy h2 {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

.vibe-copy::before {
  content: "";
  display: block;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 3px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 194, 71, 0.52));
  box-shadow: 0 0 16px rgba(255, 122, 24, 0.22);
}

.vibe-copy p {
  grid-column: 3;
  max-width: none;
  margin-bottom: 0;
  color: #f0d8b8;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.45;
}

.showcase-grid,
.split-grid {
  display: grid;
  gap: 20px;
}

/* Vitrine */
.showcase {
  background: linear-gradient(180deg, transparent, rgba(59, 36, 23, 0.22), transparent);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(29, 27, 24, 0.98), var(--card));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card img {
  width: 100%;
  aspect-ratio: 2.61 / 1;
  object-fit: cover;
  object-position: center center;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.28), rgba(255, 122, 24, 0.18)),
    var(--steel);
}

.product-card-lower-image img {
  object-position: 50% 60%;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.product-content h3 {
  margin-bottom: 9px;
  font-size: clamp(1.2rem, 2vw, 1.42rem);
  letter-spacing: 0;
}

.product-content p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.48;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 194, 71, 0.34);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  }
}

/* Pedido */
.order-section {
  padding-top: 28px;
}

.order-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
  padding: clamp(24px, 6vw, 42px);
  border: 1px solid rgba(255, 194, 71, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(255, 194, 71, 0.13), transparent 24%),
    linear-gradient(150deg, rgba(215, 25, 32, 0.18), transparent 34%),
    repeating-linear-gradient(100deg, rgba(255, 246, 232, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(17, 16, 14, 0.98), rgba(8, 8, 7, 0.96));
  box-shadow: var(--shadow), 0 0 56px rgba(255, 122, 24, 0.12);
}

.order-panel::before,
.order-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.order-panel::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 194, 71, 0.2) 47% 48%, transparent 48% 100%),
    linear-gradient(90deg, transparent 0 52%, rgba(255, 122, 24, 0.13) 52% 53%, transparent 53% 100%);
  opacity: 0.28;
  transform: skewY(-5deg) translateY(16px);
}

.order-panel::after {
  inset: auto -90px -120px auto;
  width: 260px;
  height: 260px;
  border: 36px solid rgba(255, 122, 24, 0.08);
  border-radius: 999px;
}

.order-panel h2,
.order-panel p,
.order-channels {
  position: relative;
  z-index: 1;
}

.order-copy p {
  max-width: 560px;
  color: #fff6e8;
}

.order-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.order-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.btn-order {
  min-height: 56px;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  color: #fff6e8;
  border-color: rgba(255, 246, 232, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 246, 232, 0.08), rgba(255, 246, 232, 0.03)),
    rgba(24, 21, 18, 0.88);
}

.btn-order::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.78;
}

.btn-order:hover {
  border-color: rgba(255, 194, 71, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 194, 71, 0.16), rgba(255, 122, 24, 0.08)),
    rgba(24, 21, 18, 0.96);
}

.btn-ifood {
  border-left: 4px solid var(--red);
}

.btn-whatsapp {
  border-left: 4px solid #48d46f;
}

.btn-99food {
  border-left: 4px solid var(--amber);
}

.order-panel .microcopy {
  margin-bottom: 0;
  color: #a99a85;
  font-size: 0.92rem;
}

/* Sobre */
.about {
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  gap: 24px;
}

.about-text {
  padding: 22px;
  border-left: 4px solid var(--orange);
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.1), transparent);
}

.about-text p {
  margin-bottom: 18px;
}

.about-text strong {
  display: block;
  color: var(--amber);
  font-size: clamp(1.35rem, 5vw, 2rem);
  line-height: 1.18;
}

/* Instagram e localização */
.social-location {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.035), rgba(255, 246, 232, 0.012)),
    rgba(10, 9, 8, 0.84);
}

.location-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.location-card,
.location-map {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 246, 232, 0.13);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(24px, 4vw, 32px);
  background:
    linear-gradient(145deg, rgba(255, 246, 232, 0.07), rgba(255, 122, 24, 0.055) 42%, rgba(215, 25, 32, 0.045)),
    rgba(19, 17, 15, 0.92);
}

.location-card .section-kicker {
  margin-bottom: 10px;
}

.location-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 6vw, 2.35rem);
}

.location-intro {
  max-width: 46ch;
  margin-bottom: 20px;
  color: #dccab0;
}

.location-address-wrap {
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 246, 232, 0.12);
}

.location-label {
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-address {
  color: var(--text);
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.location-action {
  width: fit-content;
}

.location-map {
  position: relative;
  width: 100%;
  height: clamp(260px, 74vw, 320px);
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.16), rgba(215, 25, 32, 0.08)),
    var(--steel);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(1.03);
}

.map-fallback-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  color: var(--text);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.16), rgba(215, 25, 32, 0.08)),
    var(--steel);
}

.map-fallback-panel strong {
  font-size: 1.25rem;
}

/* Rodapé */
.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-content {
  display: grid;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
}

.footer-brand img {
  height: clamp(50px, 10vw, 68px);
}

.footer-brand span {
  font-size: clamp(1.05rem, 3.4vw, 1.36rem);
}

.footer-content p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px 8px 10px;
  gap: 9px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 246, 232, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--amber);
  border-color: rgba(255, 194, 71, 0.6);
  background: rgba(255, 122, 24, 0.12);
  transform: translateY(-2px);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.copyright {
  color: #8f806d;
  font-size: 0.92rem;
}

/* Responsividade */
@media (min-width: 560px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .header-content {
    grid-template-columns: 1fr auto 1fr;
  }

  .main-nav {
    display: flex;
  }

  .header-content .btn {
    justify-self: end;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: auto;
    padding: clamp(64px, 7vw, 94px) 0 clamp(48px, 5vw, 68px);
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .order-panel {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1.1fr auto;
    align-items: center;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .copyright {
    grid-column: 1;
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: 640px;
    max-height: 720px;
    display: flex;
    align-items: center;
    padding: clamp(56px, 6vw, 74px) 0 clamp(44px, 5vw, 60px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: clamp(36px, 5vw, 72px);
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.2rem, 5.7vw, 5.4rem);
    line-height: 0.92;
  }

  .hero-showcase {
    align-self: center;
    min-height: clamp(390px, 42vw, 520px);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    max-height: none;
    padding: 38px 0 34px;
  }

  .vibe-strip {
    padding: 30px 0;
  }

  .vibe-copy {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 14px;
  }

  .vibe-copy h2 {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(1.32rem, 7vw, 1.72rem);
    line-height: 0.94;
    white-space: nowrap;
  }

  .vibe-copy::before {
    grid-column: 1;
    grid-row: 2;
    width: 46px;
    height: 3px;
    margin: 0;
  }

  .vibe-copy p {
    grid-column: 1;
    grid-row: 3;
    font-size: 0.98rem;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: 0.94;
    letter-spacing: 0;
  }

  .hero-text {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .badge {
    font-size: 0.7rem;
  }

  .action-row {
    display: grid;
  }

  .hero-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
  }

  .hero-main-photo {
    grid-column: 1 / -1;
    height: clamp(250px, 64vw, 340px);
    transform: none;
  }

  .hero-side-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(104px, 30vw, 132px);
    transform: none;
    border-radius: 16px;
  }

  .floating-tag,
  .hero-side-card span {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .tag-beer {
    right: 10px;
    bottom: 10px;
  }

  .showcase-grid {
    gap: 14px;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    min-height: clamp(81px, 23vw, 96px);
  }

  .product-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    padding: 0;
  }

  .product-content {
    justify-content: center;
    min-width: 0;
    padding: 16px 14px;
  }

  .product-content h3 {
    margin-bottom: 7px;
    font-size: clamp(1.04rem, 5vw, 1.22rem);
    line-height: 1.1;
  }

  .product-content p {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .location-card {
    padding: 22px;
  }
}

@media (min-width: 980px) {
  .showcase-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    align-items: stretch;
  }

  .product-card {
    grid-column: span 4;
  }

  .product-card-large {
    grid-column: span 8;
    grid-row: span 2;
  }

  .product-card:not(.product-card-large) img {
    flex: 1;
    min-height: 105px;
    height: auto;
    aspect-ratio: auto;
  }

  .product-card:not(.product-card-large) .product-content {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .product-card-large img {
    flex: 1;
    min-height: 239px;
    aspect-ratio: auto;
  }

  .product-card-large .product-content {
    flex: 0 0 auto;
    padding: 24px;
  }

  .product-card-large .product-content h3 {
    font-size: 1.75rem;
  }

  .location-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
  }

  .location-card,
  .location-map {
    min-height: 350px;
  }

  .location-map {
    align-self: stretch;
    height: auto;
  }

  .location-map iframe {
    min-height: 350px;
  }
}

@media (max-width: 420px) {
  .header-content {
    align-items: center;
    gap: 10px 12px;
    min-height: auto;
  }

  .header-content .btn {
    margin-left: auto;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-main-photo {
    border-radius: 18px;
  }

  .hero-side-card span {
    font-size: 0.6rem;
  }

  .product-card {
    grid-template-columns: minmax(96px, 36%) minmax(0, 1fr);
    min-height: 76px;
  }

  .product-card img {
    padding: 0;
  }

  .product-content {
    padding: 14px 12px;
  }

  .product-content p {
    font-size: 0.82rem;
  }
}
