/**
 * Landing page — estilo iFood (escopo .landing-ifood)
 */
:root {
  --lf-red: #ea1d2c;
  --lf-red-dark: #b3121e;
  --lf-orange: #ff7a00;
  --lf-orange-dark: #e66d00;
  --lf-hero-dark: #1f1410;
  --lf-hero-dark-mid: #2a1814;
  --lf-partner-font: "Poppins", "Inter", "DM Sans", system-ui, sans-serif;
  --lf-header-bg: #2a1814;
  --lf-header-bg-dark: #1f1410;
  --lf-white: #ffffff;
  --lf-gray-bg: #f6f6f6;
  --lf-text: #222222;
  --lf-text-muted: #717171;
  --lf-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --lf-radius: 12px;
  --lf-header-h: 72px;
  --lf-layout-max: 1200px;
  /* Tipografia base (mobile) */
  --lf-fs-body: 1rem;
  --lf-fs-sm: 0.9375rem;
  --lf-fs-xs: 0.875rem;
}

body.landing-ifood {
  /* Escala UI: ~115% mobile, ~128% tablet, ~150% desktop (legibilidade) */
  --lf-ui-scale: 1.15;
  --lf-header-h: calc(4.5rem * var(--lf-ui-scale));
  --lf-fs-body: calc(1rem * var(--lf-ui-scale));
  --lf-fs-sm: calc(0.9375rem * var(--lf-ui-scale));
  --lf-fs-xs: calc(0.875rem * var(--lf-ui-scale));
  --lf-radius: calc(12px * var(--lf-ui-scale));
  --lf-cat-col-w: calc(100px * var(--lf-ui-scale));
  --lf-cat-icon: calc(88px * var(--lf-ui-scale));
  --lf-store-card-w: calc(260px * var(--lf-ui-scale));
  --lf-section-pad-y: calc(48px * var(--lf-ui-scale));
  --lf-section-pad-x: calc(20px * var(--lf-ui-scale));
  --lf-gap: calc(16px * var(--lf-ui-scale));

  font-family: "DM Sans", "Lato", sans-serif;
  font-size: var(--lf-fs-body);
  line-height: 1.5;
  color: var(--lf-text);
  background: var(--lf-white);
}

/* Esconde apenas elementos legados — NÃO o .lf-header novo */
body.landing-ifood > header:not(.lf-header),
body.landing-ifood #home.parallax-window,
body.landing-ifood .white_bg,
body.landing-ifood .high_light,
body.landing-ifood footer:not(.lf-footer) {
  display: none !important;
}

body.landing-ifood #preloader {
  background: var(--lf-white);
}

/* Header — tom escuro alinhado ao hero */
body.delivery-modern.delivery-landing header.lf-header,
.lf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--lf-header-bg) !important;
  background-image: linear-gradient(180deg, var(--lf-header-bg-dark) 0%, var(--lf-header-bg) 100%) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25) !important;
  height: var(--lf-header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.lf-header__inner {
  max-width: var(--lf-layout-max);
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lf-nav-home {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--lf-white);
  flex-shrink: 0;
  padding: 4px 6px;
  border-radius: 10px;
  line-height: 0;
  transition: background 0.22s ease, transform 0.22s ease;
}

@media (hover: hover) {
  .lf-nav-home:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--lf-white);
    transform: scale(1.06);
  }
}

.lf-nav-home__icon {
  width: calc(32px * var(--lf-ui-scale, 1));
  height: calc(32px * var(--lf-ui-scale, 1));
  object-fit: contain;
  display: block;
}

.lf-nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.lf-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lf-nav__list a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--lf-fs-sm);
  padding: calc(8px * var(--lf-ui-scale, 1)) calc(14px * var(--lf-ui-scale, 1));
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lf-nav__list a:hover,
.lf-nav__list a.is-active {
  color: var(--lf-white);
  background: rgba(255, 255, 255, 0.18);
}

.lf-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lf-btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--lf-fs-xs);
  padding: calc(9px * var(--lf-ui-scale, 1)) calc(16px * var(--lf-ui-scale, 1));
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lf-btn-header--outline {
  color: var(--lf-white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
}

.lf-btn-header--outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--lf-white);
}

.lf-btn-header--fill {
  color: var(--lf-red);
  background: var(--lf-white);
  border: 2px solid var(--lf-white);
}

.lf-btn-header--fill:hover {
  background: #fff5f5;
  color: var(--lf-red-dark);
}

.lf-header__actions .lf-btn-header--outline,
.lf-header__actions .lf-btn-header--fill {
  display: none;
}

.lf-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: calc(44px * var(--lf-ui-scale, 1));
  height: calc(44px * var(--lf-ui-scale, 1));
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

@media (hover: hover) {
  .lf-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }
}

