/* ══════════════════════════════════════════
   DESIGN TOKENS — idénticos al Home LUM360
══════════════════════════════════════════ */
:root {
  --color-bg:        #050505;
  --color-surface:   #0F0F0F;
  --color-border:    #1C1C1C;
  --color-gold:      #D4AF37;
  --color-gold-dim:  #B8922A;
  --color-gold-glow: rgba(212,175,55,0.15);
  --color-text:      #FAFAFA;
  --color-muted:     #888888;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { display: none; }

a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════
   CURSOR — dorado como el Home
══════════════════════════════════════════ */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
.cursor-hover #cursor-dot { width: 12px; height: 12px; }
.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(212,175,55,0.8); }

/* ══════════════════════════════════════════
   NAV — copia exacta del Home
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5,5,5,0.88);
  border-bottom: 1px solid rgba(212,175,55,0);
  transition: border-color .2s;
  height: 72px;
  display: flex; align-items: center;
}
nav.scrolled { border-color: rgba(212,175,55,0.12); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-weight: 700; font-size: 22px; letter-spacing: -.02em;
  color: var(--color-gold); display: flex; align-items: center;
}
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  color: var(--color-muted); transition: color .2s;
}
.nav-links a:hover { color: var(--color-text); }
.nav-links .active-link { color: var(--color-gold) !important; }

.nav-services-trigger { position: relative; }
.nav-services-trigger > a { display: flex; align-items: center; gap: 6px; }
.nav-services-trigger > a::after {
  content: ''; width: 6px; height: 6px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px); display: inline-block; transition: transform .2s;
}
.nav-services-trigger:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.nav-dropdown {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 480px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.12);
  padding: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.nav-services-trigger:hover .nav-dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 4px; transition: background .15s;
}
.nav-dropdown-item:hover { background: rgba(212,175,55,0.06); }
.nav-dropdown-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold); opacity: .7;
}
.nav-dropdown-text span { display: block; font-size: 13px; font-weight: 500; color: var(--color-text); margin-bottom: 2px; }
.nav-dropdown-text p   { font-size: 11px; color: var(--color-muted); line-height: 1.4; }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  border-radius: 0; border: none; cursor: none;
  transition: all 300ms cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-gold.solid {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dim));
  color: #050505;
}
.btn-gold.solid:hover { transform: scale(1.02); box-shadow: 0 0 24px rgba(212,175,55,.4); }
.btn-gold.outline {
  background: transparent; color: var(--color-gold); border: 1px solid var(--color-gold);
}
.btn-gold.outline:hover { background: var(--color-gold-glow); }
.btn-gold.sm { padding: 10px 22px; font-size: 12px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--color-text); transition: all .3s; }
.mobile-nav {
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(5,5,5,.98); border-bottom: 1px solid var(--color-border);
  padding: 24px; transform: translateY(-100%); opacity: 0;
  transition: all .3s ease; z-index: 90;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 15px; color: var(--color-muted);
  border-bottom: 1px solid var(--color-border); transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--color-text); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 24px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ══════════════════════════════════════════
   UTILS
══════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-gold); margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--color-gold); opacity: .6;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  opacity: .3; margin: 0;
}

/* ══════════════════════════════════════════
   HERO — Scroll cinematográfico + zoom-in
══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5,5,5,.25) 0%,
    rgba(5,5,5,.10) 50%,
    rgba(5,5,5,.80) 100%
  );
}

/* Grain */
.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; opacity: .04; mix-blend-mode: overlay;
}

/* Aura dorada detrás del copy */
.hero-aura {
  position: absolute; top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.14) 0%, transparent 70%);
  pointer-events: none; z-index: 2;
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 860px; padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-gold);
  margin-bottom: 28px; opacity: 0;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--color-gold); opacity: .7;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 5.8vw, 88px);
  font-weight: 300; font-style: italic;
  line-height: 1.08; letter-spacing: .01em;
  color: var(--color-text); margin-bottom: 28px;
  opacity: 0;
}
.hero-h1 em {
  font-style: normal; font-weight: 600;
  color: var(--color-gold);
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--color-muted); line-height: 1.75;
  max-width: 560px; margin: 0 auto 48px;
  opacity: 0;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center; opacity: 0;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-muted); opacity: 0;
  animation: hint-bounce 2.5s ease-in-out 2s infinite;
}
.scroll-hint svg { animation: none; }
@keyframes hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50%        { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ══════════════════════════════════════════
   SECCIÓN INTRO — La cámara como herramienta
══════════════════════════════════════════ */
.intro-section {
  padding: 140px 0 120px;
  position: relative; overflow: hidden;
}
.intro-section::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: var(--gold-line, linear-gradient(90deg, transparent, #D4AF37, transparent));
  opacity: .25;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 48px; } }

.intro-text .label { margin-bottom: 24px; }
.intro-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 300; font-style: italic;
  line-height: 1.1; margin-bottom: 28px;
  color: var(--color-text);
}
.intro-h2 strong { font-weight: 600; font-style: normal; color: var(--color-gold); }
.intro-body { font-size: 16px; color: var(--color-muted); line-height: 1.85; }

