/* =========================================================
   EVEREST MAKER — ESCOLA DE FOTOGRAFIA
   [atualizado: fotos reais + film strip + vídeo cinematic]
   Design: Editorial Fashion — Vogue / Harper's Bazaar
   Paleta: Preto Absoluto + Branco Intenso + Escarlate Vivo
   Tipografia: Bebas Neue (display) + Cormorant Garamond (editorial)
   ========================================================= */

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

:root {
  /* Paleta — Editorial Escarlate */
  --void: #050505;
  --ink: #0d0d0d;
  --ink-2: #141414;
  --ink-3: #1c1c1c;
  --ink-4: #242424;

  /* Escarlate — o acento que ninguém espera */
  --red: #d91a2a;
  --red-light: #f02035;
  --red-deep: #a81320;
  --red-glow: rgba(217, 26, 42, 0.15);
  --red-border: rgba(217, 26, 42, 0.3);

  /* Branco editorial */
  --white: #f9f5f0;
  --white-pure: #ffffff;
  --white-muted: #a8a09a;
  --white-faint: #5a5450;

  /* Linhas */
  --border: rgba(249, 245, 240, 0.07);
  --border-red: rgba(217, 26, 42, 0.28);

  /* Tipografia */
  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Radius */
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 14px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.85);
  --shadow-red: 0 0 48px rgba(217, 26, 42, 0.25);

  /* Easing */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--void);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

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

/* ── LABELS / SEÇÕES ── */
.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.section-label--light {
  color: var(--red-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--red-light);
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulseRed {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(217, 26, 42, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(217, 26, 42, 0);
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
@keyframes shimmerRed {
  from {
    background-position: -200% center;
  }
  to {
    background-position: 200% center;
  }
}
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-12px) rotate(-1.5deg);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.06);
  }
}
@keyframes lineGrow {
  from {
    scalex: 0;
  }
  to {
    scalex: 1;
  }
}
@keyframes markerBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.animate-fade-up {
  opacity: 0;
}
.animate-fade-up.is-visible {
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}
.delay-2 {
  animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}
.delay-3 {
  animation-delay: 0.32s !important;
  transition-delay: 0.32s !important;
}
.delay-4 {
  animation-delay: 0.44s !important;
  transition-delay: 0.44s !important;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 28px;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Botão principal nav */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  background: var(--white-pure);
  color: var(--void);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-gold:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 245, 240, 0.18);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0) brightness(0.35);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  /* Linha vermelha diagonal — identidade editorial */
  background: linear-gradient(
    160deg,
    rgba(5, 5, 5, 0.96) 0%,
    rgba(5, 5, 5, 0.72) 45%,
    rgba(5, 5, 5, 0.88) 100%
  );
}
/* Faixa diagonal escarlate */
.hero__overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    150deg,
    rgba(217, 26, 42, 0.12) 0%,
    transparent 40%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--void), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Linha vertical decorativa — vibe editorial */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 5%,
    rgba(217, 26, 42, 0.2) 30%,
    rgba(217, 26, 42, 0.2) 70%,
    transparent 95%
  );
  z-index: 1;
  pointer-events: none;
  display: none; /* aparece em desktop */
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
}

/* Conteúdo hero */
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 120px;
}
.hero__text-side {
  max-width: 700px;
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 26, 42, 0.25);
  animation: pulseRed 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__eyebrow span:last-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* Título hero */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  color: var(--white-pure);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.72em;
  color: var(--white-muted);
  display: block;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
/* Número em escarlate com shimmer */
.hero__number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25em;
  background: linear-gradient(
    90deg,
    var(--red-deep),
    var(--red-light),
    var(--red-deep)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerRed 3.5s linear infinite;
  line-height: 0.9;
}
.hero__number-sub {
  font-family: var(--font-body);
  font-size: 0.18em;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-faint);
  -webkit-text-fill-color: var(--white-faint);
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 500px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.hero__subtitle strong {
  color: var(--white);
}

/* Tags */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-tag {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  font-weight: 500;
  color: var(--white-muted);
  letter-spacing: 0.05em;
}

/* CTA */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white-pure);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.btn-primary-lg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary-lg:hover::before {
  transform: translateX(100%);
}
.btn-primary-lg:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(217, 26, 42, 0.45);
}
.btn-primary-lg:active {
  transform: translateY(0);
}

.hero__cta-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--white-faint);
  letter-spacing: 0.06em;
}
.hero__cta-sub svg {
  color: var(--red);
}

