/* =========================
   FORZAR ANCHO REAL EN ELEMENTOR
========================= */
.elementor-widget-lx_slider,
.elementor-widget-lx_slider.elementor-widget-width-initial,
.elementor-widget-lx_slider .elementor-widget-container {
  width: 100% !important;
  max-width: 100% !important;
}

/* =========================
   WRAPPER
========================= */
.lx-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* =========================
   SLIDE
========================= */
.lx-slide {
  display: none;
  position: relative;
  width: 100%;
  min-height: 320px;
}

.lx-slide.is-active {
  display: block;
}

/* =========================
   CONTENEDOR TEXTO
========================= */
.lx-slide-inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  z-index: 2;
}

/* BLOQUE A LA IZQUIERDA */
.lx-align-left {
  margin-right: auto;
  margin-left: 0;
}

/* BLOQUE A LA DERECHA */
.lx-align-right {
  margin-left: auto;
  margin-right: 0;
}

/* =========================
   TEXTO
========================= */
.lx-slide-text {
  position: relative;
  z-index: 2;
}

/* SEPARADOR */
.lx-separator {
  width: 120px;
  height: 3px;
  background: #39b54a;
  margin: 12px 0 18px;
}

/* =========================
   AUTO
========================= */
.lx-slider-vehicle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 220px;
  transform: translateY(-50%);
  z-index: 4;
  pointer-events: none;
}

/* =========================
   WIPE
========================= */
.lx-wipe {
    position: absolute;
  top: 0;
  width: 420px; /* 👈 MÁS GRANDE que el auto completo */
  height: 100%;
  background: #ffffff;
  z-index: 3;
  pointer-events: none;
}

/* =========================
   Z-INDEX
========================= */
.lx-front .lx-slider-vehicle {
  z-index: 5;
}

.lx-back .lx-slider-vehicle {
  z-index: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .lx-slide.is-active {
    min-height: auto;
  }

  .lx-slide-inner {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .lx-slider-vehicle {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto;
    transform: none !important;
    margin: 20px auto 0;
    display: block;
  }

  .lx-wipe {
    display: none;
  }
}