/* .dropzone {
    border: 4px dashed blue;
    margin-bottom: 30px;
}

.dz-button {
    text-align: center;
    justify-content: center;
} */

.dropzone {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}


#mi-contenedor {
    background-image: url('../img/BeforeLoad.png');
    background-size: cover;
    background-position: center;
}

.infoAP {
    text-align: justify;
}

/* Estilos para el contenedor de la imagen y el texto */
.imagen-container {
    position: relative;
    overflow: hidden;
}

/* Estilos para la imagen y el texto en el estado normal */
.image-wrapper {
    position: relative;
    transition: transform 0.3s ease;
}

/* Estilos para el texto que se muestra en el hover */
.hover-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(252, 0, 0, 0.829);
    color: #fff;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
}

.hover-textCj {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(252, 193, 0, 0.904);
    color: #000000;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
}

/* Efecto de zoom en hover */
.image-wrapper:hover {
    transform: scale(1.1);
}

/* Mostrar texto en hover */
.image-wrapper:hover .hover-text {
    opacity: 1;
}

.image-wrapper:hover .hover-textCj {
    opacity: 1;
}





