.ow-button-base .sowb-button.ow-icon-placement-left .sow-icon-image {
  padding: 4px;
  height: 53px;
  width: 53px;
}

.ow-button-base {
  font-size: 32px;
}

/* ==== UI MEJORA RÁPIDA (pegar al final de tu ) ==== */

#appContainer {
  background-color: rgba(0, 0, 0, 0.75);
  color: #eaf0ff;
  border-radius: 18px;
  padding: 18px;
  margin-top: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.btn-primary,
.btn-secondary {
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

#topControls {
  position: sticky;
  top: 10px;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 12px;
}

#waveform {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}

.layer-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 12px;
}

.layer-title {
  color: #FFFFFF;
  letter-spacing: .6px;
}

.track-label {
  color: #93a4c7;
}

/* ===== BOTONES CON ICONO (PANTALLAS 1 y 2) ===== */

.optionsGrid {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin: 40px auto;
}

.optionBtninicio {
  background-color: #000000;
  /* Azul con 50% de opacidad */
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  font-size: 28px;
  line-height: 5px;
  color: #000;
  width: 254px;
}

a:link,
:visited,
:hover,
:active {
  color: #fff;
  text-decoration: none;
}

.optionBtninicio:hover {
  transform: translateY(-2px);
  border-color: #FFFFFF;
  box-shadow: 0 14px 32px rgba(0,0,0,.35);
}

.optionBtn {
  background-color: rgba(0, 0, 0, 0.75);
  /* Azul con 50% de opacidad */
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.optionBtn:hover {
  transform: translateY(-2px);
  border-color: #00C3FF;
  box-shadow: 0 14px 32px rgba(0,0,0,.35);
}

.optionBtn img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.optionBtn span {
  color: #eaf0ff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.pmpro_card_title pmpro_font-large {
  color: #eaf0ff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

/* móvil */

@media (max-width:520px) {
  .optionsGrid {
    grid-template-columns: 1fr;
  }
}

#header [data-row] {
  background-color: #000000;
}

[class*=ct-container] {
  background-color: #000000;
}

.panel-grid.panel-has-style>.panel-row-style {
  background-color: #000000;
}

.imgblend {
  visibility: visible;
  z-index: 6;
  opacity: 0.15;
}


.pmpro_form_field-password-toggle-state {color: white;}



  /* =========================
     COLORES SLIDERS (NIRVAEL)
     ========================= */

  /* Ajusta aquí tus colores */
  :root{
    --slider-track: rgba(255,255,255,.18); /* pista */
    --slider-fill:  #00C3FF;               /* “progreso” (Firefox) */
    --slider-thumb: white;               /* botón */
    --slider-thumb-border: rgba(0,0,0,.25);
  }

  /* Aplica a TODOS tus sliders */
  #masterVolumeSlider,
  .layer-slider{
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 28px;              /* zona clicable (útil en móvil) */
    background: transparent;   /* el track lo pintamos abajo */
    outline: none;
  }

  /* ===== Track (Chrome/Edge/Safari) ===== */
  #masterVolumeSlider::-webkit-slider-runnable-track,
  .layer-slider::-webkit-slider-runnable-track{
    height: 8px;
    border-radius: 999px;
    background: var(--slider-track);
  }

  /* ===== Thumb (Chrome/Edge/Safari) ===== */
  #masterVolumeSlider::-webkit-slider-thumb,
  .layer-slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--slider-thumb);
    border: 1px solid var(--slider-thumb-border);
    margin-top: -5px; /* centra el thumb con track de 8px */
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
  }

  /* ===== Track (Firefox) ===== */
  #masterVolumeSlider::-moz-range-track,
  .layer-slider::-moz-range-track{
    height: 8px;
    border-radius: 999px;
    background: var(--slider-track);
  }

  /* “Progreso” (Firefox) ===== */
  #masterVolumeSlider::-moz-range-progress,
  .layer-slider::-moz-range-progress{
    height: 8px;
    border-radius: 999px;
    background: var(--slider-fill);
  }

  /* ===== Thumb (Firefox) ===== */
  #masterVolumeSlider::-moz-range-thumb,
  .layer-slider::-moz-range-thumb{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--slider-thumb);
    border: 1px solid var(--slider-thumb-border);
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
  }

  /* Opcional: al hacer focus con teclado */
  #masterVolumeSlider:focus-visible::-webkit-slider-thumb,
  .layer-slider:focus-visible::-webkit-slider-thumb{
    outline: 3px solid rgba(0,195,255,.25);
    outline-offset: 3px;
  }

