/* ================================================================
   AGENCIA 247 — filmacionEventos.css
   Paleta: Azul — igual que produccionAudiovisual.css
   Fuentes: Bebas Neue (display) · DM Sans (body) · DM Mono (mono)
   @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&family=DM+Mono:wght@400;500&display=swap');
================================================================ */

/* ────────────────────────────────────────────────────────────
   TOKENS — misma paleta que produccionAudiovisual.css
──────────────────────────────────────────────────────────── */
:root {
  --c-deep:    #060c1c;
  --c-navy:    #0b1528;
  --c-blue:    #1e46d8;
  --c-vivid:   #2353e8;
  --c-sky:     #5bc8f5;
  --c-white:   #ffffff;
  --c-muted:   rgba(255,255,255,0.45);
  --c-rim:     rgba(255,255,255,0.09);
  --c-glass:   rgba(255,255,255,0.055);
  --c-glassmd: rgba(255,255,255,0.10);

  --g-accent:  linear-gradient(100deg, var(--c-vivid) 0%, var(--c-sky) 70%);
  --sh-blue:   0 8px 32px rgba(35,83,232,0.40);
  --sh-hover:  0 24px 56px rgba(0,0,0,0.40);

  --f-disp: 'Bebas Neue', sans-serif;
  --f-body: 'DM Sans', sans-serif;
  --f-mono: 'DM Mono', monospace;

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-pill: 100px;

  --ease:      cubic-bezier(0.16,1,0.3,1);
  --ease-back: cubic-bezier(0.34,1.56,0.64,1);
}

/* ────────────────────────────────────────────────────────────
   RESET + BASE
──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--c-deep); color: var(--c-white); font-family: var(--f-body); overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ────────────────────────────────────────────────────────────
   LAYOUT
──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ────────────────────────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }
.delay-4 { transition-delay: 0.38s; }
.delay-5 { transition-delay: 0.48s; }

/* ────────────────────────────────────────────────────────────
   LABEL EYEBROW
──────────────────────────────────────────────────────────── */
.fev-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-mono);
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-sky);
  margin-bottom: 1.4rem;
}
.fev-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--c-sky);
}
.fev-label::after {
  content: '●';
  font-size: 0.5rem;
  animation: recBlink 1.4s ease infinite;
}
@keyframes recBlink {
  0%,100% { opacity: 1; } 50% { opacity: 0.2; }
}

/* ────────────────────────────────────────────────────────────
   TÍTULOS DE SECCIÓN
──────────────────────────────────────────────────────────── */
.fev-section-head { margin-bottom: 3rem; }
.fev-section-title {
  font-family: var(--f-disp);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.90;
  color: var(--c-white);
  margin-bottom: 1rem;
}
.fev-section-title em {
  font-style: normal;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fev-section-sub {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c-muted);
  max-width: 520px;
}

/* ────────────────────────────────────────────────────────────
   BOTONES
──────────────────────────────────────────────────────────── */
.fev-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--r-pill);
  transition: transform 0.22s var(--ease), box-shadow 0.22s, background 0.22s;
}
.fev-btn--primary {
  background: var(--c-vivid);
  color: var(--c-white);
  box-shadow: var(--sh-blue);
}
.fev-btn--primary:hover {
  background: var(--c-blue);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(35,83,232,0.55);
}
.fev-btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.20);
}
.fev-btn--ghost:hover {
  border-color: var(--c-sky);
  color: var(--c-sky);
  transform: translateY(-2px);
}
.fev-btn .btn-icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
}

/* ════════════════════════════════════════════
   1. HERO
════════════════════════════════════════════ */
.fev-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.fev-hero__bg { position: absolute; inset: 0; z-index: 0; }
.fev-hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.30) saturate(0.7);
  transform-origin: center;
}
.fev-hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 0%,   rgba(91,200,245,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at -5% 95%,  rgba(30,70,216,0.20)  0%, transparent 55%),
    linear-gradient(180deg, rgba(6,12,28,0.30) 0%, rgba(6,12,28,0.75) 100%);
  z-index: 1;
}
/* Rejilla de perspectiva */
.fev-hero__scanlines {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(91,200,245,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,200,245,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 25%, transparent 100%);
  pointer-events: none;
}
/* Anillo decorativo */
.fev-hero::after {
  content: '';
  position: absolute; z-index: 1;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(91,200,245,0.07);
  right: -180px; top: -180px;
  pointer-events: none;
}