.intro-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--color-border);
  border: 1px solid var(--color-border);
}
.stat-box {
  background: var(--color-bg);
  padding: 36px 28px;
  transition: background .25s;
}
.stat-box:hover { background: var(--color-surface); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600; line-height: 1;
  color: var(--color-gold); letter-spacing: -.02em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; color: var(--color-muted);
  letter-spacing: .06em; line-height: 1.5;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   SECCIÓN SERVICIOS — Cards con zoom reveal
══════════════════════════════════════════ */
.services-section {
  padding: 0 0 140px;
}
.services-header {
  padding: 0 0 72px;
  text-align: center;
}
.services-h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600; letter-spacing: -.02em;
  max-width: 640px; margin: 0 auto; line-height: 1.2;
}

/* Sticky scroll service cards */
.service-scroll-stack {
  position: relative;
}
.service-sticky-card {
  position: sticky;
  top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 4px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  height: 520px;
  will-change: transform, opacity;
}
@media (max-width: 900px) {
  .service-sticky-card { grid-template-columns: 1fr; height: auto; position: relative; top: auto; margin-bottom: 24px; }
  .service-card-visual { min-height: 240px; }
}

.service-card-visual {
  position: relative; overflow: hidden; background: var(--color-surface);
}
.service-card-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55) saturate(.9);
  transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .8s;
  will-change: transform;
}
.service-sticky-card:hover .service-card-visual img {
  transform: scale(1.06); filter: brightness(.45) saturate(1);
}
.service-card-num {
  position: absolute; top: 24px; left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 600; line-height: 1;
  color: rgba(212,175,55,.2); letter-spacing: -.04em;
  pointer-events: none;
}
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,.5) 0%, transparent 60%);
}

.service-card-body {
  background: var(--color-surface);
  padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--color-border);
}
.service-card-body .section-label { margin-bottom: 16px; }
.service-card-title {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600; letter-spacing: -.02em;
  margin-bottom: 20px; line-height: 1.2;
}
.service-card-desc {
  font-size: 15px; color: var(--color-muted); line-height: 1.8;
  margin-bottom: 32px;
}
.service-card-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag {
  font-size: 11px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--color-gold);
  border: 1px solid rgba(212,175,55,.2);
  padding: 5px 12px; background: rgba(212,175,55,.04);
}

/* ══════════════════════════════════════════
   SECCIÓN TELEPROMPTER — Pulida del original
══════════════════════════════════════════ */
.teleprompter-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}
@media (max-width: 900px) {
  .teleprompter-section { grid-template-columns: 1fr; }
}

.tp-left {
  padding: 120px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--color-surface);
  position: relative; overflow: hidden;
}
.tp-left::after {
  content: '';
  position: absolute; right: 0; top: 10%; bottom: 10%;
  width: 1px; background: var(--color-border);
}
.tp-left-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300; font-style: italic;
  line-height: 1.08; margin-bottom: 28px;
}
.tp-left-title strong { color: var(--color-gold); font-style: normal; font-weight: 600; }
.tp-left-body {
  font-size: 16px; color: var(--color-muted); line-height: 1.85;
  margin-bottom: 40px; max-width: 460px;
}
.tp-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; }
.tp-feature {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; color: var(--color-muted); line-height: 1.5;
}
.tp-feature-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-gold); flex-shrink: 0; margin-top: 6px;
}

.tp-right {
  position: relative; overflow: hidden;
  background: #000e00;
  min-height: 600px;
}

