/* ==============================
   TOKENS / BASE
============================== */
:root{
  --bg:#000; --fg:#fff; --muted:#cfd3ff;
  --panel:rgba(8,8,12,.55); --line:#0b0b14;
  --accent:#7f7bff; --accent2:#30ffd1;
  --radius:18px; --blur:14px;
  --brand:#5651b1;
  --violet:#5651B1; --cyan:#30FFD1; --deep:#00002D; --black:#000;
}

*{box-sizing:border-box}
html,body{height:100%}
html, body { margin:0; padding:0; overflow-x:hidden; }
body{
  margin:0; color:var(--fg);
  font:500 16px/1.45 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

/* ==============================
   FONDO PLASMA GLOBAL + CURSOR
============================== */
body#bg{
  position:relative;
  /* Fondo continuo para toda la web */
  background: radial-gradient(circle at 50% 50%, #000010, var(--deep));
  color:#fff; overflow-x:hidden;
}
body#bg::before{
  content:""; position:fixed; inset:-50%;
  background: conic-gradient(
    from 0deg,
    rgba(86,81,177,.35),
    rgba(0,0,0,0),
    rgba(86,81,177,.45),
    rgba(0,0,0,0)
  );
  filter: blur(140px);
  animation: spinPlasma 25s linear infinite;
  opacity:.7; z-index:-1;
}
@keyframes spinPlasma{
  from{ transform:rotate(0deg) scale(1); }
  to{ transform:rotate(360deg) scale(1.2); }
}

/* Quita cualquier “división” visual entre secciones */
section,
.heroFS,
.whoWeAre,
.wwdHero,
.lab3d,
.marketingPromo,
.work-vertical-slider,
.why-vions-section,
.highlights-section,
.hero-section{
  background:transparent !important;
  position:relative;
  border:none; box-shadow:none;
  z-index:2;
}
/* Borra velos locales */
.heroFS::before,.heroFS::after,
.whoWeAre::before,
.wwdHero::before,
.lab3d::before,
.marketingPromo::before,
.marketingArt::before,
.marketingArt::after,
.why-vions-section::before,
.highlights-section::before{
  background:transparent !important;
  backdrop-filter:none !important;
}

/* Opcional: ligera niebla general para legibilidad de secciones */
section::after {
  content:"";
  position:absolute;
  inset:0;
  background:transparent !important;
  pointer-events:none;
  z-index:-1;
}


/* Brillo en títulos */
h1,h2,h3,h4,h5,h6{
  color:#fff;
  text-shadow:0 0 10px rgba(86,81,177,.8),0 0 25px rgba(86,81,177,.5);
  transition:transform .3s ease, filter .3s ease;
}
h1:hover,h2:hover,h3:hover{ transform:scale(1.02); filter:brightness(1.2); }

/* Cursor energético */
.cursor{
  position:fixed; top:0; left:0;
  width:18px; height:18px; border:2px solid var(--violet);
  border-radius:50%; pointer-events:none; mix-blend-mode:difference;
  transform:translate(-50%,-50%); transition:transform .1s; z-index:9999;
}
.cursor::after{
  content:""; position:absolute; inset:-15px; border-radius:50%;
  background:radial-gradient(circle, rgba(86,81,177,.4), transparent 70%);
  filter:blur(8px); opacity:.5; animation:pulse 2s infinite ease-in-out;
}
@keyframes pulse{ 0%,100%{ transform:scale(1); opacity:.5 } 50%{ transform:scale(1.6); opacity:1 } }

/* AOS baseline */
[data-aos]{ opacity:0; transform:translateY(40px); transition:all 1s ease-out; }
[data-aos].aos-animate{ opacity:1; transform:translateY(0); }