/* HUD timecode */
.fev-hero__hud {
  position: absolute; top: 2.5rem; right: 4rem;
  z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem;
}
.fev-hero__hud-tc {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: rgba(91,200,245,0.65);
  letter-spacing: 0.10em;
}
.fev-hero__hud-bar {
  width: 80px; height: 1px;
  background: linear-gradient(to left, rgba(91,200,245,0.45), transparent);
}
.fev-hero__hud-rec {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--f-mono);
  font-size: 0.58rem;
  color: var(--c-sky);
  letter-spacing: 0.14em;
}
.fev-hero__hud-rec::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-sky);
  box-shadow: 0 0 8px var(--c-sky);
  animation: recBlink 1.4s ease infinite;
}

.fev-hero__content {
  position: relative; z-index: 3;
  padding-bottom: 7rem;
  max-width: 780px;
}
.fev-hero__category {
  font-family: var(--f-mono);
  font-size: 0.60rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-sky);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.fev-hero__category::before { content: ''; width: 32px; height: 1px; background: var(--c-sky); }
.fev-hero__title {
  font-family: var(--f-disp);
  font-size: clamp(4rem, 9vw, 9.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.86;
  margin-bottom: 2rem;
}
.fev-hero__title-line { display: block; }
.fev-hero__title-line--light { color: rgba(255,255,255,0.90); }
.fev-hero__title-line--accent {
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fev-hero__desc {
  font-size: 1rem; line-height: 1.75;
  color: var(--c-muted);
  margin-bottom: 2.4rem; max-width: 500px;
}
.fev-hero__actions { display: flex; align-items: center; gap: 1rem; }
.fev-hero__play {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(91,200,245,0.35);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.fev-hero__play:hover {
  border-color: var(--c-sky);
  background: rgba(91,200,245,0.10);
  transform: scale(1.08);
}
.fev-hero__play svg { width: 18px; height: 18px; fill: var(--c-white); margin-left: 2px; }

.fev-hero__stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid var(--c-rim);
  background: rgba(6,12,28,0.70);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fev-hero__stat { padding: 1.6rem 2.4rem; border-right: 1px solid var(--c-rim); }
.fev-hero__stat:last-child { border-right: none; }
.fev-hero__stat-num {
  font-family: var(--f-disp);
  font-size: 2.6rem; letter-spacing: 0.04em; line-height: 1;
  color: var(--c-white); margin-bottom: 0.3rem;
}
.fev-hero__stat-num span { font-size: 1.4rem; color: var(--c-sky); }
.fev-hero__stat-label {
  font-family: var(--f-mono);
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-muted);
}

/* ════════════════════════════════════════════
   2. TICKER
════════════════════════════════════════════ */
.fev-ticker {
  background: var(--c-vivid);
  padding: 0.8rem 0; overflow: hidden;
}
.fev-ticker__track {
  display: flex; gap: 3rem;
  animation: tickerMove 22s linear infinite;
  white-space: nowrap;
}
.fev-ticker__item {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--f-mono);
  font-size: 0.65rem; letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); flex-shrink: 0;
}
.fev-ticker__sep { color: rgba(255,255,255,0.35); }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   3. ACERCA DE
════════════════════════════════════════════ */
.fev-about {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.fev-about__media { position: relative; overflow: hidden; background: var(--c-navy); }
.fev-about__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.70) saturate(0.80);
  transition: transform 1s var(--ease);
}
.fev-about:hover .fev-about__img { transform: scale(1.04); }
.fev-about__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(35,83,232,0.22) 0%, transparent 60%);
}
.fev-about__media::after {
  content: ''; position: absolute;
  top: 2rem; left: 2rem; right: 2rem; bottom: 2rem;
  border: 1px solid rgba(91,200,245,0.12);
  border-radius: var(--r-sm); pointer-events: none;
}
.fev-about__corner {
  position: absolute; width: 20px; height: 20px;
  border-color: var(--c-sky); border-style: solid;
  opacity: 0.55; z-index: 2;
}
.fev-about__corner--tl { top: 1.8rem; left: 1.8rem; border-width: 2px 0 0 2px; }
.fev-about__corner--tr { top: 1.8rem; right: 1.8rem; border-width: 2px 2px 0 0; }
.fev-about__corner--bl { bottom: 1.8rem; left: 1.8rem; border-width: 0 0 2px 2px; }
.fev-about__corner--br { bottom: 1.8rem; right: 1.8rem; border-width: 0 2px 2px 0; }
.fev-about__text {
  background: var(--c-navy); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--c-rim);
}
.fev-about__body { font-size: 0.95rem; line-height: 1.85; color: var(--c-muted); margin-bottom: 1.2rem; }
.fev-about__body strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.fev-about__features {
  list-style: none; margin-top: 2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.fev-about__features li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--c-rim);
}
.fev-about__features li:last-child { border-bottom: none; }
.fev-about__feat-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(91,200,245,0.08); border: 1px solid rgba(91,200,245,0.20);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.fev-about__feat-icon svg { width: 12px; height: 12px; fill: var(--c-sky); }

