:root{
  --bg:#05060a;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.70);
  --line:rgba(255,255,255,.10);

  --pink:#ff2d86;
  --pink2:#ff4aa1;

  --violet:#8b5cf6;     /* morado */
  --violet2:#a78bfa;

  --cyan:#22d3ee;

  --shadow: 0 26px 80px rgba(0,0,0,.55);
  --r: 18px;
  --container: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

/* Fondo partículas */
.bg-wrap{position:fixed; inset:0; z-index:-3; pointer-events:none;}
#fx{width:100%; height:100%; display:block;}
.vignette{
  position:fixed; inset:-2px; z-index:-2; pointer-events:none;
  background:
    radial-gradient(900px 600px at 50% 45%, rgba(0,0,0,.0), rgba(0,0,0,.38) 55%, rgba(0,0,0,.72) 88%),
    radial-gradient(1200px 900px at 50% 110%, rgba(255,45,134,.06), transparent 55%);
}

/* Container */
.container{
  width:min(var(--container), calc(100% - 44px));
  margin:0 auto;
}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5,6,10,.85), rgba(5,6,10,.45));
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
  text-decoration:none;
  color:inherit;
}
.brand:hover{opacity:.95}
.brand:active{transform:translateY(0.5px)}

.logoImg{
  width:78px;
  height:78px;
  border-radius:16px;
  object-fit:cover;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:
    0 18px 60px rgba(0,0,0,.35),
    0 18px 55px rgba(255,45,134,.14);
}

.brandText{display:flex; flex-direction:column; line-height:1.05}
.brandText b{letter-spacing:.6px; font-size:14px}
.brandText span{font-size:11px; color:rgba(234,240,255,.62); letter-spacing:.6px}

nav ul{
  list-style:none;
  display:flex;
  gap:24px;
  padding:0;margin:0;
  align-items:center;
}
nav a{
  color:rgba(234,240,255,.78);
  text-decoration:none;
  font-size:14px;
  padding:10px 10px;
  border-radius:10px;
  transition:.2s ease;
  position:relative;
  white-space:nowrap;
}
nav a:hover{color:var(--text); background:rgba(255,255,255,.05)}
nav a.active{color:var(--text)}
nav a.active:after{
  content:"";
  position:absolute; left:10px; right:10px; bottom:4px;
  height:2px; border-radius:2px;
  background: linear-gradient(90deg, var(--pink), rgba(255,45,134,.35));
}

.navRight{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  min-width: 260px;
}

.link{
  color:rgba(234,240,255,.82);
  text-decoration:none;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  transition:.2s ease;
  border:1px solid transparent;
}
.link:hover{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.08);
}

.btn{
  appearance:none;
  border:0;
  cursor:pointer;
  padding:12px 16px;
  border-radius:14px;
  font-weight:750;
  font-size:14px;
  color:#0b0f17;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  box-shadow: 0 18px 55px rgba(255,45,134,.25);
  transition:.2s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); filter:saturate(1.05)}
.btn:active{transform: translateY(0px); filter:saturate(.98)}
.btn svg{width:16px;height:16px}

.btnOutline{
  color:var(--text);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:none;
  font-weight:700;
}

.mobileToggle{
  display:none;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
}

.mobileMenu{
  display:none;
  padding: 10px 0 16px;
}
.mobileMenu a{
  display:block;
  padding:12px 12px;
  margin:6px 0;
  border-radius:14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration:none;
  color: rgba(234,240,255,.88);
}

/* Main */
main{padding: 56px 0 70px}

/* HERO centrado */
.hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:18px;
  padding: 64px 0 12px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 65px rgba(0,0,0,.35);
  color:rgba(234,240,255,.86);
  font-size:13px;
  margin:0 auto;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.14);
}

h1{
  margin: 10px 0 8px;
  font-size: clamp(44px, 5.2vw, 86px);
  line-height:1.02;
  letter-spacing:-1.6px;
}
.white{color:var(--text)}
.pink{color:var(--pink)}

/* Cambiar color a morado cada 3s (Streaming / Profesional) */
.pulseWord{
  transition: color .35s ease, text-shadow .35s ease, filter .35s ease;
}
.pulseViolet{
  color: var(--violet) !important;
  text-shadow: 0 10px 40px rgba(139,92,246,.20);
  filter: saturate(1.1);
}

.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin:14px 0 14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(234,240,255,.86);
  font-size:12.5px;
}
.badge svg{width:14px;height:14px; opacity:.9}

.muted{
  color: var(--muted);
  margin:0 auto;
  max-width: 66ch;
  font-size:16px;
  line-height:1.7;
}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:14px;
}
.ctaRow .btn{min-width:210px; justify-content:center}
.ctaRow .btnOutline{min-width:240px; justify-content:center}

