/* ═══════════════════════════════════════════════════════════
   Hype Travel × Rock in Rio Lisboa LP — Magazine Palette
   Baseado no DS da LP Hype (apps/lp) com paleta adaptada RiR:
   azul royal + vermelho RiR + yellow Hype como ponte de marca
   ═══════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_18pt-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  background: #fff;
  color: #111;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #d92b2b;
  border-radius: 2px;
}

:root {
  /* Rock in Rio */
  --rir-blue: #1e3a8f;
  --rir-blue-deep: #14275f;
  --rir-blue-light: #3a5cc4;
  --rir-red: #d92b2b;
  --rir-red-hover: #b92222;

  /* Hype (ponte de marca) */
  --yellow: #eef849;
  --yellow-hover: #d7e03f;

  /* Neutros */
  --white: #ffffff;
  --off-white: #f7f6f2;
  --ink: #111111;
  --ink-2: #333;
  --ink-muted: #666;
  --ink-faint: #999;
  --border-light: rgba(0, 0, 0, .1);
  --border-mid: rgba(0, 0, 0, .15);
  --border-heavy: rgba(0, 0, 0, .8);
  --glow-y: rgba(238, 248, 73, .25);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════════
   EDITORIAL TITLES — padrão de secção
   ═══════════════════════════════════════════════════════════ */
.editorial-title {
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.065em;
  color: #000;
}

.title-dot {
  color: var(--rir-red);
}

.title-note {
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(21px, 2.2vw, 32px);
  font-weight: 400;
  color: var(--rir-red);
  transform: rotate(-2deg);
  transform-origin: left center;
  width: fit-content;
  margin: 18px 0 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 6px;
  transition: all .2s;
  cursor: pointer;
}

.btn-yellow {
  background: var(--yellow);
  color: #000;
  border: 2px solid var(--yellow);
}

.btn-yellow:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow-y);
}

.btn-black {
  background: #111;
  color: #fff;
  border: 2px solid #111;
}

.btn-black:hover {
  background: #222;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5);
}

.btn-outline-white:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-outline-black {
  background: transparent;
  color: #111;
  border: 2px solid #111;
}

.btn-outline-black:hover {
  background: #111;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 40px;
  transition: all .3s ease;
}

#nav.scrolled {
  background: rgba(20, 39, 95, .92);
  backdrop-filter: blur(16px);
  padding: 10px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 170px;
  height: 76px;
  overflow: hidden;
}

.nav-logo img {
  height: 150px;
  width: auto;
  filter: invert(1);
  transition: transform .25s ease, opacity .25s ease;
}

.nav-logo:hover img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  transition: color .2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-action {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-radius: 6px;
  background: var(--yellow);
  color: #000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .25), 0 10px 26px rgba(0, 0, 0, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-action span {
  color: rgba(0, 0, 0, .58);
}

.nav-action i {
  font-style: normal;
  color: rgba(0, 0, 0, .4);
}

.nav-action strong {
  color: #000;
}

.nav-action:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .4), 0 16px 34px rgba(0, 0, 0, .3);
}

/* ═══════════════════════════════════════════════════════════
   HERO — azul royal Rock in Rio + poster da parceria
   ═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 48px;
  padding: 140px 64px 80px;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(58, 92, 196, .55) 0%, transparent 55%),
    radial-gradient(100% 80% at 0% 100%, rgba(20, 39, 95, .9) 0%, transparent 60%),
    var(--rir-blue);
  border-bottom: 4px solid #000;
}

#hero::before {
  content: 'LISBOA';
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-size: clamp(150px, 24vw, 380px);
  font-weight: 900;
  letter-spacing: -.06em;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 99px;
  background: rgba(217, 43, 43, .85);
  padding: 6px 18px;
  display: inline-block;
  margin-bottom: 22px;
}

.hero-headline {
  font-size: clamp(38px, 5.2vw, 84px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .35);
}

.hero-headline .red {
  color: var(--rir-red);
  text-shadow: 0 4px 0 rgba(0, 0, 0, .25), 0 8px 34px rgba(0, 0, 0, .35);
}

.hero-headline .yellow {
  color: var(--yellow);
}

.hero-script {
  margin: 18px 0 0;
  font-size: clamp(20px, 2.6vw, 34px);
  font-family: 'Caveat Brush', cursive;
  font-weight: 400;
  color: var(--yellow);
  letter-spacing: -.01em;
  transform: rotate(-3deg);
  transform-origin: left center;
  width: fit-content;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .5);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Poster da parceria — moldura editorial inclinada */