/* ════════════════════════════════════════════
   4. SERVICIOS
════════════════════════════════════════════ */
.fev-services { padding: 7rem 0; background: var(--c-deep); }
.fev-services__row {
  display: flex; gap: 1px;
  background: var(--c-rim); border: 1px solid var(--c-rim);
  border-radius: var(--r-md); overflow: hidden;
}
.fev-serv-card {
  flex: 1; background: var(--c-navy); padding: 2.4rem 2rem;
  transition: background 0.3s, flex 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.fev-serv-card:hover { background: rgba(11,21,40,0.95); flex: 1.3; }
.fev-serv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--g-accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.fev-serv-card:hover::before { transform: scaleX(1); }
.fev-serv-card__num {
  font-family: var(--f-mono); font-size: 0.55rem; letter-spacing: 0.20em;
  color: rgba(91,200,245,0.40); margin-bottom: 1.2rem;
}
.fev-serv-card__icon {
  width: 40px; height: 40px;
  background: rgba(91,200,245,0.07); border: 1px solid rgba(91,200,245,0.15);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; transition: background 0.3s, border-color 0.3s;
}
.fev-serv-card:hover .fev-serv-card__icon {
  background: rgba(91,200,245,0.14); border-color: rgba(91,200,245,0.30);
}
.fev-serv-card__icon svg { width: 18px; height: 18px; fill: var(--c-sky); }
.fev-serv-card__title {
  font-family: var(--f-disp); font-size: 1.55rem; letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 0.95; color: var(--c-white); margin-bottom: 0.9rem;
}
.fev-serv-card__desc {
  font-size: 0.82rem; line-height: 1.70; color: var(--c-muted);
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 0.35s, max-height 0.4s var(--ease);
}
.fev-serv-card:hover .fev-serv-card__desc { opacity: 1; max-height: 120px; }

/* ════════════════════════════════════════════
   5. VIDEO SHOWCASE
════════════════════════════════════════════ */
.fev-showcase { padding: 6rem 0; background: var(--c-navy); }
.fev-showcase__head {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem;
}
.fev-showcase__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.fev-showcase__row--wide { grid-template-columns: 1.6fr 1fr 1fr; }
.fev-vid-card {
  position: relative; border-radius: var(--r-sm); overflow: hidden;
  background: rgba(11,21,40,0.80); cursor: pointer;
}
.fev-vid-card--tall { grid-row: span 2; }
.fev-vid-card__thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.fev-vid-card--tall .fev-vid-card__thumb { aspect-ratio: unset; height: 100%; }
.fev-vid-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.70) saturate(0.85);
}
.fev-vid-card:hover .fev-vid-card__img { transform: scale(1.06); filter: brightness(0.50) saturate(0.70); }
.fev-vid-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,28,0.90) 0%, transparent 55%);
}
.fev-vid-card__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.7); opacity: 0;
  width: 52px; height: 52px; background: var(--c-vivid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: var(--sh-blue);
}
.fev-vid-card__play svg { width: 18px; height: 18px; fill: #fff; margin-left: 3px; }
.fev-vid-card:hover .fev-vid-card__play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.fev-vid-card__meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.2rem; z-index: 2; }
.fev-vid-card__cat {
  font-family: var(--f-mono); font-size: 0.52rem; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--c-sky); margin-bottom: 0.3rem;
}
.fev-vid-card__title {
  font-family: var(--f-disp); font-size: 1.2rem; letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 0.95; color: var(--c-white);
}
.fev-vid-card__dur {
  position: absolute; top: 0.8rem; right: 0.8rem;
  font-family: var(--f-mono); font-size: 0.55rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.60); background: rgba(6,12,28,0.70);
  padding: 0.25rem 0.6rem; border-radius: 3px; border: 1px solid var(--c-rim);
}
.fev-vid-card__progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--c-rim); }
.fev-vid-card__progress-fill { height: 100%; background: var(--g-accent); width: 0; transition: width 0.6s ease; }
.fev-vid-card:hover .fev-vid-card__progress-fill { width: 30%; }

