/* =====================================================
   7° Concurso de Vídeos Educativos SENAR — style.css
   Paleta: Verde escuro + Dourado âmbar
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── CSS VARIABLES ────────────────────────────────── */
:root {
  --green-900: #0b2e18;
  --green-800: #0e3b1e;
  --green-700: #145024;
  --green-600: #1a5c2e;
  --green-500: #2d8a4e;
  --green-400: #4aab6a;
  --green-300: #7fcf96;
  --green-200: #b8e8c4;
  --green-100: #e6f4ea;
  --green-50:  #f0f7f1;

  --gold-700: #8a6510;
  --gold-600: #b88c1a;
  --gold-500: #c9a227;
  --gold-400: #d9b84a;
  --gold-300: #e8c85a;
  --gold-200: #f2db90;
  --gold-100: #fdf3d8;
  --gold-50:  #fffdf5;

  --white: #ffffff;
  --gray-50: #f8f8f6;
  --gray-100: #f0efeb;
  --gray-200: #e0ddd5;
  --gray-400: #999588;
  --gray-600: #635f55;
  --gray-800: #2e2c26;
  --black: #111109;

  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 20px rgba(201,162,39,0.25);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }

.display-xl  { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
.display-lg  { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
.display-md  { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
.display-sm  { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

.text-lg  { font-size: 1.125rem; }
.text-md  { font-size: 1rem; }
.text-sm  { font-size: 0.875rem; }
.text-xs  { font-size: 0.75rem; }

.text-white  { color: var(--white); }
.text-gold   { color: var(--gold-500); }
.text-green  { color: var(--green-600); }
.text-muted  { color: var(--gray-400); }

/* ── LAYOUT UTILITIES ─────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

/* ── SECTION LABELS ───────────────────────────────── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section-label.light { color: var(--gold-300); }
.section-label.light::before { background: var(--gold-300); }

/* ── BADGES ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.badge-gold { background: var(--gold-100); color: var(--gold-700); }
.badge-green { background: var(--green-100); color: var(--green-600); }
.badge-white { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.badge-outline-gold { background: rgba(201,162,39,0.12); color: var(--gold-300); border: 1px solid rgba(201,162,39,0.3); }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-600);
  border: 1.5px solid var(--green-600);
}
.btn-outline-green:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

.btn-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

/* ── CARDS ────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gray-100);
}
.card-gold-top { border-top: 3px solid var(--gold-500); }
.card-green-top { border-top: 3px solid var(--green-500); }

/* ── ICON BOX ─────────────────────────────────────── */
.icon-box {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.icon-box-gold { background: var(--gold-100); }
.icon-box-green { background: var(--green-100); }
.icon-box-dark { background: rgba(255,255,255,0.1); }
.icon-box-lg { width: 56px; height: 56px; font-size: 1.5rem; border-radius: var(--radius-md); }

/* ── NAVBAR ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 0;
}

#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
}

#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: var(--green-800);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active { color: var(--gold-300); }

.nav-cta { margin-left: 16px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO SECTION ─────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-600);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(45,138,78,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(201,162,39,0.08) 0%, transparent 55%),
    linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 50%, var(--green-700) 100%);
}

.hero-filmstrip {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 28px;
  background: rgba(201,162,39,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 6px;
  gap: 0;
}
.hero-filmstrip span {
  display: block;
  height: 18px;
  background: rgba(201,162,39,0.18);
  border-radius: 3px;
}

.hero-filmstrip-right {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 28px;
  background: rgba(201,162,39,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 6px;
}
.hero-filmstrip-right span {
  display: block;
  height: 18px;
  background: rgba(201,162,39,0.18);
  border-radius: 3px;
}

.hero-circle {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.1);
  pointer-events: none;
}
.hero-circle::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.08);
}
.hero-circle::after {
  content: '';
  position: absolute;
  inset: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.06);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero-edition-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero-title .accent { color: var(--gold-300); display: block; }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-stat {}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-display);
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll svg { opacity: 0.4; }

/* ── ALERT STRIP ──────────────────────────────────── */
.alert-strip {
  background: var(--gold-100);
  border-bottom: 1px solid var(--gold-200);
  padding: 14px 0;
}
.alert-strip .container {
  display: flex;
  align-items: center;
  gap: 14px;
}
.alert-strip-icon {
  width: 36px; height: 36px;
  background: var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--green-900);
}
.alert-strip p {
  font-size: 0.875rem;
  color: var(--gold-700);
  line-height: 1.5;
  flex: 1;
}
.alert-strip strong { color: var(--green-800); }

/* ── NOVIDADES SECTION ────────────────────────────── */
#novidades { background: var(--white); }

.novidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.novidade-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.novidade-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: var(--shadow-md);
}
.novidade-card:hover { transform: translateY(-4px); border-color: transparent; }
.novidade-card:hover::after { opacity: 1; }
.novidade-card.destaque { border-top: 3px solid var(--gold-500); }

.novidade-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
  margin-top: 12px;
  line-height: 1.35;
}
.novidade-card p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── PRODUCAO STRIP ───────────────────────────────── */
.producao-strip {
  background: var(--gold-100);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 40px;
}
.producao-strip-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.producao-strip p {
  font-size: 0.875rem;
  color: var(--gold-700);
  line-height: 1.65;
}
.producao-strip strong { color: var(--green-800); }

/* ── JORNADA SECTION ──────────────────────────────── */
#jornada { background: var(--green-800); }

.lives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.live-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all var(--transition);
  cursor: default;
}
.live-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-3px);
}