.lf-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--lf-white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lf-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lf-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.lf-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile — painel compacto + overlay translúcido */
.lf-mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: linear-gradient(
    160deg,
    rgba(18, 12, 10, 0.42) 0%,
    rgba(42, 24, 20, 0.38) 55%,
    rgba(255, 122, 0, 0.08) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lf-mobile-nav__backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lf-mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--lf-header-h) + 10px);
  right: max(12px, env(safe-area-inset-right, 0px));
  left: max(12px, env(safe-area-inset-left, 0px));
  z-index: 999;
  padding: 0;
  margin: 0;
  pointer-events: none;
  justify-content: flex-end;
  align-items: flex-start;
}

.lf-mobile-nav.is-open {
  display: flex;
  pointer-events: none;
}

.lf-mobile-nav[hidden] {
  display: none !important;
}

.lf-mobile-nav.is-open[hidden] {
  display: flex !important;
}

.lf-mobile-nav__panel {
  pointer-events: auto;
  width: 100%;
  max-width: min(22rem, 100%);
  margin-left: auto;
  padding: calc(10px * var(--lf-ui-scale, 1));
  border-radius: calc(18px * var(--lf-ui-scale, 1));
  background: linear-gradient(
    155deg,
    rgba(58, 32, 26, 0.92) 0%,
    rgba(31, 20, 16, 0.9) 48%,
    rgba(26, 18, 14, 0.88) 100%
  );
  border: 1px solid rgba(255, 122, 0, 0.38);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 32px rgba(255, 122, 0, 0.12);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1),
    opacity 0.28s ease;
}

.lf-mobile-nav.is-open .lf-mobile-nav__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lf-mobile-nav__panel::before {
  content: "";
  display: block;
  height: 3px;
  margin: 0 0 calc(8px * var(--lf-ui-scale, 1));
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--lf-orange) 35%, var(--lf-orange-dark) 65%, transparent);
  opacity: 0.9;
}

.lf-mobile-nav__label {
  margin: 0 0 calc(4px * var(--lf-ui-scale, 1));
  padding: calc(6px * var(--lf-ui-scale, 1)) calc(10px * var(--lf-ui-scale, 1));
  font-family: var(--lf-partner-font);
  font-size: calc(0.7rem * var(--lf-ui-scale, 1));
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 180, 120, 0.95);
}

.lf-mobile-nav__panel > a {
  display: flex;
  align-items: center;
  gap: calc(10px * var(--lf-ui-scale, 1));
  padding: calc(14px * var(--lf-ui-scale, 1)) calc(12px * var(--lf-ui-scale, 1));
  margin-bottom: 2px;
  border-bottom: none;
  color: var(--lf-white);
  text-decoration: none;
  font-family: var(--lf-partner-font);
  font-weight: 600;
  font-size: calc(1.05rem * var(--lf-ui-scale, 1));
  border-radius: calc(12px * var(--lf-ui-scale, 1));
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

@media (hover: hover) {
  .lf-mobile-nav__panel > a:hover {
    background: rgba(255, 122, 0, 0.16);
    color: #fff;
    transform: translateX(3px);
  }
}

.lf-mobile-nav__cta {
  margin-top: calc(12px * var(--lf-ui-scale, 1));
  display: flex;
  flex-direction: column;
  gap: calc(10px * var(--lf-ui-scale, 1));
  padding-top: calc(8px * var(--lf-ui-scale, 1));
  border-top: 1px solid rgba(255, 122, 0, 0.22);
}

.lf-mobile-nav__cta .lf-btn-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: calc(14px * var(--lf-ui-scale, 1)) calc(20px * var(--lf-ui-scale, 1));
  font-size: calc(1rem * var(--lf-ui-scale, 1));
  border-radius: 999px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.lf-mobile-nav__cta .lf-btn-header--outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.lf-mobile-nav__cta .lf-btn-header--fill {
  color: var(--lf-header-bg-dark);
  background: linear-gradient(135deg, var(--lf-orange) 0%, var(--lf-orange-dark) 100%);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.35);
}

@media (hover: hover) {
  .lf-mobile-nav__cta .lf-btn-header--outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  }

  .lf-mobile-nav__cta .lf-btn-header--fill:hover {
    filter: brightness(1.06);
    color: var(--lf-header-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 122, 0, 0.42);
  }
}

.lf-mobile-nav__cta .lf-btn-header:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

body.lf-menu-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  .lf-mobile-nav,
  .lf-mobile-nav__backdrop {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lf-mobile-nav__panel,
  .lf-mobile-nav__backdrop {
    transition: none;
  }

  .lf-mobile-nav.is-open .lf-mobile-nav__panel {
    transform: none;
  }
}

/* Hero — banner responsivo (texto esquerda / foto direita) */
.lf-hero {
  --lf-hero-bg: url("../img/sub_header_cart3.png");
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: calc(var(--lf-header-h) + 1.5rem * var(--lf-ui-scale, 1)) 0 0;
  min-height: calc(520px * var(--lf-ui-scale, 1));
  background-color: var(--lf-hero-dark);
  background-image: var(--lf-hero-bg);
  background-repeat: no-repeat;
  background-position: 85% center;
  background-size: cover;
  isolation: isolate;
}