/* TELEPROMPTER VISUAL — versión pulida */
.tp-screen {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.tp-scanline {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.12) 2px,
    rgba(0,0,0,.12) 4px
  );
}
.tp-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 4;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.7) 100%);
}
/* Línea de lectura — el punto focal donde el presentador fija la vista */
.tp-focus-line {
  position: absolute; z-index: 5; pointer-events: none;
  left: 0; right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(74,222,128,.5) 20%, rgba(74,222,128,.8) 50%, rgba(74,222,128,.5) 80%, transparent 100%);
  box-shadow: 0 0 20px rgba(74,222,128,.5);
}
.tp-focus-line::before {
  content: '';
  position: absolute; left: 0; right: 0;
  top: -30px; height: 62px;
  background: linear-gradient(180deg, transparent, rgba(74,222,128,.04) 40%, rgba(74,222,128,.08) 50%, rgba(74,222,128,.04) 60%, transparent);
}

.tp-text-wrapper {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  overflow: hidden;
  /* Mirrors the text for real prompter experience */
  /* transform: scaleX(-1); — disabled for readability on web */
}
.tp-text {
  position: absolute; left: 0; right: 0; top: 0;
  padding: 0 48px;
  color: #4ade80;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: .04em;
  text-shadow: 0 0 12px rgba(74,222,128,.45);
  
  /* 56 palabras a 80 WPM = 42 segundos exactos */
  animation: prompter-scroll 18s linear infinite;
  
  perspective: 800px;
  transform-origin: top center;
  
  /* Esto obliga al navegador a procesar la animación por hardware, evitando tirones al hacer scroll */
  will-change: transform; 
}

/* El truco del loop continuo: mover solo el 50% de la altura total */
@keyframes prompter-scroll {
  0%   { transform: translateY(10%); } /* Inicia ligeramente abajo para dar entrada */
  100% { transform: translateY(-50%); } /* Al llegar al 50%, reinicia invisiblemente */
}

/* Restringe la pausa SOLO a dispositivos con ratón (Desktop) */
/* Esto evita que el scroll táctil en celulares dispare el estado hover y congele la animación */
@media (hover: hover) and (pointer: fine) {
  .tp-screen:hover .tp-text { animation-play-state: paused; }
}

/* Corner decorations */
.tp-corner {
  position: absolute; z-index: 6; pointer-events: none;
  width: 20px; height: 20px;
  border-color: rgba(74,222,128,.4);
  border-style: solid;
}
.tp-corner.tl { top: 24px; left: 24px; border-width: 2px 0 0 2px; }
.tp-corner.tr { top: 24px; right: 24px; border-width: 2px 2px 0 0; }
.tp-corner.bl { bottom: 24px; left: 24px; border-width: 0 0 2px 2px; }
.tp-corner.br { bottom: 24px; right: 24px; border-width: 0 2px 2px 0; }

/* REC badge */
.tp-rec {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 6; display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,100,100,.9);
}
.tp-rec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #f44;
  box-shadow: 0 0 8px rgba(255,60,60,.8);
  animation: rec-blink 1.4s ease-in-out infinite;
}
@keyframes rec-blink { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }

/* Speed counter */
.tp-speed {
  position: absolute; bottom: 20px; right: 20px; z-index: 6;
  font-family: 'Courier New', monospace; font-size: 11px;
  color: rgba(74,222,128,.5); letter-spacing: .1em;
}

/* ══════════════════════════════════════════
   SECCIÓN DRONE — Video panorámico full
══════════════════════════════════════════ */
.drone-section {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.drone-bg {
  position: absolute; inset: 0; z-index: 0;
}
.drone-bg video, .drone-bg img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
.drone-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.35) 65%, rgba(5,5,5,.1) 100%);
}
.drone-content {
  position: relative; z-index: 2;
  max-width: 600px; padding: 0 48px;
}
.drone-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300; font-style: italic;
  line-height: 1.06; margin-bottom: 24px;
}
.drone-h2 strong { font-weight: 600; font-style: normal; color: var(--color-gold); }
.drone-body { font-size: 16px; color: #ccc; line-height: 1.8; margin-bottom: 36px; }
.drone-specs {
  display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 40px;
}
.drone-spec {
  display: flex; flex-direction: column; gap: 4px;
}
.drone-spec-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: var(--color-gold);
}
.drone-spec-label { font-size: 11px; color: var(--color-muted); letter-spacing: .08em; text-transform: uppercase; }

/* ══════════════════════════════════════════
   SECCIÓN GALERÍA — Hover video / zoom
══════════════════════════════════════════ */
.gallery-section { padding: 140px 0; background: var(--color-bg); }
.gallery-header { text-align: center; margin-bottom: 72px; }
.gallery-h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 600; letter-spacing: -.02em;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2px;
}
@media (max-width: 900px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-masonry { grid-template-columns: 1fr; }
}

