/* ============================================================
   PIZZA HOUR · HOME "HOUR SHOW" — inspirado em pinza.com
   Laranja + Preto · Tipografia gigante Anton · GSAP
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@500;600;700;800&display=swap');

:root {
  --ph-orange: #ff6b35;
  --ph-orange-hot: #ff4e1f;
  --ph-orange-soft: #ff8f5e;
  --ph-black: #0a0a0a;
  --ph-black2: #111111;
  --ph-cream: #fff3ec;
  --font-giant: 'Anton', 'Sora', sans-serif;
  --font-strong: 'Archivo', 'Inter', sans-serif;
}

body.home-v2 { background: var(--ph-black); }

/* seleções e detalhes */
body.home-v2 ::selection { background: var(--ph-orange); color: #000; }

/* ------------------------------------------------------------
   HERO — "TÁ NA HORA DE ..." + leque de pizzas
   ------------------------------------------------------------ */
.hh-hero {
  position: relative;
  min-height: 100svh;
  padding: 130px 20px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% 115%, rgba(255, 107, 53, .28), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% -10%, rgba(255, 78, 31, .12), transparent 65%),
    var(--ph-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hh-hero-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-strong); font-weight: 800;
  font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 9px 20px; border-radius: 60px; margin-bottom: 26px;
  background: #16c25b; color: #04150a;
}
.hh-hero-status.closed { background: #2a2a2a; color: #999; }
.hh-hero-status .dot { width: 9px; height: 9px; border-radius: 50%; background: #04150a; animation: hh-pulse 1.6s infinite; }
.hh-hero-status.closed .dot { background: #777; }
@keyframes hh-pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

.hh-hero-title {
  font-family: var(--font-giant);
  font-weight: 400;
  font-size: clamp(3.2rem, 10.5vw, 9rem);
  line-height: .95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.hh-hero-title .hh-line { display: block; overflow: hidden; padding-top: .12em; margin-bottom: -.12em; }
.hh-hero-title .hh-line > span { display: inline-block; }

.hh-word-wrap { position: relative; display: inline-block; }
.hh-word {
  color: var(--ph-orange);
  display: inline-block;
}
.hh-word-dots {
  position: absolute; left: 4%; right: 4%; bottom: -.12em;
  height: .09em;
  background-image: radial-gradient(circle, var(--ph-orange) 42%, transparent 46%);
  background-size: .22em .09em;
  background-repeat: repeat-x;
}

/* sticker manuscrito */
.hh-sticker {
  position: absolute;
  left: clamp(8px, 6vw, 120px);
  top: 21%;
  font-family: var(--font-hand, 'Caveat', cursive);
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: var(--ph-cream);
  transform: rotate(-8deg);
  max-width: 170px;
  line-height: 1.15;
  z-index: 5;
  pointer-events: none;
}
.hh-sticker svg { display: block; margin: 8px auto 0; width: 44px; opacity: .85; }
.hh-sticker svg path { stroke: var(--ph-cream); }

.hh-sticker.right {
  left: auto;
  right: clamp(8px, 6vw, 120px);
  transform: rotate(7deg);
  color: var(--ph-orange-soft);
}

/* ---- leque de pizzas ---- */
.hh-fan {
  --pz-size: clamp(220px, 27vw, 400px);
  position: absolute;
  left: 0; right: 0;
  bottom: calc(-1 * clamp(70px, 9vw, 150px));
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
  height: var(--pz-size);
  z-index: 2;
}

.hh-fan-item {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--pz-size, 300px);
  height: var(--pz-size, 300px);
  margin-left: calc(var(--pz-size, 300px) / -2);
  border-radius: 50%;
  will-change: transform;
}
.hh-fan-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .75), 0 0 0 6px rgba(255, 255, 255, .04);
  user-select: none;
  -webkit-user-drag: none;
}
.hh-fan-item .hh-fan-label {
  position: absolute; left: 50%; bottom: -14px;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--ph-orange);
  color: #000;
  font-family: var(--font-strong); font-weight: 800;
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 40px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .35s ease;
}
.hh-fan-item.is-center .hh-fan-label { opacity: 1; }