.lf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 20, 16, 0.96) 0%,
    rgba(42, 24, 20, 0.9) 42%,
    rgba(42, 24, 20, 0.45) 52%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.lf-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72'%3E%3Cpath fill='%23ffffff' d='M0,36 C360,72 720,0 1440,36 L1440,72 L0,72 Z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
  z-index: 1;
  pointer-events: none;
}

.lf-hero__grid {
  flex: 1 1 auto;
  width: 100%;
  max-width: var(--lf-layout-max);
  margin: 0 auto;
  padding: 0 20px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lf-hero__content {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
}

.lf-hero__headline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 16px;
  width: 100%;
  margin-bottom: 14px;
}

.lf-hero__title {
  flex: 1 1 12rem;
  margin: 0;
  color: var(--lf-white);
  font-family: var(--lf-partner-font);
  font-size: clamp(
    calc(1.625rem * var(--lf-ui-scale, 1)),
    calc(5vw * var(--lf-ui-scale, 1)),
    calc(2.75rem * var(--lf-ui-scale, 1))
  );
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lf-hero__accent {
  color: var(--lf-orange);
}

.lf-hero__cloche {
  flex: 0 0 auto;
  width: clamp(
    calc(48px * var(--lf-ui-scale, 1)),
    calc(10vw * var(--lf-ui-scale, 1)),
    calc(64px * var(--lf-ui-scale, 1))
  );
  height: clamp(
    calc(48px * var(--lf-ui-scale, 1)),
    calc(10vw * var(--lf-ui-scale, 1)),
    calc(64px * var(--lf-ui-scale, 1))
  );
  color: var(--lf-orange);
  align-self: center;
}

.lf-hero__cloche-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lf-hero__subtitle {
  margin: 0 0 calc(22px * var(--lf-ui-scale, 1));
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--lf-partner-font);
  font-size: clamp(
    calc(1rem * var(--lf-ui-scale, 1)),
    calc(2.8vw * var(--lf-ui-scale, 1)),
    calc(1.35rem * var(--lf-ui-scale, 1))
  );
  font-weight: 500;
  line-height: 1.55;
  max-width: 36rem;
}

.lf-hero__visual {
  display: none;
  min-height: 0;
}

.lf-hero__badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 11.5rem;
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(20, 12, 10, 0.88);
  border: 2px solid var(--lf-orange);
  color: var(--lf-white);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.lf-hero__badge i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lf-orange);
  font-size: 0.75rem;
}

.lf-search-form {
  width: 100%;
  max-width: 100%;
}

.lf-search {
  width: 100%;
  max-width: 32rem;
  background: var(--lf-white);
  border-radius: 12px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.lf-hero .lf-search__icon {
  color: var(--lf-orange);
}

.lf-search__icon {
  display: flex;
  align-items: center;
  padding: 0 calc(14px * var(--lf-ui-scale, 1)) 0 calc(16px * var(--lf-ui-scale, 1));
  color: var(--lf-orange);
  font-size: calc(1.1rem * var(--lf-ui-scale, 1));
}

.lf-search input.search-query {
  flex: 1;
  min-width: 0;
  border: none;
  padding: calc(16px * var(--lf-ui-scale, 1)) calc(8px * var(--lf-ui-scale, 1));
  font-size: calc(1rem * var(--lf-ui-scale, 1));
  outline: none;
  box-shadow: none;
  height: auto;
}

.lf-hero .lf-search .btn_search,
.lf-hero .lf-search #pesquisar {
  background: var(--lf-orange);
  color: var(--lf-white);
}

.lf-hero .lf-search .btn_search:hover,
.lf-hero .lf-search #pesquisar:hover {
  background: var(--lf-orange-dark);
}

.lf-search .btn_search,
.lf-search #pesquisar {
  background: var(--lf-red);
  color: var(--lf-white);
  border: none;
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
  font-size: calc(0.95rem * var(--lf-ui-scale, 1));
  border-radius: 0;
  height: auto;
  min-height: calc(52px * var(--lf-ui-scale, 1));
  flex-shrink: 0;
}

.lf-search .btn_search:hover,
.lf-search #pesquisar:hover {
  background: var(--lf-red-dark);
}

.lf-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  width: 100%;
  max-width: 32rem;
}

.lf-hero__features li {
  display: flex;
  align-items: center;
  gap: calc(10px * var(--lf-ui-scale, 1));
  color: var(--lf-white);
  font-family: var(--lf-partner-font);
  font-size: clamp(
    calc(0.8125rem * var(--lf-ui-scale, 1)),
    calc(2.2vw * var(--lf-ui-scale, 1)),
    calc(0.9375rem * var(--lf-ui-scale, 1))
  );
  font-weight: 600;
  line-height: 1.3;
}

.lf-hero__feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(40px * var(--lf-ui-scale, 1));
  height: calc(40px * var(--lf-ui-scale, 1));
  border: 2px solid var(--lf-orange);
  border-radius: 50%;
  color: var(--lf-orange);
  font-size: calc(1rem * var(--lf-ui-scale, 1));
}