.live-num {
  display: inline-block;
  background: rgba(201,162,39,0.18);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.live-date {
  font-size: 0.78rem;
  color: var(--green-300);
  margin-bottom: 6px;
}

.live-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* ── CRONOGRAMA SECTION ───────────────────────────── */
#cronograma { background: var(--green-700); }

.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 13px; top: 12px; bottom: 12px;
  width: 2px;
  background: rgba(201,162,39,0.2);
}

.timeline-item {
  position: relative;
  padding: 0 0 28px 32px;
  display: flex;
  gap: 18px;
}
.timeline-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -28px;
  top: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  border: 2px solid rgba(201,162,39,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--gold-300);
  flex-shrink: 0;
  transition: all var(--transition);
}
.tl-dot.active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--green-900);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.2);
}

.tl-content {}
.tl-date { font-size: 0.75rem; color: var(--green-300); margin-bottom: 3px; }
.tl-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.tl-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.tl-badge {
  display: inline-block;
  background: rgba(201,162,39,0.18);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

/* ── INSPIRE SECTION ──────────────────────────────── */
#inspire { background: var(--green-50); }

.inspire-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}

.inspire-video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.inspire-video-thumb {
  background: var(--green-600);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.inspire-video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 50%, rgba(45,138,78,0.5) 0%, transparent 70%);
}
.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.play-btn:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); transform: scale(1.1); }
.inspire-video-body { padding: 18px 20px; }
.inspire-video-body .badge { margin-bottom: 8px; }
.inspire-video-body p { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--green-800); line-height: 1.4; }

/* ── FOOTER ───────────────────────────────────────── */
#footer {
  background: var(--green-900);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-brand img { height: 42px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.9); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item span:first-child { font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── MOBILE NAV OVERLAY ───────────────────────────── */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--green-800);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 12px 24px;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold-300); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(201,162,39,0); }
}

.fade-in { animation: fadeInUp 0.6s ease both; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .novidades-grid { grid-template-columns: repeat(2, 1fr); }
  .lives-grid { grid-template-columns: repeat(2, 1fr); }
  .inspire-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #hero { min-height: 100svh; }
  .hero-content { padding: 110px 24px 80px; }
  .hero-circle { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; }

  .novidades-grid { grid-template-columns: 1fr; }
  .lives-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .inspire-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  .hero-filmstrip,
  .hero-filmstrip-right { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .display-lg { font-size: 1.6rem; }
}