/* Esquinas cámara */
.fev-gal-item__corner {
  position: absolute; width: 14px; height: 14px;
  border-color: rgba(91,200,245,0.60); border-style: solid;
  opacity: 0; transition: opacity 0.3s 0.1s;
}
.fev-vid-card:hover .fev-gal-item__corner,
.fev-gal-item:hover .fev-gal-item__corner { opacity: 1; }
.fev-gal-item__corner--tl { top: 0.8rem; left: 0.8rem; border-width: 1.5px 0 0 1.5px; }
.fev-gal-item__corner--tr { top: 0.8rem; right: 0.8rem; border-width: 1.5px 1.5px 0 0; }
.fev-gal-item__corner--bl { bottom: 0.8rem; left: 0.8rem; border-width: 0 0 1.5px 1.5px; }
.fev-gal-item__corner--br { bottom: 0.8rem; right: 0.8rem; border-width: 0 1.5px 1.5px 0; }

/* ════════════════════════════════════════════
   6. PROCESO
════════════════════════════════════════════ */
.fev-process { padding: 7rem 0; background: var(--c-deep); }
.fev-process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--c-rim);
  border: 1px solid var(--c-rim); border-radius: var(--r-md); overflow: hidden; margin-top: 3.5rem;
}
.fev-proc-step {
  background: var(--c-navy); padding: 2.8rem 2.4rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.fev-proc-step:hover { background: rgba(11,21,40,0.95); }
.fev-proc-step__n {
  font-family: var(--f-disp); font-size: 6rem; letter-spacing: -0.02em; line-height: 1;
  color: rgba(35,83,232,0.08); position: absolute; top: -0.5rem; right: 1rem; transition: color 0.3s;
}
.fev-proc-step:hover .fev-proc-step__n { color: rgba(35,83,232,0.14); }
.fev-proc-step__icon {
  width: 36px; height: 36px;
  background: rgba(91,200,245,0.07); border: 1px solid rgba(91,200,245,0.18);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem;
}
.fev-proc-step__icon svg { width: 16px; height: 16px; fill: var(--c-sky); }
.fev-proc-step__title {
  font-family: var(--f-disp); font-size: 1.35rem; letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 0.95; color: var(--c-white); margin-bottom: 0.8rem;
}
.fev-proc-step__desc { font-size: 0.82rem; line-height: 1.70; color: var(--c-muted); }

/* ════════════════════════════════════════════
   7. GALERÍA
════════════════════════════════════════════ */
.fev-gallery { padding: 6rem 0; background: var(--c-navy); }
.fev-gallery__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; }
.fev-gallery__filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fev-gallery__filter {
  font-family: var(--f-mono); font-size: 0.60rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-muted); border: 1px solid var(--c-rim);
  padding: 0.4rem 1rem; border-radius: var(--r-pill);
  background: transparent; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.fev-gallery__filter.active,
.fev-gallery__filter:hover {
  color: var(--c-sky); border-color: rgba(91,200,245,0.35); background: rgba(91,200,245,0.07);
}
.fev-gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 6px;
}
.fev-gal-item { position: relative; overflow: hidden; border-radius: var(--r-sm); cursor: pointer; }
.fev-gal-item--wide { grid-column: span 2; }
.fev-gal-item--tall { grid-row: span 2; }
.fev-gal-item__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.75) saturate(0.85);
}
.fev-gal-item:hover .fev-gal-item__img { transform: scale(1.07); filter: brightness(0.50) saturate(0.70); }
.fev-gal-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,28,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.35s;
}
.fev-gal-item:hover .fev-gal-item__overlay { opacity: 1; }
.fev-gal-item__meta {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.2rem;
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s;
}
.fev-gal-item:hover .fev-gal-item__meta { opacity: 1; transform: none; }
.fev-gal-item__label {
  font-family: var(--f-mono); font-size: 0.55rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-sky); margin-bottom: 0.25rem;
}
.fev-gal-item__caption {
  font-family: var(--f-disp); font-size: 1.1rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--c-white); line-height: 0.95;
}