/* Stat cards — hero direita */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.stat-card {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-left: 2px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  text-align: left;
  animation: floatA 5.5s ease-in-out infinite;
}
.stat-card--sm {
  padding: 18px 24px;
  animation: floatB 6.5s ease-in-out infinite;
}
.stat-card--right {
  animation-delay: 1.2s;
}
.stat-card__num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--white-pure);
  letter-spacing: 0.02em;
}
.stat-card__num span {
  font-size: 0.65em;
  color: var(--red-light);
}
.stat-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-top: 4px;
}
.stat-card--sm .stat-card__num {
  font-size: 2.4rem;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-faint);
}
.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--red);
}

/* =========================================================
   NEWS SECTION — Manchete Editorial
   ========================================================= */
.news-section {
  padding: 100px 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* Barra vermelha lateral — editorial identifier */
.news-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
}

.news-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.news-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.news-article {
  max-width: 820px;
  margin: 0 auto;
}
.news-article__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-pure);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}
.news-article__divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 40px;
}
.news-article__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.news-article__body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--white-muted);
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.news-article__body strong {
  color: var(--white);
}

.news-quote {
  margin: 12px auto;
  padding: 32px 40px;
  max-width: 580px;
  text-align: center;
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border-red);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.news-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-top: 16px;
}
.news-highlight {
  font-family: var(--font-display);
  font-size: 1.9rem !important;
  letter-spacing: 0.06em;
  color: var(--white-pure) !important;
  text-align: center !important;
}

/* =========================================================
   PARA QUEM É
   ========================================================= */
.for-who {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.for-who__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 26, 42, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
}
.for-who__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.for-who-card {
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--ink-2);
  transition:
    border-color 0.3s,
    transform 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}
.for-who-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.for-who-card:hover::after {
  transform: scaleX(1);
}
.for-who-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-red);
  background: var(--ink-3);
}

.for-who-card__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.for-who-card--yes .for-who-card__icon {
  background: rgba(217, 26, 42, 0.12);
  color: #ff6b6b;
  border: 1px solid var(--border-red);
}
.for-who-card--no .for-who-card__icon {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-faint);
  border: 1px solid var(--border);
}
.for-who-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.for-who-card p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* =========================================================
   BIG STATEMENT
   ========================================================= */
.big-statement {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.big-statement__bg {
  position: absolute;
  inset: 0;
}
.big-statement__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0) brightness(0.28);
}
.big-statement__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(5, 5, 5, 0.97) 0%,
    rgba(5, 5, 5, 0.65) 55%,
    rgba(5, 5, 5, 0.15) 100%
  );
}
/* Barra vermelha vertical decorativa */
.big-statement__overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: var(--red);
}
.big-statement__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 80px 0 80px 32px;
}
.big-statement__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white-pure);
  margin: 20px 0 32px;
}
.big-statement__divider {
  width: 56px;
  height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}
.big-statement__body {
  font-size: 1.1rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.big-statement__body strong {
  color: var(--white);
}
.big-statement__pill {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(217, 26, 42, 0.4);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #ff6b6b;
  background: rgba(217, 26, 42, 0.07);
}

/* =========================================================
   CURRICULUM
   ========================================================= */
.curriculum {
  padding: 100px 0;
  background: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.curriculum__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.curriculum-module {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--ink-2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.curriculum-module:hover {
  border-color: var(--border-red);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}
.curriculum-module--featured {
  border-color: rgba(217, 26, 42, 0.35);
  background: linear-gradient(145deg, var(--ink-3), var(--ink-2));
}
.curriculum-module--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--red-deep),
    var(--red-light),
    var(--red-deep)
  );
}
.curriculum-module__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-pure);
}
.curriculum-module__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.module-num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(217, 26, 42, 0.12);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-top: -8px;
}
.curriculum-module--featured .module-num {
  color: rgba(217, 26, 42, 0.25);
}
.module-info {
  flex: 1;
}
.module-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 8px;
}
.module-tag--gold {
  color: var(--red-light);
}
.module-info h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.module-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.curriculum-module__lessons {
  display: flex;
  flex-direction: column;
}
.lesson-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s;
}
.lesson-item:last-child {
  border-bottom: none;
}
.lesson-item:hover {
  padding-left: 6px;
}
.lesson-num {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--red-light);
  flex-shrink: 0;
  width: 52px;
}
.lesson-name {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.5;
}
.lesson-item--featured .lesson-name {
  color: var(--white);
}
.curriculum-module__note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(217, 26, 42, 0.07);
  border-left: 2px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: #ff7070;
  line-height: 1.5;
}

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.differentials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.differentials__bg-glow {
  position: absolute;
  bottom: -250px;
  right: -250px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 26, 42, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.differentials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.diff-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--ink-2);
  transition:
    border-color 0.3s,
    transform 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.diff-card:hover::before {
  transform: scaleX(1);
}
.diff-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  background: var(--ink-3);
}
.diff-card__icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.diff-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}
.diff-card p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* =========================================================
   QUOTE SECTION
   ========================================================= */