.track-label {
    display: none;
}


  /******************************************************************************************************************/


/* =====================================================
   NIRVAEL DESIGN SYSTEM
   Prefix único: nir-
   Para WordPress > CSS adicional
===================================================== */

.nir-page{
  --nir-cyan:#00c3ff;
  --nir-blue:#2d7dff;
  --nir-purple:#7b61ff;
  --nir-text:#f4fbff;
  --nir-muted:#a9bed6;
  --nir-line:rgba(180,215,255,.18);
  --nir-glass:rgba(6,14,28,.72);

  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--nir-text);
  background:#000;
  overflow:hidden;
  border-radius:34px;
}

.nir-page *{
  box-sizing:border-box;
}

.nir-wrap{
  width:min(1180px,calc(100% - 28px));
  margin:0 auto;
}

/* LOGO */

.nir-logo{
  text-align:center;
  padding:42px 0 10px;
}

.nir-logo img,
.nir-hero-logo{
  width:min(280px,70vw);
  height:auto;
  display:inline-block;
}

/* HERO */

.nir-hero{
  min-height:720px;
  display:flex;
  align-items:center;
  text-align:center;
  padding:40px 0 90px;
}

.nir-hero-content{
  max-width:950px;
  margin:0 auto;
}

/* TEXT */

.nir-eyebrow,
.nir-kicker{
  color:var(--nir-cyan);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}

.nir-kicker{
  display:inline-flex;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid var(--nir-line);
  background:rgba(255,255,255,.04);
  margin-bottom:26px;
}

.nir-title,
.nir-h2{
  background:linear-gradient(
    90deg,
    var(--nir-cyan) 0%,
    #ffffff 45%,
    #d8e8ff 60%,
    var(--nir-purple) 100%
  );
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent !important;
}

.nir-title{
  font-size:clamp(48px,8vw,104px);
  line-height:1.04;
  margin:0 0 28px;
  font-weight:850;
  letter-spacing:-.07em;
  padding-bottom:.1em;
}

.nir-h2{
  font-size:clamp(34px,5vw,62px);
  line-height:1.14;
  margin:0 0 18px;
  letter-spacing:-.045em;
  font-weight:800;
  padding-bottom:.1em;
}

.nir-subtitle{
  max-width:760px;
  margin:0 auto 36px;
  color:var(--nir-muted);
  font-size:clamp(18px,2.2vw,25px);
  line-height:1.55;
}

.nir-p{
  color:var(--nir-muted);
  font-size:18px;
  line-height:1.7;
  margin:0;
}

/* BUTTONS */

.nir-buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.nir-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  text-decoration:none !important;
  font-weight:750;
  font-size:15px;
  transition:transform .25s ease,box-shadow .25s ease;
}

.nir-btn:hover{
  transform:translateY(-2px);
}

.nir-btn-primary{
  background:linear-gradient(135deg,var(--nir-cyan),var(--nir-blue));
  color:#fff !important;
  box-shadow:0 18px 44px rgba(0,195,255,.24);
}

.nir-btn-secondary{
  border:1px solid var(--nir-line);
  color:var(--nir-text) !important;
  background:rgba(255,255,255,.045);
}

/* SECTIONS */

.nir-section{
  padding:82px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

.nir-section-head{
  max-width:790px;
  margin:0 auto 44px;
  text-align:center;
}

/* GRIDS */

.nir-grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.nir-grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.nir-grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.nir-wide{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:center;
}

/* CARDS */

.nir-card{
  border:1px solid var(--nir-line);
  border-radius:28px;
  padding:30px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025)),
    var(--nir-glass);
  box-shadow:0 20px 70px rgba(0,0,0,.18);
}

.nir-card h3{
  margin:0 0 12px;
  font-size:23px;
  letter-spacing:-.02em;
  color:#fff;
}

.nir-card p{
  margin:0;
  color:var(--nir-muted);
  line-height:1.65;
  font-size:16px;
}

.nir-icon{
  width:50px;
  height:50px;
  border-radius:17px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  background:linear-gradient(
    135deg,
    rgba(0,195,255,.22),
    rgba(123,97,255,.22)
  );
  border:1px solid rgba(255,255,255,.14);
  font-size:24px;
}

