@font-face {
  font-family: "PodiumTitle";
  src: url("assets/fonts/podium-title-4-12.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PodiumPrice";
  src: url("assets/fonts/podium-price-6-7.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PodiumAmount";
  src: url("assets/fonts/podium-amount-5-10.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RobotoLocal";
  src: url("assets/fonts/roboto-light-italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #050505;
  --ink: #fff8ed;
  --muted: rgba(255, 248, 237, 0.74);
  --line: rgba(255, 248, 237, 0.18);
  --hot: #ff3030;
  --gold: #f4c15d;
  --smoke: rgba(5, 5, 5, 0.74);
  --glass: rgba(15, 13, 12, 0.48);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "PodiumTitle", Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  overflow: hidden;
}

body {
  position: fixed;
  inset: 0;
}

button {
  font: inherit;
}

#feed {
  height: 100dvh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  background: #000;
}

.snap {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 620px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  isolation: isolate;
}

.media,
.poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.media {
  z-index: 1;
}

.poster {
  z-index: 0;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 46%);
  pointer-events: none;
}

.intro .shade {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 55%);
}

.intro-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(72px, env(safe-area-inset-bottom));
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 0 28px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.instruction {
  max-width: 280px;
  margin: 0;
  color: var(--ink);
  font-family: "PodiumPrice", Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88);
}

.scroll-cue {
  width: 28px;
  height: 46px;
  margin-top: 8px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  position: relative;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: var(--hot);
  transform: translateX(-50%);
  animation: scrollHint 1.25s infinite;
}

.topbar {
  position: absolute;
  z-index: 4;
  top: max(28px, env(safe-area-inset-top));
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clean-toggle {
  position: absolute;
  z-index: 5;
  top: max(30px, env(safe-area-inset-top));
  right: 16px;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.38);
  color: rgba(255, 248, 237, 0.92);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.brand-logo {
  width: 42px;
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.65));
}

.burger-copy {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: max(88px, calc(env(safe-area-inset-bottom) + 72px));
  display: grid;
  gap: 8px;
  max-width: 620px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.burger-copy h2 {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: "PodiumTitle", Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  font-size: var(--fit-title-size, 56px);
  line-height: 0.82;
  overflow-wrap: break-word;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72);
}

.long-title .burger-copy h2 {
  font-size: var(--fit-title-size, 46px);
}

.extra-long-title .burger-copy h2 {
  font-size: var(--fit-title-size, 40px);
}

.tagline {
  max-width: 340px;
  margin: 0;
  color: var(--ink);
  font-family: "RobotoLocal", Roboto, Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.03;
}

.price-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 8px;
}

.price-pill {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 34px;
  padding: 7px 10px 6px;
  border: 0;
  background: #ff393d;
  color: #fff;
}

.price-pill .label {
  font-family: "PodiumPrice", Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 0.9;
  text-transform: none;
}

.price-pill .amount {
  font-family: "PodiumAmount", Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  font-size: 24px;
  line-height: 0.9;
}

.sponsor-strip {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.sponsor-strip img {
  display: block;
  max-width: 58px;
  max-height: 24px;
  object-fit: contain;
  opacity: 0.7;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.burger.is-clean .burger-copy,
.burger.is-clean .sponsor-strip {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.burger.is-clean .shade {
  opacity: 0.18;
}

.closing .shade {
  background: #000;
}

.closing-content {
  position: relative;
  z-index: 3;
  min-height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 54px;
  padding: 48px 28px;
  text-align: center;
}

.closing-logo {
  width: 86px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
}

.closing-links {
  width: min(100%, 320px);
  display: grid;
  gap: 18px;
}

.closing-link {
  display: grid;
  gap: 4px;
  min-height: 82px;
  align-content: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.42);
  color: var(--ink);
  text-decoration: none;
}

.closing-link span {
  font-family: "RobotoLocal", Roboto, Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.closing-link strong {
  font-family: "PodiumTitle", Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  font-size: 44px;
  line-height: 0.9;
  text-transform: uppercase;
}

.pedidos-link img {
  justify-self: center;
  max-width: 190px;
  max-height: 42px;
  object-fit: contain;
}

@keyframes scrollHint {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

@media (min-width: 760px) {
  body {
    display: grid;
    place-items: center;
    background:
      linear-gradient(90deg, #140505, #050505 24%, #050505 76%, #1d0707);
  }

  #feed {
    width: min(430px, 100vw);
    height: min(920px, 100dvh);
    border-inline: 1px solid rgba(255, 255, 255, 0.1);
  }

  .snap {
    min-height: min(920px, 100dvh);
  }

  .burger-copy h2 {
    font-size: var(--fit-title-size, 58px);
  }
}

@media (max-width: 430px) {
  .topbar {
    top: max(22px, env(safe-area-inset-top));
  }

  .brand-logo {
    width: 34px;
  }

  .clean-toggle {
    top: max(22px, env(safe-area-inset-top));
    right: 12px;
    min-height: 28px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .burger-copy {
    left: 16px;
    right: 16px;
    bottom: max(80px, calc(env(safe-area-inset-bottom) + 68px));
    gap: 6px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .burger-copy h2 {
    max-width: 360px;
    font-size: var(--fit-title-size, 48px);
  }

  .long-title .burger-copy h2 {
    font-size: var(--fit-title-size, 40px);
  }

  .extra-long-title .burger-copy h2 {
    font-size: var(--fit-title-size, 34px);
  }

  .tagline {
    max-width: 315px;
    font-size: 20px;
  }

  .price-row {
    gap: 7px;
    margin-top: 7px;
  }

  .price-pill {
    gap: 6px;
    min-height: 32px;
    padding: 6px 9px 5px;
  }

  .price-pill .label {
    font-size: 12px;
  }

  .price-pill .amount {
    font-size: 22px;
  }

  .sponsor-strip {
    left: 18px;
    right: 18px;
    gap: 10px;
  }

  .sponsor-strip img {
    max-width: 50px;
    max-height: 21px;
  }
}