.quote-section {
  padding: 88px 0;
  background: var(--void);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.quote-section::before {
  content: "EVEREST MAKER";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 12vw;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.quote-block {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
.quote-block__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-red),
    transparent
  );
}
.quote-block__content {
  text-align: center;
  flex-shrink: 0;
}
.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.07em;
  color: var(--white-muted);
}
.quote-block__text strong {
  color: var(--white-pure);
}
.quote-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.quote-sub p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white-muted);
  line-height: 1.75;
}

/* =========================================================
   PHOTO SHOWCASE
   ========================================================= */
.photo-showcase {
  overflow: hidden;
}
.photo-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.photo-showcase__image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.photo-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5);
  transition:
    transform 0.8s var(--ease),
    filter 0.4s ease;
}
.photo-showcase__image:hover img {
  transform: scale(1.04);
  filter: saturate(0.85);
}
.photo-showcase__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 8px 16px;
  background: rgba(5, 5, 5, 0.9);
  border-left: 2px solid var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.photo-showcase__content {
  padding: 64px 72px;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-showcase__content .section-label {
  margin-bottom: 20px;
}
.photo-showcase__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.photo-showcase__content h2 em {
  font-style: italic;
  color: var(--red-light);
  display: block;
}
.photo-showcase__content p {
  font-size: 0.97rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.photo-showcase__fact {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px;
  background: rgba(217, 26, 42, 0.06);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.fact-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--white-pure);
  flex-shrink: 0;
}
.fact-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white-muted);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.photo-showcase__emphasis {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white-muted);
  line-height: 1.5;
  margin-bottom: 0 !important;
}
.photo-showcase__emphasis strong {
  color: var(--white);
}

/* =========================================================
   EQUIPMENT SECTION
   ========================================================= */
.equipment-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.equipment-section__bg {
  position: absolute;
  inset: 0;
}
.equipment-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0) brightness(0.22);
}
.equipment-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.97) 0%,
    rgba(5, 5, 5, 0.65) 100%
  );
}
/* Barra vermelha esquerda */
.equipment-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  z-index: 1;
}
.equipment-section__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 80px 0 80px 32px;
}
.equipment-section__content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white-pure);
  margin: 20px 0 28px;
}
.equipment-section__content h2 em {
  font-style: normal;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red-light);
}
.equipment-section__content p {
  font-size: 1rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(249, 245, 240, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s,
    transform 0.2s;
}
.btn-outline-light:hover {
  border-color: var(--red);
  color: #ff6b6b;
  background: rgba(217, 26, 42, 0.06);
  transform: translateY(-2px);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
/* Cruz decorativa em background */
.final-cta::before {
  content: "+";
  position: absolute;
  top: -80px;
  right: -40px;
  font-family: var(--font-display);
  font-size: 40vw;
  line-height: 1;
  color: rgba(217, 26, 42, 0.03);
  pointer-events: none;
  user-select: none;
}
.final-cta__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 5.5s ease-in-out infinite;
}
.final-cta__glow--1 {
  width: 700px;
  height: 700px;
  top: -250px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(217, 26, 42, 0.08) 0%,
    transparent 70%
  );
}
.final-cta__glow--2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(217, 26, 42, 0.06) 0%,
    transparent 70%
  );
  animation-delay: 2.5s;
}
.final-cta__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.final-cta__content .section-label {
  display: inline-flex;
  margin-bottom: 16px;
}
.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin: 12px 0 24px;
}
.final-cta__title em {
  font-style: italic;
  color: var(--red-light);
}
.final-cta__body {
  font-size: 1rem;
  color: var(--white-muted);
  line-height: 1.85;
  margin-bottom: 40px;
}
.final-cta__urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  background: rgba(217, 26, 42, 0.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff7070;
  margin-bottom: 36px;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulseRed 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}
