.pluginMuestraPlanos{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: quicksand, sans-serif;
}

.pluginMuestraPlanosImagenes{
    height: 540px;
    width: 800px;
    display:flex;
    transition: transform 0.5s ease;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

/*
.pluginMuestraPlanosImagenes img {
    display: none;
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
  }
    */

.pluginMuestraPlanosImagenes img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 1.5s ease;
    z-index: 0;
  }

  /* prueba boton */
  .pluginMuestraPlanosImagenes button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background:black;
    color: whitesmoke;
    border: none;
    padding: 8px 14px;
    border: solid 2px whitesmoke;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.pluginMuestraPlanosImagenes button:hover {
    background:whitesmoke;
    color: black;
    border: solid 2px black;
}


  /* transition: opacity 1s ease, transform 1.5s ease; */

  .pluginMuestraPlanosImagenes img.visible {
    opacity: 1;
    z-index: 1;
  }
  
/* transition: opacity 1s ease, transform 1.5s ease; */

  .pluginMuestraPlanosImagenes button.visible {
    opacity: 1;
    z-index: 1;
  }

.visible {
    opacity: 1;
    pointer-events: auto;
    position: relative; /* Hace que solo la visible ocupe el espacio */
  }

/*
.zoomEtapa1 {
    transform: scale(1.2);
    transform-origin: center;
  }

.zoomEtapa2 {
    transform: scale(1.5);
    transform-origin: center;
  }

.zoomEtapa3 {
    transform: scale(1.8);
    transform-origin: center;
  }

.zoomEtapa4 {
    transform: scale(2);
    transform-origin: center;
  }*/

 /* Zoom personalizado para cada imagen */


.visible.zoomEtapa0 {
  transform: scale(1.3);
  transform-origin: 50% 50%; /*Master plan */
}
.visible.zoomEtapa1 {
  transform: scale(2);
  transform-origin: 30% 80%;/* etapa 1*/ 
}
.visible.zoomEtapa2 {
  transform: scale(2);
  transform-origin: 20% 55%;/* Raices Bs As */ 
}
.visible.zoomEtapa3{
  transform: scale(2.2);
  transform-origin: 15% 20%; /* Buenos Aires*/
}
.visible.zoomEtapa4 {
  transform: scale(2);
  transform-origin: 80% 40%; /* Polo Deportivo */
}
.visible.zoomEtapa5 {
  transform: scale(2);
  transform-origin: 80% 40%; /* Futuro Desarrollo */
}
.visible.zoomEtapa6 {
  transform: scale(1.5);
  transform-origin: 20% 70%; /* Raices I */
}

.pluginMuestraPlanosBotones {
  width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
  font-family: quicksand, sans-serif;
}

.pluginMuestraPlanosDescargaPDFMayoral{
  width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.filaBotones {
  width: 800px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}

.filaBotonesDescargaPDFMayoral{
  width: 800px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}

.botonEtapa {
  height: 50px;
  width: 220px;
  font-size: 24px;
  border: black 1px;
  color: black;
  text-align: center;
  font-family: quicksand, sans-serif;
  padding: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background: #F0EBDC;
  border-radius: 8px;
}

.botonEtapa:hover,
.botonEtapa:focus,
.botonEtapa:active,
.botonEtapa::selection{
  background-color: black;
  color: whitesmoke;
}



/* Media Queries para pantallas chicas */
@media (max-width: 768px) {
    .pluginMuestraPlanos{
      width: 100%;
      margin-bottom: 40px;
  }

  .pluginMuestraPlanosImagenes{
    height: 250px;
    width: 100%;
  }

  .pluginMuestraPlanosBotones {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .filaBotones {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45%;
    flex-wrap:nowrap;
  } 

  .botonEtapa {
    height: 30px;
    width: 140px;
    font-size: 16px;
  }

}