/* ════════════════════════════════════════════
   8. PAQUETES
════════════════════════════════════════════ */
.fev-packages { padding: 7rem 0; background: var(--c-deep); }
.fev-packages__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--c-rim);
  border: 1px solid var(--c-rim); border-radius: var(--r-md); overflow: hidden; margin-top: 3.5rem;
}
.fev-pkg-card {
  background: var(--c-navy); padding: 3rem 2.8rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.fev-pkg-card:hover { background: rgba(11,21,40,0.95); }
.fev-pkg-card--featured { background: rgba(11,21,40,0.95); border-top: 2px solid var(--c-vivid); }
.fev-pkg-card__badge {
  position: absolute; top: 0; right: 0;
  font-family: var(--f-mono); font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-white); background: var(--c-vivid); padding: 0.35rem 1rem; border-radius: 0 0 0 var(--r-sm);
}
.fev-pkg-card__label {
  font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--c-sky); margin-bottom: 0.6rem;
}
.fev-pkg-card__title {
  font-family: var(--f-disp); font-size: 2.2rem; letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 0.92; color: var(--c-white); margin-bottom: 1rem;
}
.fev-pkg-card__desc {
  font-size: 0.85rem; line-height: 1.70; color: var(--c-muted);
  margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--c-rim);
}
.fev-pkg-card__list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.fev-pkg-card__list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.65);
}
.fev-pkg-card__list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-sky); flex-shrink: 0; margin-top: 6px;
}

/* ════════════════════════════════════════════
   9. SPECS
════════════════════════════════════════════ */
.fev-specs {
  padding: 5rem 0; background: var(--c-navy);
  border-top: 1px solid var(--c-rim); border-bottom: 1px solid var(--c-rim);
}
.fev-specs__row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--c-rim);
  border: 1px solid var(--c-rim); border-radius: var(--r-md); overflow: hidden;
}
.fev-spec-item { background: var(--c-navy); padding: 2rem 1.6rem; text-align: center; transition: background 0.3s; }
.fev-spec-item:hover { background: rgba(11,21,40,0.95); }
.fev-spec-item__icon {
  width: 32px; height: 32px;
  background: rgba(91,200,245,0.07); border: 1px solid rgba(91,200,245,0.15);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.9rem;
}
.fev-spec-item__icon svg { width: 14px; height: 14px; fill: var(--c-sky); }
.fev-spec-item__val {
  font-family: var(--f-disp); font-size: 1.4rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--c-white); line-height: 1; margin-bottom: 0.35rem;
}
.fev-spec-item__lbl {
  font-family: var(--f-mono); font-size: 0.55rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--c-muted);
}