.hero-poster {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(380px, 80vw);
  margin: 0;
  border: 10px solid #fff;
  background: #fff;
  box-shadow: 0 28px 64px rgba(0, 0, 0, .45);
  transform: rotate(2.5deg);
  transition: transform .35s ease, box-shadow .35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) scale(1.025);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .55), 0 0 0 2px var(--yellow), 0 0 40px var(--glow-y);
}

.hero-poster img {
  width: 100%;
  display: block;
}

.hero-poster figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .7);
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE — strip vermelho
   ═══════════════════════════════════════════════════════════ */
.rir-marquee {
  background: var(--rir-red);
  border-bottom: 4px solid #000;
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.rir-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════════════
   O FESTIVAL — WHITE
   ═══════════════════════════════════════════════════════════ */
#festival {
  padding: 120px 0;
  background: #fff;
  border-bottom: 4px solid #000;
}

.festival-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.festival-sub {
  font-size: 17px;
  color: var(--ink-muted);
  margin: 20px 0 32px;
  line-height: 1.65;
}

.festival-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.festival-fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.festival-fact-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rir-blue);
  color: var(--yellow);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}

.festival-fact-text {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.festival-fact-text strong {
  color: #000;
  font-weight: 700;
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

/* Spread preview — moldura magazine */
.spread-preview {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 10px solid #fff;
  margin: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  isolation: isolate;
}

.spread-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.01);
  transition: transform .45s ease, filter .45s ease;
}

.spread-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, .42));
  opacity: .72;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 1;
}

.spread-preview figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}

.spread-preview:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.spread-preview:hover::after {
  opacity: .45;
}

.spread-preview-festival {
  margin-top: 30px;
}

/* ═══════════════════════════════════════════════════════════
   O PACK — YELLOW
   ═══════════════════════════════════════════════════════════ */
#pack {
  padding: 120px 0;
  background: var(--yellow);
  border-bottom: 4px solid #000;
  position: relative;
  overflow: hidden;
}

#pack::before {
  content: 'PACK';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 900;
  letter-spacing: -.06em;
  color: rgba(0, 0, 0, .06);
  pointer-events: none;
  line-height: 1;
}

.pack-header {
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

#pack .title-note {
  color: var(--rir-blue);
}

#pack .title-dot {
  color: var(--rir-red);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.pack-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 36px 28px 32px;
  border-radius: 8px;
  box-shadow: inset 0 -34px 44px rgba(0, 0, 0, .32), 0 8px 20px rgba(0, 0, 0, .12);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .25s ease;
}

.pack-card-red {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05) 30%, rgba(0, 0, 0, .78) 100%),
    url('../assets/bilhete.png') center / cover no-repeat;
}

.pack-card-blue {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05) 30%, rgba(0, 0, 0, .78) 100%),
    url('../assets/autocarro.png') center / cover no-repeat;
}

.pack-card-dark {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, .65) 100%),
    repeating-linear-gradient(-45deg, #1c1c1c 0 8px, #111 8px 16px);
}

.pack-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(238, 248, 73, .38) 50%, transparent 62%);
  transform: translateX(-70%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .5s;
  pointer-events: none;
}

.pack-card:hover {
  transform: translateY(-4px);
}

.pack-card:hover::after {
  transform: translateX(70%);
  opacity: 1;
}

.pack-card-num {
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .45);
}

.pack-card-dark .pack-card-num {
  color: rgba(238, 248, 73, .55);
}

.pack-card-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.pack-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

/* ═══════════════════════════════════════════════════════════
   DATAS — AZUL ROCK IN RIO
   ═══════════════════════════════════════════════════════════ */
#datas {
  padding: 120px 0;
  background: var(--rir-blue);
  border-bottom: 4px solid #000;
  position: relative;
  overflow: hidden;
}

#datas::before {
  content: 'JUNHO';
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-size: clamp(150px, 20vw, 300px);
  font-weight: 900;
  letter-spacing: -.06em;
  color: rgba(255, 255, 255, .06);
  pointer-events: none;
  line-height: 1;
}

.datas-header {
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

#datas .editorial-title {
  color: #fff;
}

#datas .title-dot {
  color: var(--yellow);
}

#datas .title-note {
  color: var(--yellow);
}

.datas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.data-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding: 32px 18px 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.data-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(238, 248, 73, .3) 50%, transparent 62%);
  transform: translateX(-70%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .5s;
  pointer-events: none;
}

