:root {
  --paper: #f6ead8;
  --paper-light: #fff8ec;
  --ink: #21140d;
  --brown: #5c321e;
  --muted: #745f50;
  --red: #c43a22;
  --red-dark: #8d2514;
  --chocolate: #24140d;
  --green: #24784c;
  --mustard: #f0ae36;
  --cream: #fff3dc;
  --line: rgba(75, 41, 23, 0.18);
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(70, 39, 22, 0.14);
  --shadow-strong: 0 36px 90px rgba(49, 23, 10, 0.28);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(70, 39, 22, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(70, 39, 22, 0.018) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

section {
  scroll-margin-top: 88px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  color: var(--ink);
  background: rgba(246, 234, 216, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 236, 0.94);
  box-shadow: 0 12px 36px rgba(70, 39, 22, 0.12);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled .navbar {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 222px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cream);
  background: var(--ink);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  transform: rotate(-8deg);
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 248, 236, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(32, 19, 13, 0.72);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(196, 58, 34, 0.1);
  transform: translateY(-1px);
}

.nav-whatsapp-mobile {
  display: none;
}

.btn {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}

.btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

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

.btn:focus-visible,
.menu-toggle:focus-visible,
.category-tab:focus-visible,
input:focus-visible,
.empty-state button:focus-visible {
  outline: 3px solid rgba(36, 120, 76, 0.26);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 28px rgba(196, 58, 34, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-stroke {
  color: var(--ink);
  background: rgba(255, 248, 236, 0.78);
  border-color: var(--line);
}

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

.btn-large {
  min-height: 54px;
  padding-inline: 25px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 58px;
  background:
    linear-gradient(90deg, rgba(32, 19, 13, 0.93) 0%, rgba(32, 19, 13, 0.66) 42%, rgba(32, 19, 13, 0.16) 72%),
    url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=1800&q=86") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    linear-gradient(90deg, rgba(36, 120, 76, 0.58), rgba(196, 58, 34, 0.86) 44%, rgba(240, 174, 54, 0.28)),
    var(--red);
  transform: skewY(-3deg);
  transform-origin: left;
}

.hero::after {
  content: "BURGER";
  position: absolute;
  right: max(24px, 7vw);
  bottom: 7vh;
  z-index: 0;
  color: rgba(255, 243, 220, 0.09);
  font-size: 12rem;
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.hero-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.02fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 42px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.combo-copy h2,
.catalog-head h2,
.section-head h2,
.trust-copy h2,
.order-card h2,
.compare-layout h2,
.location-card h2,
.final-cta-box h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: 5.8rem;
  color: var(--cream);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
}

.hero p {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 243, 220, 0.92);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-pills span {
  padding: 9px 12px;
  color: var(--cream);
  background: rgba(255, 243, 220, 0.13);
  border: 1px solid rgba(255, 243, 220, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-plate {
  position: relative;
  min-height: 650px;
  transform-style: preserve-3d;
}

.plate-photo {
  position: absolute;
  inset: 0 0 0 7%;
  overflow: hidden;
  background: var(--cream);
  border: 10px solid var(--cream);
  border-radius: 28px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.34);
  transform: rotate(3deg);
}

.plate-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(32, 19, 13, 0.28));
}

.plate-photo img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(32, 19, 13, 0.2);
  animation: floatY 5s ease-in-out infinite;
}

.sticker-main {
  left: 0;
  bottom: 82px;
  color: var(--cream);
  background: var(--ink);
  transform: rotate(-5deg);
}

.sticker-price {
  top: 74px;
  right: 0;
  color: var(--ink);
  background: var(--mustard);
  border: 2px dashed rgba(32, 19, 13, 0.28);
  transform: rotate(7deg);
  animation-delay: -2s;
}

.sticker span,
.sticker small {
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sticker strong {
  font-size: 1.16rem;
}

.sticker-price strong {
  font-size: 1.76rem;
}

.benefits-section,
.favorites-section,
.catalog-section,
.trust-section,
.compare-section,
.location-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.benefits-section {
  z-index: 3;
  padding: 34px 0;
  background: var(--chocolate);
  color: var(--cream);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  min-height: 150px;
  padding: 18px;
  background: rgba(255, 243, 220, 0.08);
  border: 1px solid rgba(255, 243, 220, 0.14);
  border-radius: 8px;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mustard);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 950;
}

.benefit-card h2 {
  margin: 14px 0 6px;
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 243, 220, 0.74);
  font-size: 0.92rem;
}

.combo-scene {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(111, 36, 21, 0.84), rgba(36, 20, 13, 0.96)),
    var(--chocolate);
}

.combo-scene::before {
  content: "COMBO";
  position: absolute;
  top: 38px;
  right: max(20px, 7vw);
  color: rgba(255, 243, 220, 0.055);
  font-size: 9rem;
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.combo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 44px;
  align-items: center;
}

.combo-photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 10px solid var(--paper-light);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  transform: rotate(-2deg);
}