/* ════════════════════════════════════════════
   10. CTA FINAL
════════════════════════════════════════════ */
.fev-cta { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.fev-cta__bg { position: absolute; inset: 0; }
.fev-cta__bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.22) saturate(0.60); }
.fev-cta__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(35,83,232,0.20) 0%, transparent 70%),
    linear-gradient(to right, rgba(6,12,28,0.90) 0%, rgba(6,12,28,0.55) 60%, rgba(6,12,28,0.85) 100%),
    linear-gradient(to top, rgba(6,12,28,0.80) 0%, transparent 50%);
}
.fev-cta::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(35,83,232,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
  box-shadow: 0 0 0 80px rgba(35,83,232,0.04), 0 0 0 160px rgba(35,83,232,0.02);
  z-index: 1;
}
.fev-cta__content {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 4rem;
}
.fev-cta__left { flex: 1; }
.fev-cta__title {
  font-family: var(--f-disp); font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: 0.02em; text-transform: uppercase;
  line-height: 0.85; color: var(--c-white); margin-bottom: 1.2rem;
}
.fev-cta__title em {
  font-style: normal;
  background: var(--g-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fev-cta__sub { font-size: 0.95rem; line-height: 1.70; color: var(--c-muted); max-width: 420px; }
.fev-cta__right { flex-shrink: 0; display: flex; flex-direction: column; gap: 1rem; }

/* ════════════════════════════════════════════
   11. LIGHTBOX
════════════════════════════════════════════ */
.fev-lb {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.96); z-index: 9999;
  align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.fev-lb--open { display: flex; animation: lbFade 0.25s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.fev-lb__wrap { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.fev-lb__wrap img {
  max-width: 100%; max-height: 90vh; width: auto; height: auto; object-fit: contain;
  border-radius: var(--r-sm); animation: lbZoom 0.28s var(--ease);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
@keyframes lbZoom { from { transform: scale(0.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.fev-lb__close {
  position: fixed; top: 1.5rem; right: 2rem; font-size: 1.8rem;
  color: rgba(255,255,255,0.50); cursor: pointer; transition: color 0.2s; z-index: 10001; line-height: 1;
}
.fev-lb__close:hover { color: var(--c-sky); }
.fev-lb__nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(35,83,232,0.15); border: 1px solid rgba(35,83,232,0.30);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--c-white); font-size: 1.4rem; cursor: pointer; transition: background 0.2s; z-index: 10001;
}
.fev-lb__nav:hover { background: rgba(35,83,232,0.40); }
.fev-lb__prev { left: 1.5rem; } .fev-lb__next { right: 1.5rem; }
.fev-lb__counter {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: 0.60rem; letter-spacing: 0.18em; color: var(--c-muted); z-index: 10001;
}

/* ════════════════════════════════════════════
   12. VIDEO MODAL
════════════════════════════════════════════ */
.fev-vm {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.97); z-index: 9999;
  align-items: center; justify-content: center; backdrop-filter: blur(10px);
}
.fev-vm--open { display: flex; animation: lbFade 0.25s ease; }
.fev-vm__inner {
  width: 90vw; max-width: 960px; aspect-ratio: 16/9;
  background: #000; border-radius: var(--r-md); overflow: hidden;
  position: relative; border: 1px solid var(--c-rim);
}
.fev-vm__placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: var(--c-muted); font-family: var(--f-mono); font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase; background: var(--c-navy);
}
.fev-vm__placeholder svg { width: 40px; height: 40px; fill: var(--c-vivid); opacity: 0.50; }
.fev-vm__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(35,83,232,0.20); border: 1px solid rgba(35,83,232,0.30);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--c-white); font-size: 1.1rem; cursor: pointer; transition: background 0.2s;
}
.fev-vm__close:hover { background: rgba(35,83,232,0.45); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .fev-showcase__row--wide { grid-template-columns: 1fr 1fr; }
  .fev-specs__row { grid-template-columns: repeat(3, 1fr); }
  .fev-packages__grid { grid-template-columns: 1fr; }
  .fev-gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .container { padding: 0 2.5rem; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .fev-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .fev-hero__stat:nth-child(2) { border-right: none; }
  .fev-hero__stat:nth-child(3) { border-top: 1px solid var(--c-rim); }
  .fev-hero__hud { display: none; }
  .fev-about { grid-template-columns: 1fr; }
  .fev-about__media { min-height: 300px; }
  .fev-about__text { padding: 3.5rem 2rem; }
  .fev-services__row { flex-direction: column; }
  .fev-showcase__row, .fev-showcase__row--wide { grid-template-columns: 1fr 1fr; }
  .fev-process__grid { grid-template-columns: repeat(2, 1fr); }
  .fev-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .fev-gal-item--wide { grid-column: span 1; }
  .fev-gal-item--tall { grid-row: span 1; }
  .fev-specs__row { grid-template-columns: repeat(2, 1fr); }
  .fev-cta__content { flex-direction: column; gap: 2rem; }
}
@media (max-width: 480px) {
  .fev-hero__title { font-size: clamp(3rem, 14vw, 5rem); }
  .fev-showcase__row, .fev-showcase__row--wide { grid-template-columns: 1fr; }
  .fev-process__grid { grid-template-columns: 1fr; }
  .fev-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .fev-specs__row { grid-template-columns: 1fr 1fr; }
  .fev-lb__nav { display: none; }
}