/* setas do carrossel */
.hh-fan-arrow {
  position: absolute;
  top: 52%;
  z-index: 6;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .45);
  background: rgba(10, 10, 10, .35);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.hh-fan-arrow:hover { border-color: var(--ph-orange); color: var(--ph-orange); transform: scale(1.08); }
.hh-fan-arrow.prev { left: clamp(10px, 8vw, 180px); }
.hh-fan-arrow.next { right: clamp(10px, 8vw, 180px); }

/* scroll hint */
.hh-scroll-hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 6;
  color: rgba(255,255,255,.55);
  font-family: var(--font-strong); font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  animation: hh-bob 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hh-bob { 0%,100% { transform: translate(-50%, 0) } 50% { transform: translate(-50%, 8px) } }

/* ------------------------------------------------------------
   FAIXAS MARQUEE DIAGONAIS
   ------------------------------------------------------------ */
.hh-band {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: var(--ph-orange);
  transform: rotate(-2.5deg) scale(1.06);
  padding: clamp(10px, 1.6vw, 22px) 0;
  box-shadow: 0 20px 70px rgba(255, 107, 53, .25);
}
.hh-band.flip { transform: rotate(2.5deg) scale(1.06); background: var(--ph-orange-hot); }

.hh-band-track {
  display: flex;
  width: max-content;
  animation: hh-marquee 22s linear infinite;
}
.hh-band.flip .hh-band-track { animation-direction: reverse; }

.hh-band-track span {
  font-family: var(--font-giant);
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  text-transform: uppercase;
  color: var(--ph-black);
  white-space: nowrap;
  padding-right: .6em;
  letter-spacing: 1px;
}
.hh-band-track span em { font-style: normal; -webkit-text-stroke: 2px var(--ph-black); color: transparent; }

@keyframes hh-marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   SEÇÃO MASSA — pizza gigante girando + badges
   ------------------------------------------------------------ */
.hh-massa {
  position: relative;
  background: var(--ph-black);
  padding: clamp(90px, 12vw, 170px) 24px;
  overflow: hidden;
}

.hh-massa-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.hh-massa-visual { position: relative; }
.hh-massa-pizza {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 40px 120px rgba(255, 107, 53, .22), 0 0 0 10px rgba(255, 255, 255, .03);
  will-change: transform;
}

.hh-badge {
  position: absolute;
  width: clamp(110px, 11vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ph-orange);
  color: var(--ph-black);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-strong); font-weight: 800;
  font-size: clamp(.7rem, .85vw, .85rem);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 14px;
  transform: rotate(8deg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
}
.hh-badge.b1 { top: -6%; right: -4%; }
.hh-badge.b2 { bottom: 2%; left: -7%; background: var(--ph-cream); transform: rotate(-9deg); }

.hh-kicker {
  font-family: var(--font-hand, 'Caveat', cursive);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--ph-orange-soft);
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 10px;
}

.hh-h2 {
  font-family: var(--font-giant);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: .98;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .5px;
  margin-bottom: 26px;
}
.hh-h2 .stroke { -webkit-text-stroke: 2px var(--ph-orange); color: transparent; }
.hh-h2 .fill { color: var(--ph-orange); }

.hh-massa-txt p {
  color: #b9b0aa;
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 520px;
}
.hh-massa-txt strong { color: var(--ph-cream); }

.hh-checks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hh-checks span {
  font-family: var(--font-strong); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--ph-cream);
  border: 1.5px dashed rgba(255, 107, 53, .55);
  padding: 10px 18px; border-radius: 50px;
}

/* ------------------------------------------------------------
   INSTAGRAM — stories sobre texto gigante
   ------------------------------------------------------------ */