.gallery-item {
  position: relative; overflow: hidden; background: var(--color-surface);
  cursor: none;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.5) saturate(.8);
  transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .8s;
  min-height: 280px;
}
.gallery-item:hover img {
  transform: scale(1.06); filter: brightness(.35) saturate(1.1);
}

.gallery-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0; transition: opacity .5s;
}
.gallery-video-overlay video {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-item:hover .gallery-video-overlay { opacity: 1; }

.gallery-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 24px 24px 20px;
  background: linear-gradient(0deg, rgba(5,5,5,.85) 0%, transparent 100%);
  transform: translateY(8px); opacity: 0;
  transition: transform .4s ease, opacity .4s;
}
.gallery-item:hover .gallery-info { transform: translateY(0); opacity: 1; }
.gallery-info-label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 4px;
}
.gallery-info-title { font-size: 16px; font-weight: 600; }

/* Expand icon */
.gallery-expand {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8);
  transition: opacity .3s, transform .3s;
  color: var(--color-gold);
}
.gallery-item:hover .gallery-expand { opacity: 1; transform: scale(1); }

/* ══════════════════════════════════════════
   SECCIÓN PROCESO — 3 pasos
══════════════════════════════════════════ */
.process-section {
  padding: 140px 0;
  background: var(--color-surface);
  position: relative; overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,.04) 0%, transparent 65%);
  pointer-events: none;
}
.process-header { margin-bottom: 80px; }
.process-h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600; letter-spacing: -.02em; max-width: 500px;
}
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--color-border);
  border: 1px solid var(--color-border);
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
}
.process-step {
  background: var(--color-bg); padding: 56px 40px;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.process-step:hover { background: rgba(212,175,55,.03); }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 600; line-height: .9;
  color: rgba(212,175,55,.1); letter-spacing: -.04em;
  margin-bottom: 28px; display: block;
}
.step-title { font-size: 19px; font-weight: 600; margin-bottom: 14px; }
.step-body { font-size: 14px; color: var(--color-muted); line-height: 1.75; }
.step-connector {
  position: absolute; right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 1px; background: var(--color-gold); opacity: .3;
}
.process-step:last-child .step-connector { display: none; }

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
#cta-final {
  padding: 160px 48px;
  text-align: center; background: var(--color-bg);
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(212,175,55,.06) 0%, transparent 70%);
  pointer-events: none;
  animation: cta-breathe 5s ease-in-out infinite;
}
@keyframes cta-breathe {
  0%, 100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.15); }
}
.cta-label { justify-content: center; margin-bottom: 24px; }
.cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300; font-style: italic;
  line-height: 1.08; margin-bottom: 20px;
}
.cta-h2 strong { font-weight: 600; font-style: normal; color: var(--color-gold); }
.cta-sub {
  font-size: 16px; color: var(--color-muted); line-height: 1.75;
  max-width: 520px; margin: 0 auto 48px;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   FOOTER — idéntico al Home
══════════════════════════════════════════ */
footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 56px;
}
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-inner { grid-template-columns: 1fr; gap: 36px; } }

.footer-tagline {
  font-size: 13px; color: var(--color-muted); line-height: 1.6;
  max-width: 280px; margin-bottom: 24px;
}
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--color-gold);
  border: 1px solid rgba(212,175,55,.2); padding: 8px 16px;
  transition: border-color .2s;
}
.footer-wa:hover { border-color: var(--color-gold); }
.footer-col h4 {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-muted); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--color-muted); transition: color .2s; }
.footer-col a:hover { color: var(--color-text); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--color-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--color-muted); transition: color .2s; }
.footer-legal a:hover { color: var(--color-text); }

/* ══════════════════════════════════════════
   GLOBAL CANVAS PARTICLES
══════════════════════════════════════════ */
#web-particles {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0.75; mix-blend-mode: screen;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS (initial state)
══════════════════════════════════════════ */
.gsap-fade { opacity: 0; transform: translateY(36px); }
.gsap-fade-left { opacity: 0; transform: translateX(-40px); }
.gsap-fade-right { opacity: 0; transform: translateX(40px); }
.gsap-scale { opacity: 0; transform: scale(.96); }

/* ══════════════════════════════════════════
   RESPONSIVE PATCHES
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .tp-left { padding: 64px 32px; }
  .drone-content { padding: 0 24px; }
  #cta-final { padding: 100px 24px; }
  .service-card-body { padding: 36px 28px; }
  .process-step { padding: 40px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
