:root {
  --black: #030303;
  --dark: #090909;
  --soft-dark: #111111;
  --orange: #f36b21;
  --burnt: #a93a0b;
  --gold: #c69b5c;
  --white: #ffffff;
  --muted: #aaa;
  --border: rgba(255, 255, 255, 0.11);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* LOADER */

.loader {
  position: fixed;
  inset: 0;
  background: #020202;
  z-index: 999;
  display: grid;
  place-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-img {
  width: min(260px, 58vw);
  height: auto;
  filter: drop-shadow(0 0 38px rgba(243, 107, 33, 0.45));
}

.loader span {
  position: absolute;
  bottom: 30%;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 5px;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 6vw;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.35s ease;
}

.header.scrolled {
  height: 72px;
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand img {
  width: 115px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.3s;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.header-btn {
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: 0.3s;
}

.header-btn:hover {
  background: var(--orange);
  color: #fff;
}

/* MOBILE MENU */

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(3, 3, 3, 0.96);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
  gap: 28px;
  transform: translateY(-100%);
  transition: 0.65s cubic-bezier(.77,0,.18,1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: clamp(36px, 10vw, 72px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  background: #050505;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(243,107,33,.18), transparent 30%),
    linear-gradient(to right, rgba(0,0,0,.94), rgba(0,0,0,.54), rgba(0,0,0,.76));
}

/* EMBERS */
.embers-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ember {
  position: absolute;
  bottom: -24px;
  background: radial-gradient(circle, var(--orange), var(--burnt));
  border-radius: 50%;
  filter: blur(0.6px);
  box-shadow: 0 0 12px rgba(243, 107, 33, 0.95), 0 0 24px rgba(243, 107, 33, 0.45);
  animation: float-up linear infinite;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 970px;
  padding-top: 70px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(58px, 10vw, 150px);
  line-height: 0.88;
  letter-spacing: -6px;
  text-transform: uppercase;
}

.hero-description {
  max-width: 650px;
  margin-top: 28px;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--burnt));
  color: #fff;
  box-shadow: 0 18px 55px rgba(243, 107, 33, 0.32);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}

.btn-ifood {
  background: #ea1d2c;
  color: #fff;
  box-shadow: 0 18px 55px rgba(234, 29, 44, 0.25);
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  left: 6vw;
  bottom: 36px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-indicator span {
  width: 34px;
  height: 1px;
  background: var(--orange);
  display: block;
}

/* A BRASA */

.manifesto {
  position: relative;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.manifesto-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(243,107,33,.14), transparent 34%),
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.92));
}

.manifesto-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 88vw);
  text-align: center;
}

.manifesto h2,
.cuts-intro h2,
.experience h2,
.ifood-section h2,
.reservation h2 {
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.ritual-list {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ritual-list span {
  font-size: clamp(38px, 8vw, 105px);
  line-height: 0.95;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.38);
  text-transform: uppercase;
}

.ritual-list span:last-child {
  color: var(--orange);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 50px rgba(243,107,33,.35);
}

/* CORTES */

.cuts-intro {
  padding: 150px 6vw 90px;
  background: var(--black);
  text-align: center;
}

.section-description {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.cut-showcase {
  background: var(--black);
}

.cut-panel {
  min-height: 105vh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 5vw;
  padding: 7vw 6vw;
  border-top: 1px solid var(--border);
}

.cut-panel.reverse {
  grid-template-columns: .85fr 1.15fr;
}

.cut-panel.reverse img {
  order: 2;
}

.cut-panel img {
  width: 100%;
  height: 78vh;
  object-fit: cover;
  border-radius: 34px;
  filter: saturate(1.05) contrast(1.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  transition: transform .35s ease;
}

.cut-info span {
  color: var(--orange);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 4px;
}

.cut-info h3 {
  margin-top: 22px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.cut-info p {
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  max-width: 510px;
}

.cut-info a {
  margin-top: 34px;
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

/* EXPERIÊNCIA */

.experience {
  padding: 150px 6vw;
  background:
    radial-gradient(circle at 20% 10%, rgba(243,107,33,.12), transparent 35%),
    #090909;
}

.experience-text {
  max-width: 950px;
  margin-bottom: 80px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.exp-card {
  position: relative;
  min-height: 440px;
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #111;
}

.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.15)),
    radial-gradient(circle at 50% 80%, rgba(243,107,33,.15), transparent 36%);
  z-index: 1;
}

.exp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.exp-card:hover img {
  transform: scale(1.08);
}

.exp-card div {
  position: relative;
  z-index: 2;
}

.exp-card span {
  color: var(--orange);
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 900;
}

.exp-card h3 {
  font-size: 30px;
  margin: 16px 0;
  text-transform: uppercase;
}

.exp-card p {
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}

/* GALERIA */

.gallery {
  padding: 90px 0;
  overflow: hidden;
  background: #030303;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee-track img {
  width: 360px;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
  filter: grayscale(.1) contrast(1.08);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes float-up {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(var(--x-move), var(--y-move), 0) scale(0.2);
    opacity: 0;
  }
}

/* IFOOD */

.ifood-section {
  min-height: 100vh;
  padding: 140px 6vw;
  background:
    radial-gradient(circle at 75% 50%, rgba(234,29,44,.18), transparent 30%),
    #090909;
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 8vw;
}

.ifood-content {
  max-width: 850px;
}

.phone-mockup {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 54px;
  background: linear-gradient(145deg, #202020, #050505);
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.phone-screen {
  border-radius: 42px;
  overflow: hidden;
  height: 560px;
  background: #111;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESERVA */

.reservation {
  position: relative;
  min-height: 100vh;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    url("img/7.png");
  background-size: cover;
  background-position: center;
}

.reservation-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(243,107,33,.16), transparent 34%),
    rgba(0,0,0,.78);
}

.reservation-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.reservation-content p {
  max-width: 690px;
  margin: 28px auto 0;
  color: rgba(255,255,255,.75);
  font-size: 20px;
  line-height: 1.7;
}

.reservation-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

/* FOOTER */

.footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding: 70px 6vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 130px;
  height: auto;
  margin-bottom: 12px;
}

.footer strong {
  color: #fff;
  display: block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.footer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* ANIMAÇÕES */

.reveal,
.reveal-text,
.reveal-title {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.active,
.reveal-text.active,
.reveal-title.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-title {
  transition-delay: .15s;
}

/* RESPONSIVO */

@media (max-width: 1100px) {
  .desktop-nav,
  .header-btn {
    display: none;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 120;
  }

  .cut-panel,
  .cut-panel.reverse,
  .ifood-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .cut-panel.reverse img {
    order: initial;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-screen {
    height: 560px;
  }
}

@media (max-width: 700px) {
  .header {
    height: 76px;
    padding: 0 5vw;
  }

  .brand img {
    width: 96px;
  }

  .hero {
    padding: 0 5vw;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-actions,
  .reservation-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .manifesto,
  .cut-panel,
  .ifood-section,
  .experience,
  .reservation {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .cut-panel {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .cut-panel img {
    height: 460px;
    border-radius: 24px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .exp-card {
    min-height: 430px;
  }

  .marquee-track img {
    width: 260px;
    height: 380px;
  }

  .phone-screen {
    height: 500px;
  }

  .footer {
    padding: 54px 5vw;
  }
}