/* ==============================
   HERO FULLSCREEN (video header)
============================== */
.heroFS{
  position:relative; min-height:100svh; overflow:hidden;
  border-bottom:1px solid var(--line);
  /* sin fondo local, usa plasma global */
}
.heroFS__video{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:saturate(1.05) contrast(1.05) brightness(.95); z-index:0;
}
.heroFS::after{
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,.65) 100%);
  pointer-events:none;
}
.heroFS__inner{
  position:relative; z-index:2; min-height:100svh;
  display:grid; align-content:center; justify-items:center; gap:1.1rem;
  padding:clamp(20px,4vw,48px);
}
.heroFS__title{
  margin:0 .5rem .25rem; display:grid; gap:.25rem; line-height:.95;
  text-transform:uppercase; letter-spacing:.06em; text-align:center;
  font-weight:900; font-size:clamp(32px,7vw,84px);
  filter: drop-shadow(0 18px 42px rgba(0,0,0,.55));
}
.heroFS__title>span{ display:block; color:#f4f7ff; }
.heroFS__title .fx-gradient{
  background:linear-gradient(90deg,#ff5bbd 0%,#9c6cfb 35%,#4db8ff 68%,#30ffd1 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.heroFS__subtitle{
  margin:.35rem 0 1rem; color:var(--muted); opacity:.95; font-weight:600;
  text-align:center; font-size:clamp(14px,2.1vw,20px); max-width:min(1100px,88vw);
}
.heroFS__search{ width:min(1100px,92vw); display:grid; gap:.6rem; }
.heroFS__search .searchBox{
  display:grid; grid-template-columns:1fr auto; gap:.5rem;
  background:var(--panel); backdrop-filter:blur(var(--blur));
  border:1px solid rgba(255,255,255,.12); border-radius:999px; padding:.6rem;
  box-shadow:0 10px 34px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.05);
}
.heroFS__search input[type="search"]{
  border:none; outline:none; background:transparent; color:#fff;
  padding:.9rem 1.1rem; font:600 16px/1.2 inherit; letter-spacing:.02em;
}
.heroFS__search input::placeholder{ color:#cfd3ff; opacity:.66 }
.heroFS__search button{
  border:none; outline:none; cursor:pointer; padding:.9rem 1.1rem; border-radius:999px;
  color:#000; background:#fff; font-weight:800; letter-spacing:.02em;
  transition: transform .15s ease, box-shadow .15s ease;
}
.heroFS__search button:hover{ transform:translateY(-1px); box-shadow:0 10px 28px rgba(255,255,255,.18); }

.heroFS__chips{
  position:relative; width:min(1100px,92vw); overflow:hidden;
  mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.chipsTrack{
  display:flex; gap:14px; padding:.5rem .25rem; will-change:transform;
  animation:chipsMarquee 26s linear infinite;
}
.chipsTrack:hover{ animation-play-state:paused; }
@keyframes chipsMarquee{ to{ transform:translateX(-50%); } }
.chip{
  display:inline-flex; align-items:center; gap:.6rem; padding:.65rem .95rem;
  background:rgba(255,255,255,.07); backdrop-filter:blur(10px); color:#fff;
  text-decoration:none; border:1px solid rgba(255,255,255,.14); border-radius:999px;
  white-space:nowrap; font-weight:700; letter-spacing:.02em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.chip:hover{ transform:translateY(-1px); background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.25); }
.chipsTrack>*{ flex:0 0 auto; }

.heroFS__mute{
  position:absolute; right:14px; bottom:14px; z-index:3; display:inline-grid; place-items:center;
  width:46px; height:46px; border-radius:50%; background:rgba(8,8,12,.6);
  backdrop-filter:blur(10px); color:#fff; border:1px solid rgba(255,255,255,.18);
  cursor:pointer; transition: transform .15s ease, background .15s ease;
}
.heroFS__mute:hover{ transform:translateY(-1px); background:rgba(8,8,12,.78); }

@media (max-width:880px){ .heroFS__subtitle{ max-width:min(760px,92vw); } }
@media (max-width:600px){
  .heroFS__search .searchBox{ grid-template-columns:1fr; }
  .heroFS__search button{ width:100%; }
}
@media (prefers-reduced-motion: reduce){ .chipsTrack{ animation:none; } }

/* ==============================
   WHO WE ARE
============================== */
/* ==============================
   WHO WE ARE (Revisión central + dual layout)
============================== */
.whoWeAre {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: transparent;
  isolation: isolate;
}

.whoWeAre::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(86, 81, 177, 0.15),
      transparent 70%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(4px);
}

/* === CONTENEDOR PRINCIPAL === */
.whoWeAre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  width: min(1300px, 90vw);
  margin: 0 auto;
  z-index: 2;
}

/* === COLUMNA: TÍTULO === */
.whoWeAre__col--title {
  text-align: right;
}
.whoWeAre__title {
  font-family: "Orbitron", "Audiowide", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 0.85;
  font-size: clamp(50px, 9vw, 150px);
  margin: 0;
  background: linear-gradient(90deg, #7f7bff, #30ffd1, #7f7bff);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 25px rgba(127, 123, 255, 0.4),
    0 0 50px rgba(48, 255, 209, 0.2);
  animation: gradientFlow 6s ease-in-out infinite;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === COLUMNA: TEXTO === */
.whoWeAre__col--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  text-align: left;
}

.whoWeAre__block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
}
.whoWeAre__block:nth-child(2) { animation-delay: 0.4s; }

.whoWeAre__dot {
  font-size: 2rem;
  line-height: 1;
  color: #30ffd1;
  text-shadow:
    0 0 10px rgba(48, 255, 209, 0.6),
    0 0 30px rgba(127, 123, 255, 0.3);
}

.whoWeAre__block p {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(127, 123, 255, 0.4),
    0 0 20px rgba(48, 255, 209, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .whoWeAre__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .whoWeAre__col--title {
    text-align: center;
  }
  .whoWeAre__col--text {
    text-align: center;
    align-items: center;
  }
  .whoWeAre__block {
    justify-content: center;
  }
}



/* ==============================
   WHAT WE DO HERO
============================== */
/* ==============================
   WHAT WE DO – CREATIVE TEAM (Rediseñado Futurista)
============================== */
.wwdHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  background: transparent !important;
  isolation: isolate;
}

.wwdHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(127, 123, 255, 0.18),
      transparent 70%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(48, 255, 209, 0.1),
      transparent 70%
    );
  filter: blur(60px);
  opacity: 0.8;
  animation: floatGlow 18s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes floatGlow {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.8; }
}

