* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*html, body {
  height: 100%;
  font-family: sans-serif;
}*/

.contenedor {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.left {
  width: 60%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.image-container img {
  max-width: 90%;
  max-height: 90%;
}

.right {
  margin-left: 60%;
  width: 40%;
  overflow-y: auto;
  padding: 130px 20px 20px 20px;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.menu button {
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

.content {
  height: auto;
}

.color-selector {
  display: flex;
  gap: 30px;
  padding: 20px;
  justify-content: center;
  align-items: center;
}

.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.color-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border 0.3s ease, transform 0.2s ease;
}

.color-circle:hover {
  transform: scale(1.1);
  border: 3px solid #333;
}

.color-label {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  font-family: sans-serif;
}

@media (max-width: 600px) {
  .color-selector {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .contenedor {
    flex-direction: column;
  }

  .left {
    width: 100%;
    height: 30vh;
    position: fixed;
    top: 5vh;
    left: 0;
    display: flex;
    justify-content: center;   /* Centrado horizontal */
    align-items: flex-end;     /* Alineado abajo vertical */
    padding-bottom: 10px;      /* Espacio opcional con el borde inferior */
  }

  .right {
    margin-left: 0;
    margin-top: 35vh;
    width: 100%;
    height: 70vh;
    overflow-y: auto;
    padding-top: 20px;
  }
}

/* ===== SAFE VOLTIKA SLIDER ===== */

#voltika-slider-wrapper{
    position:relative;
    width:100%;
    height:100%;
    min-height:calc(100vh - 75px);
    overflow:hidden;
}

.voltika-slider{
    display:flex;
    width:100%;
    height:100%;
    transition: transform .4s ease;
}

.voltika-screen{
    min-width:100%;
    height:100%;
    overflow-y:auto;
    padding:120px 20px 75px;
}

/* DOT NAV SAFE */
.voltika-dot-nav{
    position:fixed;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:999999;
}

.voltika-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(0,0,0,.3);
    border:2px solid white;
}

.voltika-dot.active{
    background:white;
    transform:scale(1.2);
}

/* ===== STEP BAR REAL STYLE ===== */

.voltika-dot-nav{
    position:fixed;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    width:80%;
    max-width:600px;
    z-index:999999;
}

/* Línea base gris */
.voltika-steps-track{
    position:relative;
    width:100%;
    height:4px;
    background:#dcdcdc;
}

/* Línea progreso verde */
.voltika-steps-progress{
    position:absolute;
    top:0;
    left:0;
    height:4px;
    background:#7ED321;
    width:0%;
    transition:.4s ease;
}

/* Contenedor circulos */
.voltika-steps-circles{
    position:absolute;
    top:-14px;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
}

/* Circulos */
.voltika-dot{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#dcdcdc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:white;
    font-size:15px;
    transition:.3s;
}

/* Activo */
.voltika-dot.active{
    background:#7ED321;
}

/* Completado */
.voltika-dot.completed{
    background:#7ED321;
}