.hh-insta {
  position: relative;
  background: var(--ph-black2);
  padding: clamp(90px, 11vw, 160px) 0 clamp(100px, 12vw, 180px);
  overflow: hidden;
}

.hh-insta-bg {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; gap: clamp(6px, 1vw, 16px);
  transform: rotate(-6deg) scale(1.25);
  pointer-events: none;
  opacity: .5;
}
.hh-insta-bg .row {
  display: flex; width: max-content;
  font-family: var(--font-giant);
  font-size: clamp(3.4rem, 8vw, 8rem);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  -webkit-text-stroke: 1.5px rgba(255, 107, 53, .35);
  color: transparent;
  animation: hh-marquee 38s linear infinite;
}
.hh-insta-bg .row.solid { color: rgba(255, 107, 53, .16); -webkit-text-stroke: 0; animation-direction: reverse; animation-duration: 46s; }
.hh-insta-bg .row span { padding-right: .5em; }

.hh-insta-head { position: relative; z-index: 2; text-align: center; margin-bottom: clamp(36px, 5vw, 64px); padding: 0 20px; }
.hh-insta-head .hh-h2 { margin-bottom: 12px; }
.hh-insta-head p { color: #b9b0aa; max-width: 460px; margin: 0 auto; line-height: 1.7; }

.hh-stories {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  padding: 0 20px;
  flex-wrap: wrap;
}

.hh-story {
  position: relative;
  width: clamp(190px, 17vw, 250px);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
  border: 3px solid transparent;
  background-clip: padding-box;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}
.hh-story::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 25px;
  padding: 3px;
  background: linear-gradient(135deg, var(--ph-orange), #ffb800, var(--ph-orange-hot));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
.hh-story:nth-child(odd)  { transform: rotate(-3.5deg) translateY(12px); }
.hh-story:nth-child(even) { transform: rotate(3deg) translateY(-10px); }
.hh-story:hover { transform: rotate(0) translateY(-16px) scale(1.04); z-index: 5; }

.hh-story iframe {
  width: 100%; height: calc(100% + 120px);
  border: 0; display: block;
  background: #000;
}
.hh-story .hh-story-tag {
  position: absolute; top: 10px; left: 10px; z-index: 4;
  background: rgba(10, 10, 10, .8);
  color: var(--ph-orange-soft);
  font-family: var(--font-strong); font-weight: 700; font-size: .68rem;
  letter-spacing: 1px;
  padding: 5px 12px; border-radius: 30px;
  pointer-events: none;
}

.hh-insta-cta { position: relative; z-index: 2; text-align: center; margin-top: clamp(100px, 10vw, 150px); }

/* ------------------------------------------------------------
   BOTÕES GIGANTES
   ------------------------------------------------------------ */
.hh-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-giant);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ph-black) !important;
  background: var(--ph-orange);
  padding: 18px 44px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 14px 44px rgba(255, 107, 53, .35);
}
.hh-btn:hover { transform: translateY(-4px) rotate(-1deg); background: var(--ph-cream); box-shadow: 0 20px 60px rgba(255, 107, 53, .45); }

.hh-btn.ghost {
  background: transparent;
  color: var(--ph-cream) !important;
  border: 2px dashed rgba(255, 243, 236, .5);
  box-shadow: none;
}
.hh-btn.ghost:hover { border-color: var(--ph-orange); color: var(--ph-orange) !important; background: transparent; }

/* ------------------------------------------------------------
   CATEGORIAS — cartazes gigantes
   ------------------------------------------------------------ */