.wwdHero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: fadeUp 1.4s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.wwdHero__title {
  margin: 0;
  font-family: "Orbitron", "Audiowide", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  font-size: clamp(4rem, 12vw, 12rem);
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #7f7bff, #30ffd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 30px rgba(127, 123, 255, 0.4),
    0 0 60px rgba(48, 255, 209, 0.2);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.wwdHero__title:hover {
  transform: scale(1.02);
  filter: brightness(1.2);
}

.wwdHero__kicker {
  margin-top: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: rgba(220, 230, 255, 0.95);
  text-shadow: 0 0 18px rgba(127, 123, 255, 0.4);
  position: relative;
}

.wwdHero__kicker::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1rem;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #7f7bff, #30ffd1);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ==============================
   BOTÓN FUTURISTA — MATCH REAL "FIND DJS"
============================== */
.btn-futuristic {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 3rem;
  font-family: "Orbitron", "Poppins", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  background: radial-gradient(circle at 50% 45%, #3f38b3 0%, #181538 90%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow:
    inset 0 0 20px rgba(127, 123, 255, 0.4),
    0 0 15px rgba(127, 123, 255, 0.15);
  isolation: isolate;
}

/* Halo exterior degradado con blur */
.btn-futuristic::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7f7bff, #30ffd1, #7f7bff);
  filter: blur(10px);
  opacity: 0.55;
  z-index: -1;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

/* Efecto de luz interior suave */
.btn-futuristic::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 30%, rgba(150, 140, 255, 0.35), rgba(10, 10, 25, 0.95) 85%);
  z-index: -1;
  pointer-events: none;
}

/* Hover — más glow y leve expansión */
.btn-futuristic:hover {
  transform: translateY(-2px) scale(1.03);
  background: radial-gradient(circle at 50% 40%, #4e46d5 0%, #181538 85%);
  box-shadow:
    inset 0 0 25px rgba(127, 123, 255, 0.5),
    0 0 25px rgba(127, 123, 255, 0.25),
    0 0 45px rgba(48, 255, 209, 0.2);
}

.btn-futuristic:hover::before {
  opacity: 0.9;
  filter: blur(14px);
}

/* Pulso suave (breathing) */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      inset 0 0 18px rgba(127, 123, 255, 0.35),
      0 0 15px rgba(127, 123, 255, 0.15);
  }
  50% {
    box-shadow:
      inset 0 0 25px rgba(127, 123, 255, 0.5),
      0 0 25px rgba(127, 123, 255, 0.25);
  }
}
.btn-futuristic {
  animation: pulseGlow 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .btn-futuristic {
    padding: 0.9rem 2.3rem;
    font-size: 0.9rem;
  }
}

/* ==============================
   3D LAB
============================== */
/* ==========================================================
   3D DESIGN & VISUALS LAB — visible sí o sí, texto izq / video der
========================================================== */
/* ===============================
   3D DESIGN & VISUALS LAB — GIF visible, derecha (agrandado)
================================ */
.lab3d {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: transparent !important;
  overflow: visible;
  color: #fff;
  z-index: 2;
}

/* Layout interno */
.lab3d__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 5rem;
  width: min(1400px, 94vw);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* === GIF DERECHA === */
.lab3d__visual {
  flex: 1 1 60%; /* más ancho */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  min-height: 500px;
}

.lab3d__gif {
  width: 130%; /* 📈 mucho más grande */
  max-width: 900px;
  height: auto;
  object-fit: contain;
  opacity: 1;
  background: transparent;
  filter: brightness(1.25) contrast(1.15) saturate(1.3);
  transform: translateZ(0);
  will-change: transform, opacity;
  animation: float3d 6s ease-in-out infinite alternate;
}

/* === TEXTO IZQUIERDA === */
.lab3d__content {
  flex: 1 1 40%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 4;
}

.lab3d__title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, #7f7bff, #30ffd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(127,123,255,0.3);
  margin-bottom: 1.2rem;
}

.lab3d__desc {
  color: rgba(230,235,255,0.92);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.3rem;
  text-shadow: 0 0 10px rgba(127,123,255,0.2);
}

/* Animación flotante */
@keyframes float3d {
  0% { transform: translateY(0); opacity: 0.95; }
  100% { transform: translateY(-25px); opacity: 1; }
}

/* === Responsive === */
@media (max-width: 1100px) {
  .lab3d__gif {
    width: 115%;
    max-width: 700px;
  }
}

@media (max-width: 900px) {
  .lab3d__inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .lab3d__content {
    text-align: center;
    order: 2;
  }

  .lab3d__visual {
    order: 1;
  }

  .lab3d__gif {
    max-width: 400px;
    width: 90%;
  }

  .lab3d__title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .lab3d__desc {
    font-size: 0.95rem;
  }
}


/* ==============================
   MARKETING & PROMOTION
============================== */
/* ==========================================================
   MARKETING & PROMOTION — sin línea, fondo unificado, video alto y limpio
========================================================== */
.marketing-promo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: visible;
  z-index: 5;
  padding: 220px 0 240px; /* 🔹 más aire superior e inferior */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  isolation: isolate;
}

/* 🔮 Forzar eliminación de cualquier pseudo fondo o borde */
.marketing-promo::before,
.marketing-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  z-index: -1;
}

/* 🔧 Eliminar cualquier línea por gradientes residuales */
section + section,
.marketing-promo + section,
section + .marketing-promo {
  border-top: none !important;
  box-shadow: none !important;
  margin-top: 0 !important;
}