.data-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .12);
  border-color: var(--yellow);
}

.data-card:hover::after {
  transform: translateX(70%);
  opacity: 1;
}

.data-weekend {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px;
}

.data-day {
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--yellow);
}

.data-month {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}

/* Soldout — carimbo vermelho sobre o card */
.data-card-soldout {
  border-color: rgba(255, 255, 255, .08);
}

.data-card-soldout .data-weekend,
.data-card-soldout .data-month {
  opacity: .35;
}

.data-card-soldout .data-day {
  color: rgba(255, 255, 255, .25);
}

.data-card-soldout:hover {
  transform: none;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .08);
}

.data-card-soldout:hover::after {
  transform: translateX(-70%);
  opacity: 0;
}

.data-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-12deg);
  padding: 8px 18px;
  background: var(--rir-red);
  color: #fff;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 3px;
  outline: 2px dashed rgba(255, 255, 255, .55);
  outline-offset: -6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}

.datas-local {
  margin-top: 40px;
  text-align: center;
  font-family: 'Caveat Brush', cursive;
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--yellow);
  transform: rotate(-2deg);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   RPS — OFF-WHITE
   ═══════════════════════════════════════════════════════════ */
#rps {
  padding: 120px 0;
  background: var(--off-white);
  border-bottom: 4px solid #000;
  position: relative;
  overflow: hidden;
}

#rps::before {
  content: 'HYPE';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 900;
  letter-spacing: -.06em;
  color: rgba(0, 0, 0, .05);
  pointer-events: none;
  line-height: 1;
}

.rps-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.rps-sub {
  font-size: 17px;
  color: var(--ink-muted);
  margin: 20px 0 32px;
  line-height: 1.65;
  max-width: 480px;
}

.rps-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rps-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rps-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.rps-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.rps-step-num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rir-red);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.rps-step strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 3px;
}