.hh-cats {
  position: relative;
  background: var(--ph-black);
  padding: clamp(90px, 11vw, 160px) 24px;
}
.hh-cats-head { text-align: center; max-width: 800px; margin: 0 auto clamp(44px, 6vw, 80px); }
.hh-cats-head p { color: #b9b0aa; line-height: 1.7; max-width: 480px; margin: 0 auto; }

.hh-cats-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.hh-cat {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px 26px;
  background: var(--ph-black2);
  border: 1px solid #222;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), border-color .3s;
}
.hh-cat:hover { transform: translateY(-10px) rotate(-.6deg); border-color: rgba(255, 107, 53, .6); }

.hh-cat img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), opacity .4s;
}
.hh-cat:hover img { transform: scale(1.09) rotate(1.5deg); opacity: .75; }

/* artes em grafite: cores vivas, sem esmaecer */
.hh-cat img.graffiti { opacity: 1; object-position: center 30%; }
.hh-cat:hover img.graffiti { opacity: 1; transform: scale(1.07) rotate(-1.5deg); }

.hh-cat::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, .96) 8%, rgba(10, 10, 10, .25) 55%, transparent);
}

.hh-cat > * { position: relative; z-index: 2; }
.hh-cat h3 {
  font-family: var(--font-giant);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.hh-cat p { color: #c9c0ba; font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }
.hh-cat .hh-cat-go {
  font-family: var(--font-strong); font-weight: 800;
  font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ph-orange);
}
.hh-cat .hh-cat-num {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-giant);
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 243, 236, .5);
}

/* ------------------------------------------------------------
   CTA FINAL + LOCAL
   ------------------------------------------------------------ */
.hh-final {
  position: relative;
  background: var(--ph-orange);
  padding: clamp(90px, 11vw, 150px) 24px;
  text-align: center;
  overflow: hidden;
}
.hh-final .hh-h2 { color: var(--ph-black); }
.hh-final .hh-h2 .stroke { -webkit-text-stroke-color: var(--ph-black); }
.hh-final p { color: rgba(10, 10, 10, .75); font-weight: 600; max-width: 460px; margin: 0 auto 34px; line-height: 1.7; }
.hh-final .hh-btn { background: var(--ph-black); color: var(--ph-orange) !important; box-shadow: 0 16px 50px rgba(0, 0, 0, .35); }
.hh-final .hh-btn:hover { background: #000; transform: translateY(-4px) scale(1.03); }
.hh-final .hh-kicker { color: rgba(10, 10, 10, .8); }

.hh-final-deco {
  position: absolute;
  font-family: var(--font-giant);
  font-size: clamp(6rem, 16vw, 15rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(10, 10, 10, .16);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.hh-final-deco.top { top: -4%; left: -2%; transform: rotate(-3deg); }
.hh-final-deco.bottom { bottom: -6%; right: -3%; transform: rotate(2deg); }

/* sobre / local reaproveita store-info-grid do style.css */
.hh-local { background: var(--ph-black2); }
.hh-local .map-embed { border: 1px solid #262626; }

/* ------------------------------------------------------------
   REVEALS (estado inicial controlado por JS/GSAP)
   ------------------------------------------------------------ */
[data-reveal] { will-change: transform, opacity; }

/* ------------------------------------------------------------
   RESPONSIVO
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hh-massa-inner { grid-template-columns: 1fr; }
  .hh-massa-visual { max-width: 520px; margin: 0 auto; }
  .hh-cats-grid { grid-template-columns: 1fr; max-width: 460px; }
  .hh-cat { aspect-ratio: 4 / 3; }
}

@media (max-width: 720px) {
  .hh-hero { padding-top: 110px; }
  .hh-sticker { display: none; }
  .hh-fan { --pz-size: clamp(180px, 55vw, 300px); }
  .hh-fan-arrow { width: 48px; height: 48px; top: 46%; }
  .hh-fan-arrow.prev { left: 8px; }
  .hh-fan-arrow.next { right: 8px; }
  .hh-stories { gap: 18px; }
  .hh-story { width: min(72vw, 250px); }
  .hh-story:nth-child(odd), .hh-story:nth-child(even) { transform: none; }
}