/* 🧩 Contenedor */
.promo-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: min(1300px, 92vw);
  margin: 0 auto;
  align-items: center;
  gap: 5rem;
  background: transparent !important;
}

/* 🎥 Video container */
.promo-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: transparent !important;
}

/* 🎬 Video más alto y limpio */
.promo-video {
  width: 80%;             /* ligeramente más ancho */
  max-width: 580px;       /* tamaño visual amplio */
  max-height: 420px;      /* 🔹 más alto verticalmente */
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  background: transparent !important;
  filter: brightness(1.15) contrast(1.15) saturate(1.2);
  box-shadow: 0 0 45px rgba(127, 123, 255, 0.25);
  transition: transform 0.8s ease, filter 0.8s ease;
}

/* Hover dinámico */
.promo-video:hover {
  transform: scale(1.04);
  filter: brightness(1.25) contrast(1.25) saturate(1.25);
}

/* Responsivo */
@media (max-width: 1200px) {
  .promo-video {
    width: 85%;
    max-width: 500px;
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .promo-video {
    width: 90%;
    max-width: 360px;
    max-height: 280px;
  }
}

/* ==============================
   OUR MARKETING IS OUR ART
============================== */
.marketingArt{
  position:relative; min-height:100vh; display:flex; align-items:center;
  padding:clamp(40px,8vw,80px) 0; background:linear-gradient(135deg, #0a0a0f 0%, #151521 100%);
  color:#fff; overflow:hidden;
}
.marketingArt__container{
  width:min(1400px,92vw); margin:0 auto; display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(40px,6vw,80px); align-items:start;
}
.marketingArt__mainTitle{
  font-size:clamp(3rem,6vw,5.5rem); font-weight:800; line-height:.95;
  text-transform:uppercase; letter-spacing:.02em; margin:0;
}
.marketingArt__mainTitle span{
  display:block; background:linear-gradient(135deg,#ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.marketingArt__content{ display:flex; flex-direction:column; gap:2rem; }
.marketingArt__paragraph{
  font-size:clamp(1.1rem,1.8vw,1.3rem); line-height:1.6; font-weight:400; margin:0;
  color:#e0e0ff; letter-spacing:.02em;
}
.marketingArt__divider{ width:80px; height:3px; background:linear-gradient(90deg,#7f7bff,#30ffd1); margin:1rem 0; }
.marketingArt__subtitle{
  font-size:clamp(1.5rem,2.5vw,2rem); font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin:0;
  background:linear-gradient(135deg,#7f7bff 0%, #30ffd1 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.marketingArt::before{
  content:""; position:absolute; top:-50%; right:-10%; width:600px; height:600px;
  background:radial-gradient(circle, rgba(127,123,255,.1) 0%, transparent 70%);
  pointer-events:none;
}
.marketingArt::after{
  content:""; position:absolute; bottom:-30%; left:-10%; width:400px; height:400px;
  background:radial-gradient(circle, rgba(48,255,209,.08) 0%, transparent 70%);
  pointer-events:none;
}
@media (max-width:968px){
  .marketingArt__container{ grid-template-columns:1fr; gap:3rem; text-align:center; }
  .marketingArt__divider{ margin:1rem auto; }
  .marketingArt::before,.marketingArt::after{ display:none; }
}
@media (max-width:768px){
  .marketingArt{ min-height:auto; padding:60px 0; }
  .marketingArt__mainTitle{ font-size:clamp(2.5rem,10vw,4rem); }
}

/* ==============================
   GLOBAL SOUND
============================== */
.global-sound-section{
  position:relative; min-height:100vh; display:flex; align-items:center; justify-content:center;
  padding:80px 0; background:#000; color:#fff; font-family:'Arial',sans-serif;
}
.global-sound-container{ width:min(1200px,90vw); margin:0 auto; text-align:center; }
.global-sound-header{ margin-bottom:80px; }
.global-sound-title{ font-size:120px; font-weight:900; text-transform:uppercase; letter-spacing:.1em; margin:0; color:#fff; line-height:1; }
.global-sound-content{ display:flex; align-items:flex-start; justify-content:center; gap:60px; margin-bottom:80px; }
.global-sound-column{ display:flex; flex-direction:column; align-items:center; text-align:center; flex:1; max-width:300px; }
.global-sound-subtitle{ font-size:18px; font-weight:700; text-transform:uppercase; letter-spacing:.2em; margin:0 0 30px 0; color:#fff; }
.global-sound-item{ display:flex; align-items:center; gap:12px; }
.global-sound-checkbox{ font-size:20px; color:#fff; font-family:'Segoe UI',sans-serif; }
.global-sound-text{ font-size:16px; font-weight:400; color:#ccc; text-transform:lowercase; letter-spacing:.02em; }
.global-sound-description{ font-size:16px; font-weight:400; color:#ccc; line-height:1.5; margin:0; letter-spacing:.02em; }
.global-sound-separator{ width:1px; height:80px; background:linear-gradient(to bottom, transparent 0%, #666 50%, transparent 100%); margin-top:40px; }
.global-sound-footer{ display:flex; justify-content:center; }
.global-sound-button{
  padding:15px 50px; border:1px solid #fff; background:transparent; color:#fff;
  font-size:14px; font-weight:600; text-transform:uppercase; letter-spacing:.3em; cursor:pointer;
  transition:all .3s ease;
}
.global-sound-button:hover{ background:#fff; color:#000; }
@media (max-width:968px){
  .global-sound-title{ font-size:80px; }
  .global-sound-content{ flex-direction:column; gap:40px; }
  .global-sound-separator{ width:100px; height:1px; margin:0 auto; }
}
@media (max-width:768px){
  .global-sound-section{ min-height:auto; padding:60px 0; }
  .global-sound-title{ font-size:60px; letter-spacing:.05em; }
  .global-sound-header{ margin-bottom:60px; }
  .global-sound-content{ margin-bottom:60px; }
}
@media (max-width:480px){
  .global-sound-title{ font-size:48px; }
  .global-sound-subtitle{ font-size:16px; letter-spacing:.1em; }
  .global-sound-button{ padding:12px 40px; font-size:12px; }
}

/* ==============================
   HOW WE WORK (legacy vertical slider)
   - Se limpia para fondo transparente
============================== */
/* ================================
   HOW WE WORK — Full Width + Responsive Fix
================================ */
.howwework-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: transparent !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vslider-container {
  position: relative;
  width: 100%;
  max-width: 1400px; /* 🟢 más ancho */
  margin: 0 auto;
  overflow: hidden;
}

/* ===== Slides ===== */
.vslide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease;
}

.vslide.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.vslide-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(90deg, #7f7bff, #30ffd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

/* ===== Contenido ===== */
.vslide-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
}

.step-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #30ffd1, #7f7bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vslide-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #a0c4ff;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: anywhere; /* ✅ Forza salto de línea automático */
  text-align: center;
}

.vslide-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(230, 235, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Controles ===== */
.vslider-controls {
  position: relative;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.vslider-arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(127, 123, 255, 0.4);
  color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vslider-arrow:hover {
  border-color: #30ffd1;
  box-shadow: 0 0 20px rgba(48, 255, 209, 0.3);
}

/* ===== Indicadores ===== */
.vslider-indicators {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}

.vslider-indicators .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.vslider-indicators .dot.active {
  background: #30ffd1;
  box-shadow: 0 0 10px rgba(48, 255, 209, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .howwework-slider {
    min-height: auto;
    padding: 6rem 1.5rem;
  }

  .vslide-content h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 0.8rem;
  }

  .vslide-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .vslider-controls {
    margin-top: 2rem;
  }
}

/* Evita que se encimen controles en móviles */
@media (max-width: 600px) {
  .vslider-container {
    padding-bottom: 4rem; /* espacio adicional inferior */
  }

  .vslider-controls {
    position: relative;
    bottom: 0;
    flex-direction: column;
    gap: 1rem;
  }

  .vslider-arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}


/* ==============================
   WHY VIONS
============================== */
/* ================================
   WHY VIONS? - Horizontal Slider Responsive
================================ */
.why-vions-horizontal {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: #fff;
  text-align: center;
}

/* 🔠 Título principal */
.whyVions__mainTitle {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #7f7bff, #30ffd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 🌀 Contenedor del carrusel */
.whyVions__track {
  display: flex;
  align-items: center;
  transition: transform 0.8s ease-in-out;
  width: 100%;
  max-width: 1000px;
}

/* 🔹 Slides */
.whyVions__slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.whyVions__slide.active {
  opacity: 1;
  transform: scale(1);
}

.whyVions__content {
  max-width: 650px;
  padding: 2rem;
  background: transparent;
}

.whyVions__number {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
  background: linear-gradient(90deg, #30ffd1, #7f7bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whyVions__title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #a0c4ff;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.whyVions__desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(230, 235, 255, 0.9);
  line-height: 1.6;
}

/* Controles */
.whyVions__controls {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.whyVions__arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(127, 123, 255, 0.4);
  color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.whyVions__arrow:hover {
  border-color: #30ffd1;
  box-shadow: 0 0 20px rgba(48, 255, 209, 0.3);
}

/* Dots */
.whyVions__dots {
  display: flex;
  gap: 0.8rem;
}
.whyVions__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.whyVions__dots button.active {
  background: #30ffd1;
  box-shadow: 0 0 10px rgba(48, 255, 209, 0.6);
}

@media (max-width: 768px) {
  .whyVions__content {
    padding: 1.5rem;
  }
  .whyVions__number {
    font-size: 3.5rem;
  }
  .whyVions__title {
    font-size: 1.8rem;
  }
  .whyVions__desc {
    font-size: 1rem;
  }
  .whyVions__controls {
    margin-top: 1.8rem;
  }
}


/* ==============================
   HIGHLIGHTS
============================== */
/* ==== HIGHLIGHTS – sin sombras, sin fondo ==== */
.highlights-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  color: #fff;
  overflow: hidden;
}

.highlights-title {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 2rem 0;
  background: linear-gradient(90deg, #7f7bff, #30ffd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none !important; /* ❌ sin sombra */
}

.highlights-carousel {
  position: relative;
  width: min(1200px, 92vw);
  overflow: hidden;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important; /* ❌ sin sombra en el contenedor */
}

.highlights-track {
  display: flex;
  align-items: center;
  will-change: transform;
  background: transparent !important;
  padding: 0;
  margin: 0;
  border: 0;
  box-shadow: none !important;
}

.highlight-slide {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 340px);
  aspect-ratio: 4 / 5;
  margin-right: 20px;
  border-radius: 18px;
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important; /* ❌ sin sombra en cada imagen */
  transform: translateZ(0);
}

.highlight-slide:last-child {
  margin-right: 0;
}

.highlight-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent !important;
  box-shadow: none !important; /* ❌ sin sombra en las imágenes */
}

.highlight-slide:hover {
  transform: scale(1.02);
}

/* Responsivo */
@media (max-width: 1024px) {
  .highlight-slide {
    width: clamp(220px, 42vw, 360px);
  }
}
@media (max-width: 640px) {
  .highlight-slide {
    width: 80vw;
  }
}

/* ==============================
   HERO SECTION (CTA)
============================== */
/* ===========================
   COLLAB SECTION (FINAL CTA)
=========================== */
.vions-collab {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: none; /* 🔹 sin fondo adicional */
  text-align: center;
  color: #fff;
  z-index: 2;
  overflow: hidden;
}

.vions-collab__inner {
  position: relative;
  z-index: 3;
  padding: 4rem 2rem;
}

.vions-collab__title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}

.fx-gradient {
  background: linear-gradient(90deg, #7f7bff, #30ffd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(127,123,255,0.3);
}
.fx-gradient-strong {
  background: linear-gradient(90deg, #30ffd1, #7f7bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(48,255,209,0.4);
}

.vions-collab__subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(230,235,255,0.9);
  margin-bottom: 2.5rem;
}

/* Botón igual que el resto del sitio */
.btn-futuristic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 1rem 3rem;
  border-radius: 999px;
  border: 1px solid rgba(127,123,255,0.5);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(86,81,177,0.4),
              inset 0 0 20px rgba(48,255,209,0.1);
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}
.btn-futuristic:hover {
  border-color: #30ffd1;
  box-shadow: 0 0 35px rgba(48,255,209,0.4),
              inset 0 0 30px rgba(48,255,209,0.25);
  transform: translateY(-2px);
}


/* ==============================
   PINNED COPY + GALERÍA
============================== */
/* =============================
   PIN SECTION (Texto + Slider 1 imagen)
============================= */
.pin.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  overflow: hidden; /* ✅ evita encimado */
  position: relative;
  z-index: 1;
}

/* CONTENEDOR INTERNO */
.pin__wrap {
  display: grid;
  grid-template-columns: min(500px, 45ch) 1fr;
  gap: 4vw;
  align-items: center;
  padding: 4vw;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* TEXTO IZQUIERDA */
.pin__copy {
  position: sticky;
  top: 100px;
  align-self: start;
  z-index: 10;
}

.pin__copy h2 {
  margin: 0 0 2rem;
  font: 700 clamp(20px, 3.5vw, 32px)/1.2 system-ui;
  color: #fff;
  letter-spacing: -0.01em;
}

.services-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  padding: 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(86, 81, 177, 0.05);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(86, 81, 177, 0.1);
  transform: translateX(5px);
}

.service-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* GALERÍA DERECHA */
.pin__gallery {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: transparent !important; /* ✅ Sin fondo blanco */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel__track {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 1s ease-in-out;
}

/* Solo una imagen a la vez */
.tile {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.tile__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.8s ease;
}

.tile.active .tile__media {
  transform: scale(1.02);
}

.tile__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 3rem 2rem 2rem;
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.tile:hover .tile__overlay {
  opacity: 1;
  transform: translateY(0);
}

.tile__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}

.tile__category {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* OCULTAR CONTROLES */
.slider-controls {
  display: none !important;
}

/* RESPONSIVE */
/* =============================
   FIX: evitar encimado en móviles
============================= */
@media (max-width: 1024px) {
  .pin__copy {
    position: static !important; /* ✅ Elimina el sticky */
    top: auto;
    align-self: auto;
  }

  .pin.section {
    flex-direction: column;
    align-items: flex-start;
    overflow: visible; /* ✅ Deja fluir el contenido */
  }

  .pin__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .pin__gallery {
    margin-top: 2rem; /* ✅ Espacio entre texto e imagen */
    height: auto;
    min-height: 320px;
  }

  .pin__gallery img,
  .tile__media {
    max-height: 380px;
    object-fit: cover;
  }
}


/* ===============================
   HOW WE WORK – NUEVO SLIDER FULLSCREEN
   (si usas la nueva versión con .howwework-slider / .vslide)
=============================== */
.howwework-slider{
  position:relative; width:100%; height:100vh; overflow:hidden;
  background:transparent !important; color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.vslider-container{ position:relative; width:100%; height:100%; }
.vslide{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; flex-direction:column;
  opacity:0; transform:translateY(100%); transition:all 1s ease;
  background:transparent !important; border:none !important; box-shadow:none !important;
}
.vslide.active{ opacity:1; transform:translateY(0); }

.vslide-title{
  text-align:center; font-size:clamp(3.5rem,10vw,8rem); font-weight:900; line-height:.9; text-transform:uppercase; letter-spacing:.05em;
}
.vslide-title span{
  background:linear-gradient(90deg,#7f7bff,#30ffd1);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}

.vslide-content h2{
  font-size:clamp(2rem,5vw,3rem); font-weight:800; text-transform:uppercase; letter-spacing:.1em; margin-bottom:1rem;
  background:linear-gradient(90deg,#6ecbff -20%, #7f7bff 40%, #30ffd1 120%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-size:200%; background-position:center;
}
/* Subtítulos mejorados (copy) */
.vslide-content p{
  font-family:"Manrope","Poppins","Inter",sans-serif;
  font-weight:400; font-size:clamp(1rem,2vw,1.25rem); line-height:1.6;
  max-width:700px; margin:.25rem auto 0; text-align:center;
  color:rgba(220,230,255,.95); letter-spacing:.03em;
  text-shadow:0 0 8px rgba(127,123,255,.2), 0 0 18px rgba(48,255,209,.1);
  opacity:0; transform:translateY(16px); animation:fadeUp 700ms ease forwards .5s;
}
@keyframes fadeUp{ to{ opacity:1; transform:translateY(0) } }

/* Números grandes (si usas .step-number dentro del nuevo slider) */
.step-number{
  font-weight:900; line-height:1; margin-bottom:.4rem;
  background:linear-gradient(90deg,#6ecbff 0%, #7f7bff 50%, #30ffd1 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  text-shadow:0 0 12px rgba(127,123,255,.25), 0 0 28px rgba(48,255,209,.15);
  backface-visibility:hidden; transform:translateZ(0);
}

/* Controles e indicadores (nuevo slider) */
.vslider-controls{
  position:absolute; right:70px; top:50%; transform:translateY(-50%);
  display:flex; flex-direction:column; gap:16px; z-index:10;
}
.vslider-arrow{
  width:48px; height:48px; border:1px solid rgba(255,255,255,.3);
  background:transparent; color:#fff; border-radius:50%; font-size:1.2rem; cursor:pointer; transition:all .3s ease;
}
.vslider-arrow:hover{ background:rgba(127,123,255,.25); border-color:#7f7bff; }

.vslider-indicators{
  position:absolute; right:25px; top:50%; transform:translateY(-50%);
  display:flex; flex-direction:column; align-items:center; gap:14px; z-index:9;
}
.vslider-indicators .dot{
  width:12px; height:12px; border-radius:50%; background:rgba(255,255,255,.25);
  cursor:pointer; transition:all .3s ease;
}
.vslider-indicators .dot.active{
  background:#7f7bff; transform:scale(1.5); box-shadow:0 0 10px rgba(127,123,255,.8);
}

/* Forzar fondo transparente total en esta sección */
#how-we-work,
.work-vertical-slider,
.work-vertical-slider .slider-container,
.work-vertical-slider .slides-wrapper,
.work-vertical-slider .work-slide,
.howwework-slider,
.vslider-container,
.vslide{
  background:transparent !important; background-color:transparent !important;
  box-shadow:none !important; border:none !important;
}
#how-we-work::before,#how-we-work::after,
.work-vertical-slider::before,.work-vertical-slider::after,
.work-slide::before,.work-slide::after,
.howwework-slider::before,.howwework-slider::after,
.vslide::before,.vslide::after{
  background:transparent !important; backdrop-filter:none !important;
}

/* Esconde cualquier “divider” ondulado/shape si existiera */
#how-we-work svg,
#how-we-work .wave-shape,
#how-we-work [class*="shape-divider"],
#how-we-work [class*="wave"]{
  display:none !important;
}


/* ==========================================
   MARKETING SECTION - VERSIÓN FUNCIONAL
========================================== */
.marketing-section {
  position: relative;
  height: 200vh; /* IMPORTANTE: 2 pantallas de altura */
  background: transparent;
}

.marketing-slide {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* PANTALLA 1 - TÍTULO (visible inicialmente) */
.marketing-intro {
  background: rgba(0, 0, 0, 0.95);
  z-index: 20;
  opacity: 1;
  transform: translateY(0);
}

/* PANTALLA 2 - CONTENIDO (oculto inicialmente) */
.marketing-content {
  background: rgba(0, 0, 0, 0.9);
  z-index: 10;
  opacity: 0;
  transform: translateY(50px);
  pointer-events: none;
}

/* CUANDO SE ACTIVA EL SCROLL */
.marketing-section.scrolled .marketing-intro {
  opacity: 0;
  transform: translateY(-100px);
  pointer-events: none;
}

.marketing-section.scrolled .marketing-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ESTILOS DEL TÍTULO GRANDE */
.marketingPromo__title {
  font-family: "Orbitron", "Poppins", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: 0.08em;
  font-size: clamp(4rem, 12vw, 12rem);
  text-align: center;
  background: linear-gradient(135deg, #7f7bff, #30ffd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTENEDOR DEL CONTENIDO */
.promo-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 3rem;
}

.promo-left {
  padding: 2rem;
}

.promo-title {
  font-family: "Orbitron", "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.05em;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.promo-title span {
  color: #fff;
  display: block;
}

.promo-title strong {
  background: linear-gradient(135deg, #7f7bff, #30ffd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #30ffd1;
  letter-spacing: 0.1em;
}

.promo-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(220, 230, 255, 0.9);
  margin-bottom: 2rem;
}

.promo-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.promo-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(127, 123, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .promo-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .promo-image img {
    max-width: 300px;
  }
}

/* ==============================
   GLOBAL SOUND (Fondo unificado + Fix de color)
============================== */
.globalSound {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  color: #fff;
  background: transparent;
  text-align: center;
  padding: clamp(40px, 8vw, 100px) 4vw;
  z-index: 5;
  margin: 0; /* quita espacios entre secciones */
}

/* elimina cualquier pseudo fondo que cree una división */
.globalSound::before,
.globalSound::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 0;
}

.globalSound__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  opacity: 0;
  animation: fadeInSection 1.5s ease forwards;
}

@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.globalSound__title {
  font-family: "Orbitron", "Audiowide", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 0.9;
  font-size: clamp(3.5rem, 10vw, 8rem);
  background: linear-gradient(90deg, #7f7bff 0%, #30ffd1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(127, 123, 255, 0.45);
  margin: 0;
  animation: fadeInTitle 1.5s ease forwards;
}
.globalSound__title span {
  display: block;
}

.globalSound__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.globalSound__text {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  z-index: 2;
}

/* === TEXTOS PRINCIPALES === */
.globalSound__item {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
  color: #ffffff; /* blanco puro */
  text-shadow:
    0 0 10px rgba(127, 123, 255, 0.4),
    0 0 25px rgba(48, 255, 209, 0.2); /* brillo suave */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
}
.globalSound__item:nth-child(2) { animation-delay: 0.4s; }

/* subtítulo debajo (desc) */
.globalSound__item .desc {
  display: block;
  font-weight: 500;
  text-transform: none;
  color: #fefeff; /* blanco puro */
  font-size: 1em;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 12px rgba(127, 123, 255, 0.35),
    0 0 24px rgba(48, 255, 209, 0.2);
}

.globalSound__item .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, #7f7bff, #30ffd1);
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 15px rgba(127, 123, 255, 0.6);
}


/* ==== BOTÓN ==== */
.globalSound__buttonWrap {
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.glowBtn {
  position: relative;
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid rgba(127, 123, 255, 0.6);
  border-radius: 50px;
  padding: 1rem 2.8rem;
  text-decoration: none;
  background: rgba(8, 8, 12, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  box-shadow: 0 0 30px rgba(127, 123, 255, 0.2);
  overflow: hidden;
}

.glowBtn:hover {
  color: #000;
  background: linear-gradient(90deg, #7f7bff, #30ffd1);
  box-shadow: 0 0 45px rgba(127, 123, 255, 0.8);
  transform: translateY(-2px);
}

.glowBtn .btn-glow {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: radial-gradient(circle, rgba(127,123,255,0.7), transparent 70%);
  opacity: 0;
  animation: glowPulse 4s infinite ease-in-out;
  z-index: -1;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.3); }
}

@media (max-width: 768px) {
  .globalSound__title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .globalSound__text { gap: 1.2rem; }
}

/* === FIX GLOBAL PARA QUIENES NO SE VEN === */
#bg,
body#bg,
.site-shell {
  isolation: isolate;
}

.whoWeAre {
  position: relative;
  z-index: 9999 !important;
  background: transparent !important;
  pointer-events: auto;
  opacity: 1 !important;
}

.whoWeAre * {
  z-index: 10000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #fff !important;
}


/* ==========================================================
   🧹 Fix total de la línea negra entre secciones
========================================================== */

/* Quita borde inferior del hero principal y de cualquier sección adyacente */
.heroFS,
.heroFS + section,
section + .heroFS,
section,
.marketing-promo,
.marketing-promo + section {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Si el "line" viene de una variable global */
:root {
  --line: transparent !important;
}

/* Forzar continuidad de fondo entre secciones */
section,
.marketing-promo {
  background: transparent !important;
  background-color: transparent !important;
}

/* Si el borde pertenece al contenedor general del sitio */
body, .site-shell {
  border: none !important;
  background-color: transparent !important;
}


/* FIX MOBILE SPACING */
@media (max-width: 768px) {
  section,
  .whoWeAre,
  .wwdHero,
  .lab3d,
  .howwework-slider,
  .vions-collab {
    min-height: auto !important;
    padding: 60px 0 !important;
  }

  .marketing-promo,
  .globalSound,
  .pin.section {
    padding: 60px 0 !important;
  }

  .pin__copy { padding-bottom: 40px !important; }
}

/* ================= JOIN VIONS ================= */
/* ================= JOIN VIONS ================= */
.vions-join {
  min-height: 100vh;
  width: 100%;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(120, 60, 255, 0.25), transparent 70%),
    linear-gradient(180deg, #050014, #0a0224);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Contenedor */
.vions-join__inner {
  text-align: center;
  max-width: 900px;
  padding: 120px 20px;
  animation: fadeUp 1s ease forwards;
}

/* Título */
.vions-join__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #ffffff;
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* Botón futurista */
.vions-join__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 64px;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #9f6bff, #7a4cff, #b892ff);
  box-shadow:
    0 10px 40px rgba(143, 92, 255, 0.45);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Brillo animado */
.vions-join__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

/* Hover */
.vions-join__btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 0 60px rgba(143, 92, 255, 0.9),
    0 20px 60px rgba(143, 92, 255, 0.6);
}

.vions-join__btn:hover::before {
  transform: translateX(120%);
}

/* Click */
.vions-join__btn:active {
  transform: scale(0.98);
}

/* Animación entrada */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