.lf-cep-link {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--lf-fs-xs);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lf-cep-link:hover {
  color: var(--lf-white);
}

.lf-hero .dm-geo-field {
  margin-top: 12px;
  max-width: 32rem;
  position: relative;
  z-index: 3;
}

.lf-search-form {
  position: relative;
  z-index: 3;
}

.lf-hero .dm-geo-locate-btn {
  border-color: rgba(255, 122, 0, 0.55);
  color: var(--lf-orange);
  background: rgba(255, 255, 255, 0.96);
}

.lf-hero .dm-geo-locate-btn:hover:not(:disabled) {
  background: #fff8f0;
  border-color: var(--lf-orange);
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.2);
}

.lf-hero .dm-geo-status {
  color: rgba(255, 255, 255, 0.85);
}

.lf-hero-stats {
  flex-shrink: 0;
  width: 100%;
  max-width: none;
  margin: 0 !important;
  margin-top: auto !important;
  padding: 1rem 20px 1.25rem !important;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
}

.lf-hero-stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 3rem);
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
}

body.landing-ifood .lf-hero-stats,
body.landing-ifood #count.lf-hero-stats {
  background: linear-gradient(
    180deg,
    rgba(31, 20, 16, 0.55) 0%,
    rgba(26, 18, 14, 0.65) 100%
  ) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lf-hero-stats li {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: clamp(
    calc(0.8125rem * var(--lf-ui-scale, 1)),
    calc(2.5vw * var(--lf-ui-scale, 1)),
    calc(1.125rem * var(--lf-ui-scale, 1))
  );
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  padding: 0 clamp(0.35rem, 2vw, 1rem);
}

.lf-hero-stats .number {
  display: block;
  font-size: clamp(
    calc(1.25rem * var(--lf-ui-scale, 1)),
    calc(4vw * var(--lf-ui-scale, 1)),
    calc(2.25rem * var(--lf-ui-scale, 1))
  );
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.15rem;
  text-align: center;
}

/* Sections */
.lf-section {
  padding: var(--lf-section-pad-y) var(--lf-section-pad-x);
  max-width: var(--lf-layout-max);
  margin: 0 auto;
}

.lf-section--gray {
  background: var(--lf-gray-bg);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.lf-section--gray .lf-section__inner {
  max-width: var(--lf-layout-max);
  margin: 0 auto;
  padding: var(--lf-section-pad-y) var(--lf-section-pad-x);
}

.lf-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.lf-section__title {
  font-size: calc(1.5rem * var(--lf-ui-scale, 1));
  font-weight: 800;
  margin: 0;
  color: #121212;
  font-family: var(--lf-partner-font);
}

.lf-section__link {
  color: var(--lf-orange);
  font-weight: 700;
  text-decoration: none;
  font-size: var(--lf-fs-sm);
  white-space: nowrap;
}

.lf-section__link:hover {
  color: var(--lf-orange-dark);
  text-decoration: underline;
}

/* Categories */
.lf-categories {
  display: flex;
  gap: var(--lf-gap);
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.lf-categories::-webkit-scrollbar {
  height: 4px;
}

.lf-categories::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

.lf-cat-card {
  flex: 0 0 var(--lf-cat-col-w);
  scroll-snap-align: start;
  text-align: center;
  text-decoration: none;
  color: var(--lf-orange);
}

.lf-cat-card__icon {
  width: var(--lf-cat-icon);
  height: var(--lf-cat-icon);
  background: var(--lf-white);
  border-radius: var(--lf-radius);
  box-shadow: var(--lf-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(2rem * var(--lf-ui-scale, 1));
  margin: 0 auto calc(8px * var(--lf-ui-scale, 1));
  color: var(--lf-orange);
  transition: transform 0.2s, color 0.2s;
}

.lf-cat-card__icon i {
  color: var(--lf-orange);
}

.lf-cat-card:hover .lf-cat-card__icon {
  transform: translateY(-4px);
}

.lf-cat-card:hover,
.lf-cat-card:hover span,
.lf-cat-card:hover .lf-cat-card__icon,
.lf-cat-card:hover .lf-cat-card__icon i {
  color: var(--lf-orange-dark);
}

.lf-cat-card span {
  font-size: var(--lf-fs-xs);
  font-weight: 600;
  color: var(--lf-orange);
}

/* Store carousel */
.lf-carousel-wrap {
  position: relative;
}

.lf-carousel-wrap--auto .lf-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.lf-carousel--marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 4px 0 12px;
  animation: lf-carousel-marquee-ltr 50s linear infinite;
  will-change: transform;
}

.lf-carousel-wrap--auto:hover .lf-carousel--marquee {
  animation-play-state: paused;
}

@keyframes lf-carousel-marquee-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.lf-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  scroll-snap-type: x mandatory;
}

.lf-carousel::-webkit-scrollbar {
  height: 6px;
}

.lf-carousel .lf-store-card,
.lf-carousel--marquee .lf-store-card {
  flex: 0 0 var(--lf-store-card-w);
  scroll-snap-align: start;
}

@media (prefers-reduced-motion: reduce) {
  .lf-carousel--marquee {
    animation: none;
    overflow-x: auto;
    width: 100%;
    flex-wrap: nowrap;
  }

  .lf-carousel-wrap--auto .lf-carousel-viewport {
    overflow-x: auto;
  }
}

.lf-carousel__btn {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lf-white);
  border: none;
  box-shadow: var(--lf-shadow);
  cursor: pointer;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--lf-red);
  font-size: 1.1rem;
}