.combo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(32, 19, 13, 0.28));
}

.combo-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.stamp {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.combo-copy h2,
.catalog-head h2,
.section-head h2,
.trust-copy h2,
.order-card h2,
.compare-layout h2,
.location-card h2,
.final-cta-box h2 {
  font-size: 3.7rem;
}

.combo-copy p,
.catalog-head p,
.section-head p,
.trust-copy p,
.order-card p,
.location-card p,
.final-cta-box p {
  color: var(--muted);
  font-size: 1.02rem;
}

.combo-copy p {
  color: rgba(255, 243, 220, 0.76);
}

.combo-copy .eyebrow {
  color: var(--ink);
  background: var(--mustard);
}

.combo-list {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.combo-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 243, 220, 0.86);
  font-weight: 850;
}

.combo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  background: var(--mustard);
  border-radius: 50%;
}

.menu-price {
  display: grid;
  gap: 2px;
  margin: 28px 0;
}

.menu-price span {
  color: rgba(255, 243, 220, 0.7);
  font-weight: 900;
}

.menu-price strong {
  color: var(--mustard);
  font-size: 3.6rem;
  line-height: 0.9;
}

.favorites-section {
  background: var(--paper-light);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head .eyebrow,
.catalog-head .eyebrow,
.trust-copy .eyebrow,
.location-card .eyebrow,
.order-card .eyebrow,
.compare-layout .eyebrow {
  background: var(--red);
}

.favorite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-section {
  background:
    linear-gradient(180deg, #fff8ec 0%, #f6ead8 100%);
}

.catalog-section::before {
  content: "CARDAPIO";
  position: absolute;
  top: 34px;
  left: max(16px, 5vw);
  color: rgba(91, 50, 29, 0.045);
  font-size: 8rem;
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.7fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.catalog-head h2,
.section-head h2 {
  margin-top: 16px;
}

.menu-panel {
  position: relative;
  z-index: 1;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 243, 220, 0.98), rgba(255, 248, 236, 0.94));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-tools {
  display: grid;
  grid-template-columns: minmax(230px, 350px) 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
}

.search-box label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 950;
}

.search-box input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.category-tab {
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.category-tab:hover {
  transform: translateY(-2px);
}

.category-tab.is-active {
  color: var(--cream);
  background: var(--ink);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  perspective: 1000px;
}

.product-card {
  grid-column: span 2;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(70, 39, 22, 0.1);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  animation: cardIn 500ms cubic-bezier(.2, .8, .2, 1) forwards;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card.is-featured {
  grid-column: span 3;
  background: #fff1d3;
}

.favorite-grid .product-card,
.favorite-grid .product-card.is-featured {
  grid-column: auto;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(70, 39, 22, 0.16);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card.is-featured .product-image {
  aspect-ratio: 16 / 10;
}

.favorite-grid .product-card .product-image {
  aspect-ratio: 1 / 0.82;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(32, 19, 13, 0.24));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--cream);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-category {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-price {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--mustard);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 950;
  white-space: nowrap;
}

.product-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.product-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-card .btn {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px;
  text-align: center;
  background: var(--paper-light);
  border: 1px dashed rgba(70, 39, 22, 0.3);
  border-radius: 8px;
}

.empty-state p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.trust-section {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(36, 20, 13, 0.97), rgba(18, 10, 7, 1));
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: start;
}

.trust-copy p {
  color: rgba(255, 243, 220, 0.72);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.trust-tags span {
  padding: 9px 11px;
  color: var(--cream);
  background: rgba(255, 243, 220, 0.1);
  border: 1px solid rgba(255, 243, 220, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.testimonial-grid {
  display: grid;
  gap: 12px;
}

.testimonial-grid article {
  padding: 20px;
  background: var(--cream);
  border-radius: 8px;
  color: var(--ink);
}

.testimonial-grid p {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 1.02rem;
}

.testimonial-grid strong {
  color: var(--green);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-section {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  background: var(--paper);
}

.order-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.order-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 14px;
  padding: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(70, 39, 22, 0.08);
}

.order-steps span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--red);
  border-radius: 999px;
  font-weight: 950;
}

.order-steps strong {
  font-size: 1rem;
}

.order-steps small {
  color: var(--muted);
}

.compare-section {
  padding: 78px 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(36, 120, 76, 0.88), rgba(36, 20, 13, 0.96)),
    var(--green);
}

.compare-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: center;
}

.compare-table {
  overflow: hidden;
  background: rgba(255, 243, 220, 0.1);
  border: 1px solid rgba(255, 243, 220, 0.16);
  border-radius: 8px;
}

.compare-table div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 243, 220, 0.14);
}

.compare-table div:last-child {
  border-bottom: 0;
}

.compare-table strong,
.compare-table span {
  padding: 14px 16px;
}

.compare-table strong:first-child,
.compare-table span:first-child {
  color: rgba(255, 243, 220, 0.68);
  border-right: 1px solid rgba(255, 243, 220, 0.14);
}