/* SIMPLE BLOCKS */

.nir-box{
  padding:24px;
  border-radius:26px;
  border:1px solid var(--nir-line);
  background:rgba(255,255,255,.04);
}

.nir-box-center{
  text-align:center;
}

.nir-box strong{
  display:block;
  font-size:18px;
  margin-bottom:8px;
  color:#fff;
}

.nir-box span{
  display:block;
  color:var(--nir-muted);
  line-height:1.55;
  font-size:15px;
}

/* STEPS */

.nir-steps{
  counter-reset:nir-step;
}

.nir-step{
  position:relative;
  padding:26px;
  border-radius:26px;
  border:1px solid var(--nir-line);
  background:rgba(255,255,255,.04);
}

.nir-step::before{
  counter-increment:nir-step;
  content:"0" counter(nir-step);
  display:block;
  color:var(--nir-cyan);
  font-weight:800;
  margin-bottom:18px;
  letter-spacing:.12em;
}

.nir-step h3{
  margin:0 0 10px;
  font-size:20px;
  color:#fff;
}

.nir-step p{
  margin:0;
  color:var(--nir-muted);
  line-height:1.6;
}

/* QUOTE */

.nir-quote{
  text-align:center;
  padding:80px 34px;
  border-radius:38px;
  background:rgba(255,255,255,.045);
  border:1px solid var(--nir-line);
}

.nir-quote p{
  max-width:900px;
  margin:0 auto;
  font-size:clamp(30px,4vw,58px);
  line-height:1.12;
  letter-spacing:-.045em;
  font-weight:780;
  color:#fff;
}

/* ORB / VISUAL */

.nir-orb{
  position:relative;
  min-height:430px;
  border-radius:38px;
  border:1px solid var(--nir-line);
  background:#050505;
  overflow:hidden;
}

.nir-orb::before,
.nir-orb::after{
  content:"";
  position:absolute;
  border-radius:50%;
  inset:22%;
  border:1px solid rgba(255,255,255,.13);
  animation:nirPulse 7s ease-in-out infinite;
}

.nir-orb::after{
  inset:34%;
  animation-delay:-2.4s;
}

@keyframes nirPulse{
  0%,100%{transform:scale(.94);opacity:.42}
  50%{transform:scale(1.08);opacity:.9}
}

/* FAQ */

.nir-faq{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:12px;
}

.nir-faq details{
  border:1px solid var(--nir-line);
  border-radius:22px;
  background:rgba(255,255,255,.04);
  padding:20px 22px;
}

.nir-faq summary{
  cursor:pointer;
  font-weight:750;
  font-size:18px;
  color:#fff;
}

.nir-faq p{
  color:var(--nir-muted);
  line-height:1.65;
  margin:14px 0 0;
}

/* FINAL */

.nir-final{
  text-align:center;
  padding:90px 0 100px;
  border-top:1px solid rgba(255,255,255,.08);
}

.nir-final p{
  max-width:720px;
  margin:0 auto 32px;
  color:var(--nir-muted);
  font-size:19px;
  line-height:1.7;
}

/* HELPERS */

.nir-text-center{
  text-align:center;
}

.nir-mt-24{
  margin-top:24px;
}

.nir-white{
  color:#fff !important;
}

/* RESPONSIVE */

@media(max-width:900px){

  .nir-grid-2,
  .nir-grid-3,
  .nir-grid-4,
  .nir-wide{
    grid-template-columns:1fr;
  }

  .nir-logo{
    padding-top:30px;
  }

  .nir-hero{
    min-height:auto;
    padding:40px 0 70px;
  }

  .nir-section{
    padding:58px 0;
  }

  .nir-orb{
    min-height:300px;
  }
}

/*------------------------------------------------------------------------*/

/* H1 para páginas Activity / State fuera de .nir-page */
.nir-simple-title{
  font-size:clamp(42px,7vw,82px);
  line-height:1.04;
  margin:40px 0 50px;
  font-weight:850;
  letter-spacing:-.07em;
  padding-bottom:.1em;

  background:linear-gradient(
    90deg,
    #00c3ff 0%,
    #ffffff 45%,
    #d8e8ff 60%,
    #7b61ff 100%
  );
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:#ffffff;
}