.lf-store-card {
  background: var(--lf-white);
  border-radius: var(--lf-radius);
  overflow: hidden;
  box-shadow: var(--lf-shadow);
}

.lf-store-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.lf-store-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.lf-store-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lf-store-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--lf-red);
  color: var(--lf-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}

.lf-store-card__body {
  padding: calc(12px * var(--lf-ui-scale, 1)) calc(14px * var(--lf-ui-scale, 1)) calc(14px * var(--lf-ui-scale, 1));
}

.lf-store-card__title {
  font-size: calc(1rem * var(--lf-ui-scale, 1));
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--lf-orange) !important;
  font-family: var(--lf-partner-font);
  line-height: 1.25;
}

.lf-store-card__link:hover .lf-store-card__title {
  color: var(--lf-orange-dark) !important;
}

.lf-store-card__rating {
  margin: 0 0 4px;
  font-size: calc(0.85rem * var(--lf-ui-scale, 1));
  color: var(--lf-text);
}

.lf-store-card__rating .fa-star {
  color: #ffb800;
}

.lf-store-card__meta,
.lf-store-card__delivery {
  margin: 0;
  font-size: calc(0.8rem * var(--lf-ui-scale, 1));
  color: var(--lf-text-muted);
}

.lf-store-card__status {
  margin: 6px 0 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.lf-store-card__status.is-open {
  color: #2e7d32;
}

.lf-store-card__status.is-closed {
  color: var(--lf-red);
}

/* Como funciona */
.lf-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.lf-steps__title-wrap {
  text-align: center;
  margin-bottom: 12px;
}

.lf-steps__title-wrap h2 {
  font-size: calc(1.5rem * var(--lf-ui-scale, 1));
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--lf-orange) !important;
  font-family: var(--lf-partner-font);
}

.lf-steps__line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--lf-orange) 0%, var(--lf-orange-dark) 100%);
  margin: 0 auto;
  border-radius: 999px;
}

.lf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lf-step__icon {
  position: relative;
  width: calc(84px * var(--lf-ui-scale, 1));
  height: calc(84px * var(--lf-ui-scale, 1));
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--lf-orange) 0%, var(--lf-orange-dark) 100%);
  color: var(--lf-white);
  font-size: calc(1.75rem * var(--lf-ui-scale, 1));
  box-shadow:
    0 12px 28px rgba(255, 122, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lf-step__icon i {
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.lf-step:hover .lf-step__icon {
  transform: translateY(-4px);
  box-shadow:
    0 16px 32px rgba(255, 122, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lf-step__num {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: var(--lf-white);
  color: var(--lf-orange);
  border: 2px solid var(--lf-orange);
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 800;
  font-family: var(--lf-partner-font);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.lf-step h3 {
  font-size: calc(1rem * var(--lf-ui-scale, 1));
  margin: 0 0 8px;
  color: var(--lf-orange) !important;
  font-family: var(--lf-partner-font);
  font-weight: 700;
}

.lf-step p {
  margin: 0;
  max-width: calc(16rem * var(--lf-ui-scale, 1));
  font-size: calc(0.9rem * var(--lf-ui-scale, 1));
  color: var(--lf-text-muted);
  line-height: 1.5;
}

/* CTA Parceiro — laranja + marrom/preto moderno (identidade do site) */
.lf-partner {
  max-width: var(--lf-layout-max, 1280px);
  margin: calc(56px * var(--lf-ui-scale, 1)) auto calc(64px * var(--lf-ui-scale, 1));
  padding: 0 clamp(16px, 3vw, 40px);
  font-family: var(--lf-partner-font);
}

.lf-partner__card {
  position: relative;
  min-height: clamp(380px, 48vw, 460px);
  border-radius: calc(24px * var(--lf-ui-scale, 1));
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 122, 0, 0.28);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.32),
    0 0 40px rgba(255, 122, 0, 0.1);
  background: linear-gradient(
    135deg,
    var(--lf-hero-dark, #1f1410) 0%,
    var(--lf-header-bg, #2a1814) 42%,
    #3d2818 78%,
    rgba(255, 122, 0, 0.22) 100%
  );
}

.lf-partner__card--no-bg .lf-partner__photo {
  opacity: 0.35;
  background-image: none;
}

.lf-partner__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.lf-partner__photo {
  position: absolute;
  inset: -8% -5% -8% 35%;
  background-image: var(--lf-partner-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  transform: scale(1.06);
  filter: blur(0.5px) saturate(1.05) contrast(1.08) brightness(0.92);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.lf-partner__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(13, 11, 10, 0.94) 0%,
      rgba(31, 20, 16, 0.88) 32%,
      rgba(42, 24, 20, 0.62) 50%,
      rgba(255, 122, 0, 0.18) 62%,
      transparent 82%
    ),
    radial-gradient(ellipse 75% 65% at 10% 45%, rgba(255, 122, 0, 0.15), transparent 55%),
    radial-gradient(ellipse 60% 50% at 88% 70%, rgba(0, 0, 0, 0.35), transparent 50%);
  pointer-events: none;
}

.lf-partner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  pointer-events: none;
  animation: lfPartnerOrb 14s ease-in-out infinite;
}

.lf-partner__orb--1 {
  width: 280px;
  height: 280px;
  left: -8%;
  top: 10%;
  background: rgba(255, 122, 0, 0.42);
}

.lf-partner__orb--2 {
  width: 220px;
  height: 220px;
  right: 8%;
  bottom: -5%;
  background: rgba(255, 200, 140, 0.18);
  animation-delay: -5s;
}

.lf-partner__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes lfPartnerOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.08); }
}

.lf-partner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 56px);
  box-sizing: border-box;
}