/* Rotador Canal/Agencia... */
.rotWord{
  display:inline-block;
  padding: .06em .36em;
  border-radius: .35em;
  background: rgba(255,45,134,.12);
  border: 1px solid rgba(255,45,134,.25);
  box-shadow: 0 14px 45px rgba(255,45,134,.10);
  transform-origin: 50% 70%;
  white-space:nowrap;
}
.fadeOut{animation: fadeOut .28s ease forwards}
.fadeIn{animation: fadeIn .34s ease forwards}
@keyframes fadeOut{to{opacity:0; transform: translateY(6px) scale(.98)}}
@keyframes fadeIn{from{opacity:0; transform: translateY(-6px) scale(.98)} to{opacity:1; transform: translateY(0) scale(1)}}

/* Secciones */
section.block{
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.sectionTitle{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.3px;
}

.grid2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.card{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  padding:14px;
  box-shadow: 0 18px 65px rgba(0,0,0,.25);
}

/* MODAL */
.modalOverlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:2000;
}
.modalOverlay.show{display:flex}

.modalCard{
  width:min(520px, 100%);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,45,134,.12), transparent 55%),
    radial-gradient(800px 520px at 90% 10%, rgba(139,92,246,.12), transparent 55%),
    linear-gradient(180deg, rgba(22,24,36,.92), rgba(12,13,18,.92));
  box-shadow: 0 35px 120px rgba(0,0,0,.75);
  overflow:hidden;
  position:relative;
  transform: translateY(10px) scale(.98);
  opacity:0;
  transition: .22s ease;
}
.modalOverlay.show .modalCard{
  transform: translateY(0) scale(1);
  opacity:1;
}

.modalTop{
  padding:16px 18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.tagPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.4px;
  color:rgba(255,255,255,.92);
  background: rgba(255,45,134,.18);
  border:1px solid rgba(255,45,134,.30);
}

.closeBtn{
  width:34px;height:34px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:rgba(234,240,255,.85);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:.2s ease;
}
.closeBtn:hover{background: rgba(255,255,255,.10)}
.closeBtn:active{transform: scale(.98)}

.modalBody{padding: 10px 18px 18px}

.modalTitle{
  margin: 10px 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing:-.2px;
  text-align:center;
  color: rgba(255,255,255,.92);
}
.modalSub{
  text-align:center;
  color: rgba(234,240,255,.70);
  font-size: 13.5px;
  margin:0 0 14px;
}

.formGrid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:10px;
}
.label{
  font-size:12px;
  color: rgba(234,240,255,.70);
  font-weight:700;
}
.req{color: var(--pink); font-weight:900}

.input, .select{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  outline:none;
  transition:.2s ease;
}
.input::placeholder{color: rgba(234,240,255,.35)}
.input:focus, .select:focus{
  border-color: rgba(255,45,134,.35);
  box-shadow: 0 0 0 4px rgba(255,45,134,.12);
}

.hint{
  font-size:11.5px;
  color: rgba(234,240,255,.50);
  margin-top:6px;
}

.objectiveWrap{
  margin-top:14px;
  text-align:center;
  color: rgba(234,240,255,.75);
  font-size:12.5px;
  font-weight:800;
}

.choiceRow{
  margin-top:10px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.choice{
  cursor:pointer;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding:10px 10px;
  text-align:left;
  transition:.2s ease;
  display:flex;
  gap:10px;
  align-items:flex-start;
  user-select:none;
}
.choice:hover{background: rgba(255,255,255,.07)}
.choice.active{
  border-color: rgba(255,45,134,.35);
  box-shadow: 0 0 0 4px rgba(255,45,134,.10);
  background: rgba(255,45,134,.08);
}

.choiceIcon{
  width:28px;height:28px;
  border-radius:10px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  margin-top:2px;
}

.choiceText b{display:block; font-size:13px; color:rgba(255,255,255,.92)}
.choiceText span{display:block; font-size:11.5px; color:rgba(234,240,255,.55); margin-top:2px}

.bigAction{
  margin-top:14px;
  width:100%;
  border:0;
  cursor:pointer;
  border-radius: 14px;
  padding:14px 14px;
  font-weight:900;
  font-size:14px;
  color:#0b0f17;
  background: linear-gradient(90deg, var(--pink), #ff6b3d);
  box-shadow: 0 22px 65px rgba(255,45,134,.22);
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  transition:.2s ease;
}
.bigAction:hover{transform: translateY(-1px)}
.bigAction:active{transform: translateY(0px); filter:saturate(.98)}

/* Responsive */
@media (max-width: 980px){
  nav ul{gap:10px}
  .brand{min-width:auto}
  .navRight{min-width:auto}
}
@media (max-width: 760px){
  nav{display:none}
  .mobileToggle{display:inline-flex}
  .navRight .link{display:none}
  .container{width:min(var(--container), calc(100% - 28px))}
  main{padding: 34px 0 54px}
  .hero{padding: 44px 0 8px}
  .ctaRow .btn, .ctaRow .btnOutline{width:100%; min-width:unset}
  .grid2{grid-template-columns:1fr}
  .formGrid2{grid-template-columns:1fr}
  .choiceRow{grid-template-columns:1fr}
}
@media (max-width: 760px){
  header{ backdrop-filter:none !important; }
  .modalOverlay{ backdrop-filter:none !important; }
}
@media (max-width: 760px){
  header{ backdrop-filter:none !important; }
  .modalOverlay{ backdrop-filter:none !important; }
}