.btn-whatsapp {
  padding: 20px 44px;
  font-size: 15px;
  background: #25d366;
  color: #ffffff;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp::before {
  display: none;
}
.final-cta__note {
  font-size: 11px;
  color: var(--white-faint);
  letter-spacing: 0.08em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 44px 0;
  background: var(--void);
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__logo {
  width: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.footer__brand p {
  font-size: 12px;
  color: var(--white-faint);
}
.footer__info p {
  font-size: 12px;
  color: var(--white-faint);
}

/* =========================================================
   GALLERY — Film Strip Infinito (9 verticais reais)
   ========================================================= */
.gallery {
  padding: 100px 0 0;
  overflow: hidden;
  background: var(--void);
  border-top: 1px solid var(--border);
}
.gallery .container {
  margin-bottom: 0;
}

/* Film strip — scroll horizontal contínuo */
.film-strip {
  margin-top: 48px;
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Fades laterais */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
/* Borda de filme — sprocket holes no topo e base */
.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  z-index: 2;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0px,
    transparent 14px,
    var(--red) 14px,
    var(--red) 22px,
    transparent 22px,
    transparent 36px
  );
  opacity: 0.15;
}
.film-strip::before {
  top: 0;
}
.film-strip::after {
  bottom: 0;
}

.film-strip__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: filmScroll 40s linear infinite;
  padding: 18px 0;
}
.film-strip__track:hover {
  animation-play-state: paused;
}

@keyframes filmScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.film-item {
  flex-shrink: 0;
  width: 240px;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}
.film-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.9);
  transition:
    transform 0.6s var(--ease),
    filter 0.4s ease;
  display: block;
}
.film-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}
/* Overlay vermelho sutil no hover */
.film-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(217, 26, 42, 0);
  transition: background 0.4s ease;
  pointer-events: none;
}
.film-item:hover::after {
  background: rgba(217, 26, 42, 0.08);
}

.gallery__caption {
  text-align: center;
  padding: 32px 0 80px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--white-faint);
  text-transform: uppercase;
}

/* =========================================================
   VIDEO SECTION — Cinematic Full-Bleed
   ========================================================= */
.video-section {
  position: relative;
  overflow: hidden;
}
.video-section__wrapper {
  position: relative;
  width: 100%;
  /* Mantém aspect-ratio cinematográfico 16:9 mas com min-height */
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-section__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(0.6);
}
.video-section__overlay {
  position: absolute;
  inset: 0;
  /* Duplo gradiente: cor + opacidade para legibilidade do texto */
  background: linear-gradient(
    160deg,
    rgba(5, 5, 5, 0.9) 0%,
    rgba(5, 5, 5, 0.45) 40%,
    rgba(5, 5, 5, 0.7) 100%
  );
  /* Toque sutil de escarlate no canto */
  background-image:
    linear-gradient(150deg, rgba(217, 26, 42, 0.1) 0%, transparent 35%),
    linear-gradient(
      160deg,
      rgba(5, 5, 5, 0.9) 0%,
      rgba(5, 5, 5, 0.45) 40%,
      rgba(5, 5, 5, 0.7) 100%
    );
}
/* Borda vermelha no topo e base */
.video-section__wrapper::before,
.video-section__wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  z-index: 3;
  pointer-events: none;
}
.video-section__wrapper::before {
  top: 0;
}
.video-section__wrapper::after {
  bottom: 0;
}

.video-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 28px;
  max-width: 800px;
}
.video-section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--white-pure);
  margin: 20px 0 28px;
}
.video-section__title em {
  /* Itálico Cormorant Garamond como contraste */
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red-light);
  font-size: 0.78em;
  display: block;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-top: 8px;
}
.video-section__divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 28px;
}
.video-section__body {
  font-size: 1.05rem;
  color: var(--white-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 80px;
  }
  .hero__visual {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .stat-card {
    flex: 1;
    min-width: 140px;
  }

  .for-who__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .curriculum__grid {
    grid-template-columns: 1fr;
  }
  .curriculum-module__badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }

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

  .photo-showcase__grid {
    grid-template-columns: 1fr;
  }
  .photo-showcase__image {
    aspect-ratio: 16/9;
  }
  .photo-showcase__content {
    padding: 48px 36px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: 3.5rem;
  }
  .hero__number {
    font-size: 4.5rem;
  }
  .section-title {
    font-size: 1.9rem;
    margin-bottom: 36px;
  }
  .nav__cta {
    display: none;
  }
  .differentials__grid {
    grid-template-columns: 1fr;
  }
  .big-statement__title {
    font-size: 4rem;
  }
  .quote-block {
    flex-direction: column;
    gap: 16px;
  }
  .quote-block__line {
    flex: none;
    width: 80px;
  }
  .quote-block__text {
    font-size: 2rem;
  }
  .final-cta {
    padding: 80px 0;
  }
  .final-cta__title {
    font-size: 2.2rem;
  }
  .btn-whatsapp {
    padding: 16px 28px;
    font-size: 14px;
  }
  .btn-primary-lg {
    font-size: 13px;
    padding: 15px 24px;
  }
  .photo-showcase__content {
    padding: 40px 24px;
  }
}