.lf-partner__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.lf-partner__visual {
  display: none;
}

.lf-partner__content {
  max-width: 34rem;
  color: #fff;
  text-align: left;
}

.lf-partner__content h2 {
  margin: 0 0 calc(16px * var(--lf-ui-scale, 1));
  font-family: var(--lf-partner-font);
  font-size: clamp(
    calc(2rem * var(--lf-ui-scale, 1)),
    calc(5.2vw * var(--lf-ui-scale, 1)),
    calc(3.25rem * var(--lf-ui-scale, 1))
  );
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.lf-partner__subtitle {
  display: inline-block;
  margin: 0 0 clamp(24px, 4vw, 32px);
  max-width: min(36ch, 100%);
  padding: calc(14px * var(--lf-ui-scale, 1)) calc(20px * var(--lf-ui-scale, 1));
  border-radius: calc(14px * var(--lf-ui-scale, 1));
  font-family: var(--lf-partner-font);
  font-size: clamp(
    calc(1rem * var(--lf-ui-scale, 1)),
    calc(2.2vw * var(--lf-ui-scale, 1)),
    calc(1.1875rem * var(--lf-ui-scale, 1))
  );
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(
    135deg,
    rgba(42, 24, 20, 0.82) 0%,
    rgba(31, 20, 16, 0.78) 100%
  );
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-left: 4px solid var(--lf-orange);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-shadow: none;
}

.lf-partner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(12px * var(--lf-ui-scale, 1));
  margin: 0 0 clamp(24px, 3vw, 28px);
  padding: calc(16px * var(--lf-ui-scale, 1)) calc(28px * var(--lf-ui-scale, 1));
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
  color: var(--lf-orange);
  font-family: var(--lf-partner-font);
  font-size: clamp(
    calc(0.9375rem * var(--lf-ui-scale, 1)),
    calc(2vw * var(--lf-ui-scale, 1)),
    calc(1.0625rem * var(--lf-ui-scale, 1))
  );
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 122, 0, 0.15) inset;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.2s ease,
    color 0.2s ease;
  animation: lfPartnerBtnPulse 3.2s ease-in-out infinite;
}

.lf-partner__btn span {
  white-space: nowrap;
}

.lf-partner__btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(28px * var(--lf-ui-scale, 1));
  height: calc(28px * var(--lf-ui-scale, 1));
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.14);
  color: var(--lf-orange-dark);
  font-size: calc(0.875rem * var(--lf-ui-scale, 1));
  transition: transform 0.25s ease, background 0.25s ease;
}

.lf-partner__btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: #ffffff;
  color: var(--lf-orange-dark);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 122, 0, 0.25) inset;
  animation: none;
}

.lf-partner__btn:hover i {
  transform: translateX(3px);
  background: rgba(255, 122, 0, 0.22);
}

@keyframes lfPartnerBtnPulse {
  0%, 100% {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(255, 122, 0, 0.2);
  }
  50% {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32), 0 0 0 8px rgba(255, 122, 0, 0);
  }
}

.lf-partner__glass-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lf-partner__glass-card {
  display: flex;
  align-items: center;
  gap: calc(12px * var(--lf-ui-scale, 1));
  flex: 1 1 calc(160px * var(--lf-ui-scale, 1));
  min-width: 0;
  padding: calc(14px * var(--lf-ui-scale, 1)) calc(18px * var(--lf-ui-scale, 1));
  border-radius: calc(16px * var(--lf-ui-scale, 1));
  background: linear-gradient(
    135deg,
    rgba(42, 24, 20, 0.72) 0%,
    rgba(26, 18, 14, 0.65) 100%
  );
  border: 1px solid rgba(255, 122, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  animation: lfPartnerCardFloat 5s ease-in-out infinite;
}

.lf-partner__glass-card:nth-child(2) {
  animation-delay: -2.2s;
}

.lf-partner__glass-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(
    135deg,
    rgba(58, 32, 26, 0.82) 0%,
    rgba(31, 20, 16, 0.75) 100%
  );
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 122, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

@keyframes lfPartnerCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.lf-partner__glass-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(44px * var(--lf-ui-scale, 1));
  height: calc(44px * var(--lf-ui-scale, 1));
  flex-shrink: 0;
  border-radius: calc(12px * var(--lf-ui-scale, 1));
  background: linear-gradient(145deg, var(--lf-orange) 0%, var(--lf-orange-dark) 100%);
  color: #fff;
  font-size: calc(1.125rem * var(--lf-ui-scale, 1));
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.35);
}