.rps-step span {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   CTA FINAL — VERMELHO RIR
   ═══════════════════════════════════════════════════════════ */
#cta-final {
  padding: 140px 0;
  background: var(--rir-red);
  border-bottom: 4px solid #000;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: 'RIR';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(220px, 34vw, 480px);
  font-weight: 900;
  letter-spacing: -.06em;
  color: rgba(0, 0, 0, .07);
  pointer-events: none;
  line-height: 1;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-dates {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.cta-headline {
  color: #fff;
}

#cta-final .title-dot {
  color: var(--yellow);
}

.cta-trust {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: #000;
  color: #fff;
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo img {
  height: 110px;
  width: auto;
  filter: invert(1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-social a {
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

.footer-credit a {
  color: rgba(255, 255, 255, .6);
}

.footer-credit a:hover {
  color: var(--yellow);
}

/* ═══════════════════════════════════════════════════════════
   PÁGINAS SECUNDÁRIAS — sobre-nos, contactos, legal
   (padrão page-shell da LP Hype, hero em azul royal RiR)
   ═══════════════════════════════════════════════════════════ */
.page-shell {
  background: #fff;
}

.page-shell #nav {
  background: rgba(20, 39, 95, .92);
  backdrop-filter: blur(16px);
  padding: 10px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 176px 0 90px;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(58, 92, 196, .55) 0%, transparent 55%),
    var(--rir-blue);
  border-bottom: 4px solid #000;
}

.page-hero::before {
  content: 'LISBOA';
  position: absolute;
  right: -18px;
  bottom: -34px;
  font-size: clamp(130px, 23vw, 330px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.06em;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.page-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-title {
  font-size: clamp(68px, 11vw, 150px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.065em;
  color: #fff;
}

.page-title .title-dot {
  color: var(--yellow);
}

.page-intro {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .75);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

.page-content {
  padding: 86px 0 110px;
  background: #fff;
}

.page-copy {
  max-width: 900px;
  margin: 0 auto;
}

.page-copy p {
  color: rgba(0, 0, 0, .72);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 500;
  line-height: 1.72;
}

.page-copy p+p {
  margin-top: 28px;
}

.page-copy strong {
  color: #000;
  font-weight: 900;
}

.page-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.page-info-card {
  padding: clamp(24px, 3vw, 34px);
  border: 2px solid #000;
  border-radius: 8px;
  background: var(--off-white);
}

.page-info-card h2 {
  margin-bottom: 22px;
  color: #000;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.045em;
}

.page-info-list {
  display: grid;
  gap: 14px;
  color: rgba(0, 0, 0, .68);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.5;
}

.page-info-list strong {
  display: block;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-contact-link {
  color: #000;
  font-weight: 900;
  transition: color .2s ease;
}

.page-contact-link:hover {
  color: var(--rir-red);
}

.page-legal {
  max-width: 980px;
}

.page-legal h2 {
  margin: 56px 0 18px;
  color: #000;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.045em;
}

.page-legal h2:first-child {
  margin-top: 0;
}

.page-legal p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.78;
}

.page-legal ul {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  list-style: none;
}

.page-legal li {
  position: relative;
  padding-left: 24px;
  color: rgba(0, 0, 0, .72);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.72;
}

.page-legal li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .78em;
  width: 11px;
  height: 3px;
  background: var(--rir-red);
}

.page-legal li strong {
  color: #000;
  font-weight: 900;
}

.legal-shell {
  background: #f5f4ef;
}

.legal-shell .page-hero {
  padding: 150px 0 64px;
  background: #f5f4ef;
  border-bottom: 1px solid rgba(0, 0, 0, .16);
}

.legal-shell .page-hero::before {
  display: none;
}

.legal-shell .page-hero-inner {
  max-width: 860px;
}

.legal-shell .page-kicker {
  margin-bottom: 14px;
  color: rgba(0, 0, 0, .52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.legal-shell .page-title {
  max-width: 820px;
  color: #111;
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: .98;
  letter-spacing: -.035em;
}

.legal-shell .title-dot {
  color: currentColor;
}

.legal-shell .page-intro {
  max-width: 660px;
  margin-top: 20px;
  color: rgba(0, 0, 0, .62);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.58;
}

.legal-shell .page-content {
  padding: 56px 0 92px;
  background: #f5f4ef;
}

.legal-shell .page-copy {
  max-width: 920px;
  padding: clamp(28px, 4vw, 54px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .06);
}

.legal-shell .page-legal h2 {
  margin: 34px 0 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, .12);
  color: #111;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -.015em;
}

.legal-shell .page-legal h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-shell .page-legal p,
.legal-shell .page-legal li {
  color: rgba(0, 0, 0, .76);
  font-size: clamp(13.5px, 1.05vw, 15.5px);
  font-weight: 400;
  line-height: 1.74;
}

.legal-shell .page-copy p+p {
  margin-top: 14px;
}

.legal-shell .page-legal ul {
  gap: 10px;
  margin-top: 14px;
}

.legal-shell .page-legal li {
  padding-left: 18px;
}

.legal-shell .page-legal li::before {
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .72);
}

.legal-shell .page-legal strong,
.legal-shell .page-copy strong {
  color: #111;
  font-weight: 750;
}

.legal-shell .page-contact-link {
  color: #111;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-shell .page-contact-link:hover {
  color: var(--rir-blue);
}

.legal-shell .page-return {
  margin-top: 38px;
  color: #111;
}

.page-return {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.page-return:hover {
  color: var(--rir-red);
  transform: translateX(-4px);
}

/* ═══════════════════════════════════════════════════════════
   CURSOR BLOB
   ═══════════════════════════════════════════════════════════ */
.cursor-blob {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-blob {
    display: block;
    position: fixed;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--yellow);
    mix-blend-mode: difference;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width .25s ease, height .25s ease, background .25s ease;
  }

  .cursor-blob.over-cta {
    width: 64px;
    height: 64px;
    background: var(--rir-red);
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  #hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 140px 40px 80px;
    text-align: center;
  }

  .hero-content {
    justify-self: center;
  }

  .hero-script {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .festival-inner,
  .rps-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  #nav {
    padding: 12px 20px;
  }

  #nav.scrolled {
    padding: 8px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-action span,
  .nav-action i {
    display: none;
  }

  #hero {
    padding: 120px 20px 64px;
  }

  .hero-headline {
    white-space: normal;
  }

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

  .datas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #festival,
  #pack,
  #datas,
  #rps {
    padding: 80px 0;
  }

  #cta-final {
    padding: 100px 0;
  }

  .page-shell #nav {
    padding: 8px 20px;
  }

  .page-hero {
    padding: 140px 0 64px;
  }

  .page-content {
    padding: 64px 0 80px;
  }

  .page-info-grid {
    grid-template-columns: 1fr;
  }

  .legal-shell .page-hero {
    padding: 124px 0 48px;
  }
}

@media (max-width: 480px) {
  .datas-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    width: min(320px, 86vw);
  }

  .btn {
    padding: 14px 26px;
  }
}
