/* Marcadores invisibles (puedes dejarlos en filas vacías) */
.rk-hscroll-marker{
  width:0;
  height:0;
  overflow:hidden;
}

/* --- Full-bleed breakout (evita márgenes del container del theme/WPBakery) --- */
.rk-hscroll-section{
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* El bloque que se fija (pin) */
.rk-hscroll-pin{
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Carril horizontal */
.rk-hscroll-track{
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: auto;
  will-change: transform;
}

/* Cada “panel” es una fila vc_row movida al carril */
.rk-hscroll-panel{
  flex: 0 0 100vw;
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100vh;
  position: relative;
  overflow: hidden; /* cambia a visible si necesitas elementos que sobresalgan */
  margin: 0 !important;
}

/* Evita padding lateral típico de containers */
.rk-hscroll-panel,
.rk-hscroll-panel .vc_row,
.rk-hscroll-panel .vc_row-fluid{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Columnas internas: deja que ocupen todo */
.rk-hscroll-panel > .vc_row,
.rk-hscroll-panel > .vc_row-fluid{
  width: 100vw !important;
  max-width: 100vw !important;
}

/* Asegura altura completa */
.rk-hscroll-panel .vc_row{
  height: 100%;
}