.lf-partner__glass-label {
  font-size: calc(0.9375rem * var(--lf-ui-scale, 1));
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .lf-partner__photo {
    inset: -10% -8% -10% 42%;
    background-position: 70% center;
  }

  .lf-partner__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 32px;
  }

  .lf-partner__visual {
    display: block;
    min-height: 320px;
  }

  .lf-partner__content {
    max-width: 28rem;
  }

  .lf-partner__content h2 {
    max-width: 14ch;
  }
}

@media (min-width: 992px) {
  .lf-partner__card {
    min-height: 440px;
  }

  .lf-partner__photo {
    inset: -12% -5% -12% 48%;
    background-position: 85% 20%;
  }

  .lf-partner__inner {
    padding: 52px 64px;
  }

  .lf-partner__content h2 {
    font-size: 3.125rem;
  }
}

@media (max-width: 767px) {
  .lf-partner__card {
    min-height: clamp(420px, 115vw, 520px);
  }

  .lf-partner__photo {
    inset: 0;
    background-position: 75% 15%;
    opacity: 0.85;
  }

  .lf-partner__veil {
    background:
      linear-gradient(
        180deg,
        rgba(13, 11, 10, 0.92) 0%,
        rgba(31, 20, 16, 0.85) 45%,
        rgba(255, 122, 0, 0.22) 100%
      );
  }

  .lf-partner__inner {
    align-items: flex-end;
    padding: 28px 20px 32px;
  }

  .lf-partner__content {
    max-width: 100%;
  }

  .lf-partner__btn {
    width: 100%;
    max-width: 100%;
  }

  .lf-partner__glass-row {
    flex-direction: column;
  }

  .lf-partner__glass-card {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lf-partner__orb,
  .lf-partner__btn,
  .lf-partner__glass-card,
  .lf-partner__photo {
    animation: none !important;
    transition: none !important;
  }
}

/* Footer — base (tema escuro aplicado em delivery-brand-public.css) */
.lf-footer {
  background: var(--lf-hero-dark, #1f1410);
  padding: 40px 20px 24px;
}

.lf-footer__grid {
  max-width: var(--lf-layout-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 24px;
  align-items: start;
}

.lf-footer__col {
  min-width: 0;
}

body.landing-ifood .lf-footer h4 {
  font-size: calc(1rem * var(--lf-ui-scale, 1));
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--lf-orange) !important;
  letter-spacing: 0.02em;
}

.lf-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lf-footer ul li {
  margin-bottom: 5px;
}

.lf-footer ul li:last-child {
  margin-bottom: 0;
}

body.landing-ifood .lf-footer ul a {
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none;
  font-size: calc(0.9375rem * var(--lf-ui-scale, 1));
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
}

body.landing-ifood .lf-footer ul a:hover {
  color: var(--lf-orange) !important;
}

.lf-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lf-footer__social li {
  margin: 0;
}

.lf-footer__social a {
  width: calc(44px * var(--lf-ui-scale, 1));
  height: calc(44px * var(--lf-ui-scale, 1));
  border-radius: 50%;
  background: var(--lf-header-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lf-orange) !important;
  font-size: calc(1.2rem * var(--lf-ui-scale, 1));
  text-decoration: none;
  border: 1px solid rgba(255, 122, 0, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lf-footer__social a:hover {
  color: var(--lf-header-bg) !important;
  background: var(--lf-orange);
  border-color: var(--lf-orange);
  transform: translateY(-2px);
}

.lf-footer__copy {
  max-width: var(--lf-layout-max);
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

@media (min-width: 560px) {
  .lf-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
  }
}

@media (min-width: 768px) {
  .lf-footer {
    padding: 40px 24px 22px;
  }

  body.landing-ifood .lf-footer h4 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
  }

  .lf-footer ul a {
    font-size: 1rem;
  }

}

/* WhatsApp — um botão, visível só no fim da página */
body.landing-ifood a.blantershow-chat {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

body.landing-ifood a.blantershow-chat.is-scroll-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Busca CEP resultados */
#resultadobusca .lf-search-results {
  max-width: var(--lf-layout-max);
  margin: 0 auto;
  padding: calc(32px * var(--lf-ui-scale, 1)) var(--lf-section-pad-x);
}

#resultadobusca .lf-search-results h2 {
  font-size: calc(1.35rem * var(--lf-ui-scale, 1));
  font-weight: 800;
  margin: 0 0 calc(20px * var(--lf-ui-scale, 1));
  color: var(--lf-orange) !important;
}

#resultadobusca .lf-stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(260px * var(--lf-ui-scale, 1)), 1fr));
  gap: var(--lf-gap);
}

/* Responsive */
@media (min-width: 768px) {
  body.landing-ifood {
    --lf-ui-scale: 1.28;
    --lf-layout-max: 1240px;
  }

  .lf-header__actions .lf-btn-header--outline,
  .lf-header__actions .lf-btn-header--fill {
    display: inline-flex;
  }

  .lf-search .btn_search,
  .lf-search #pesquisar {
    padding: 0 calc(28px * var(--lf-ui-scale, 1));
  }

  #resultadobusca .lf-search-results h2 {
    font-size: calc(1.35rem * var(--lf-ui-scale, 1));
  }

  body.landing-ifood a.blantershow-chat.is-scroll-visible {
    font-size: 1rem !important;
    padding: 12px 22px !important;
  }
}