.compare-table strong:last-child,
.compare-table span:last-child {
  color: var(--cream);
  font-weight: 850;
}

.location-section {
  background:
    linear-gradient(180deg, #f6ead8 0%, #fff8ec 100%);
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 38px;
  align-items: center;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-label {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(36, 120, 76, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(36, 120, 76, 0.14) 1px, transparent 1px),
    #edf5e9;
  background-size: 30px 30px;
  border-radius: 8px;
}

.map-label span {
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-label strong {
  font-size: 2.2rem;
}

.final-cta {
  padding: 92px 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(32, 19, 13, 0.92), rgba(32, 19, 13, 0.5)),
    url("https://images.unsplash.com/photo-1551782450-a2132b4ba21d?auto=format&fit=crop&w=1600&q=84") center / cover no-repeat;
}

.final-cta-box {
  display: grid;
  gap: 22px;
  max-width: 740px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(36, 120, 76, 0.34);
}

.site-footer {
  padding: 46px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #130a06;
}

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

.footer-grid strong,
.footer-grid span {
  display: block;
  color: #fff;
  font-weight: 950;
}

.footer-grid p,
.footer-grid a {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.copyright {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.js-enabled [data-animate] {
  opacity: 0;
}

body.js-enabled [data-animate-group] .animate-item {
  opacity: 0;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatY {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@media (max-width: 1040px) {
  body {
    padding-bottom: 76px;
  }

  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: fixed;
    inset: 78px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 248, 236, 0.96);
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .nav-whatsapp-mobile {
    display: flex;
    justify-content: center;
    color: #fff;
    background: var(--red);
  }

  .hero-board,
  .combo-layout,
  .catalog-head,
  .section-head,
  .trust-layout,
  .order-card,
  .compare-layout,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero::after {
    font-size: 8rem;
  }

  .combo-scene::before,
  .catalog-section::before {
    font-size: 6.8rem;
  }

  .combo-copy h2,
  .catalog-head h2,
  .section-head h2,
  .trust-copy h2,
  .order-card h2,
  .compare-layout h2,
  .location-card h2,
  .final-cta-box h2 {
    font-size: 3rem;
  }

  .hero::before {
    height: 34%;
  }

  .hero-plate,
  .plate-photo img {
    min-height: 520px;
  }

  .plate-photo {
    inset: 0;
  }

  .benefit-grid,
  .favorite-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-tools {
    grid-template-columns: 1fr;
  }

  .category-tabs {
    justify-content: flex-start;
  }

  .product-card,
  .product-card.is-featured {
    grid-column: span 3;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text small {
    display: none;
  }

  .nav-links {
    inset: 70px 14px auto 14px;
  }

  .hero {
    padding: 94px 0 32px;
    background:
      linear-gradient(180deg, rgba(32, 19, 13, 0.78) 0%, rgba(32, 19, 13, 0.5) 42%, rgba(32, 19, 13, 0.86) 100%),
      url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=1000&q=84") center / cover no-repeat;
  }

  .hero::before {
    inset: 76px 0 auto;
    height: 24%;
  }

  .hero::after,
  .combo-scene::before,
  .catalog-section::before {
    opacity: 0.35;
    transform: scale(0.82);
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .combo-copy .btn,
  .location-actions .btn,
  .final-cta-box .btn {
    width: 100%;
  }

  .hero-plate,
  .plate-photo img {
    min-height: 340px;
  }

  .plate-photo {
    border-width: 7px;
    border-radius: 18px;
    transform: rotate(1.5deg);
  }

  .sticker {
    padding: 12px 13px;
  }

  .sticker-main {
    left: 10px;
    bottom: 10px;
  }

  .sticker-price {
    top: 10px;
    right: 10px;
  }

  .benefits-section,
  .combo-scene,
  .favorites-section,
  .catalog-section,
  .trust-section,
  .order-section,
  .compare-section,
  .location-section,
  .final-cta {
    padding: 72px 0;
  }

  .benefit-grid,
  .favorite-grid {
    grid-template-columns: 1fr;
  }

  .combo-photo,
  .combo-photo img {
    min-height: 320px;
  }

  .combo-photo {
    border-width: 7px;
    border-radius: 18px;
  }

  .combo-copy h2,
  .catalog-head h2,
  .section-head h2,
  .trust-copy h2,
  .order-card h2,
  .compare-layout h2,
  .location-card h2,
  .final-cta-box h2 {
    font-size: 2.15rem;
  }

  .menu-panel {
    padding: 12px;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .category-tab {
    flex: 0 0 auto;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card.is-featured {
    grid-column: auto;
  }

  .product-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .compare-table strong,
  .compare-table span {
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .location-card {
    padding: 14px;
  }

  .map-label {
    min-height: 250px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 56px;
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body.js-enabled [data-animate],
  body.js-enabled [data-animate-group] .animate-item,
  .product-card {
    opacity: 1;
    transform: none;
  }
}