@media (min-width: 992px) {
  body.landing-ifood {
    --lf-ui-scale: 1.5;
    --lf-layout-max: 1280px;
    --lf-store-card-w: calc(280px * var(--lf-ui-scale));
  }

  .lf-nav {
    display: flex;
  }

  .lf-menu-toggle {
    display: none;
  }

  .lf-hero {
    min-height: calc(580px * var(--lf-ui-scale, 1.5));
    padding-top: calc(var(--lf-header-h) + 32px);
    background-position: 78% center;
  }

  .lf-hero::before {
    background: linear-gradient(
      90deg,
      rgba(31, 20, 16, 0.94) 0%,
      rgba(42, 24, 20, 0.82) 46%,
      rgba(42, 24, 20, 0.2) 54%,
      transparent 62%
    );
  }

  .lf-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: calc(24px * var(--lf-ui-scale, 1.5)) calc(40px * var(--lf-ui-scale, 1.5));
    align-items: center;
    padding-bottom: calc(36px * var(--lf-ui-scale, 1.5));
  }

  .lf-hero__content {
    max-width: calc(34rem * var(--lf-ui-scale, 1.5));
  }

  .lf-hero__visual {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: calc(260px * var(--lf-ui-scale, 1.5));
    padding-bottom: calc(48px * var(--lf-ui-scale, 1.5));
  }

  .lf-hero__badge {
    margin-right: 0;
  }

  .lf-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .lf-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(24px * var(--lf-ui-scale, 1.5)) calc(36px * var(--lf-ui-scale, 1.5));
  }

  .lf-carousel__btn {
    display: flex;
    width: calc(44px * var(--lf-ui-scale, 1.5));
    height: calc(44px * var(--lf-ui-scale, 1.5));
    font-size: calc(1.1rem * var(--lf-ui-scale, 1.5));
  }
}

@media (max-width: 767px) {
  .lf-hero {
    min-height: auto;
    padding-top: calc(var(--lf-header-h) + 20px);
    padding-bottom: 8px;
    background-position: 72% 40%;
  }

  .lf-hero::before {
    background: linear-gradient(
      180deg,
      rgba(31, 20, 16, 0.94) 0%,
      rgba(42, 24, 20, 0.88) 55%,
      rgba(42, 24, 20, 0.5) 100%
    );
  }

  .lf-hero__grid {
    padding-bottom: 20px;
  }

  .lf-hero__headline {
    margin-bottom: 10px;
  }

  .lf-hero__features {
    margin-top: calc(18px * var(--lf-ui-scale, 1.15));
    gap: calc(12px * var(--lf-ui-scale, 1.15)) calc(16px * var(--lf-ui-scale, 1.15));
  }

  .lf-search {
    max-width: 100%;
  }
}

/* Neutraliza #count legado (style.css) na landing */
body.landing-ifood #count.lf-hero-stats {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
  margin-top: auto !important;
  font-size: inherit !important;
}

body.landing-ifood #count.lf-hero-stats ul li {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: none !important;
  border: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

body.delivery-modern.delivery-landing #count.lf-hero-stats {
  background: linear-gradient(
    180deg,
    rgba(31, 20, 16, 0.55) 0%,
    rgba(26, 18, 14, 0.65) 100%
  ) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.delivery-modern.delivery-landing #count.lf-hero-stats ul {
  justify-content: center !important;
}

body.delivery-modern.delivery-landing #count.lf-hero-stats ul li {
  font-size: clamp(
    calc(0.8125rem * var(--lf-ui-scale, 1)),
    calc(2.5vw * var(--lf-ui-scale, 1)),
    calc(1.125rem * var(--lf-ui-scale, 1))
  ) !important;
}

body.delivery-modern.delivery-landing #count.lf-hero-stats .number {
  font-size: clamp(
    calc(1.25rem * var(--lf-ui-scale, 1)),
    calc(4vw * var(--lf-ui-scale, 1)),
    calc(2.25rem * var(--lf-ui-scale, 1))
  ) !important;
  font-weight: 800 !important;
  display: block !important;
  text-align: center !important;
}
