/* INFO: Estilos para la galería de servicios */
.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e2fdc6;
    z-index: 9999;
    overflow: auto;
    padding-bottom: 40px;
}

.galeria-overlay h2 {
    color: #ff0000;
    text-align: center;
    margin: 20px 0 30px 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.galeria-overlay h2 span {
    display: inline-block;
    margin: 0 10px;
    color: #aaaaaa;
    font-size: 75%;
}

/* INFO: Estilos para el contenedor de imágenes */
#imagenes_ {
    margin: 0 auto;
    display: block;
    width: 520px;
}

#imagenes_ ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 520px;
    height: auto;
}

#imagenes_ li {
    float: left;
    position: relative;
    margin: 5px;
    max-width: 120px;
    min-width: 120px;
    max-height: 120px;
    min-height: 120px;
    display: inline-block;
    list-style-type: none;
}

#imagenes_ li div {
    position: relative;
    width: 120px;
    height: 120px;
}

#imagenes_ a.fancybox {
    display: block;
    position: relative;
    width: 120px;
    height: 120px;
}

/* INFO: Estilos para las imágenes dentro de la galería */
#imagenes_ a.fancybox img {
    width: 110px;
    height: 110px;
    position: absolute;
}

/* INFO: Estilo para el botón de volver */
.btn-volver {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: #007f61;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Average', serif;
    font-size: 12px;
    z-index: 10000;
    text-transform: uppercase;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.btn-volver:hover {
    background-color: #006b52;
}

/* INFO: Mejoras para dispositivos móviles */
@media (max-width: 767px) {
    #imagenes_ {
        width: 400px !important;
    }
    
    #imagenes_ ul {
        width: 400px !important;
    }
    
    #imagenes_ li {
        max-width: 100px !important;
        min-width: 100px !important;
        max-height: 100px !important;
        min-height: 100px !important;
    }
    
    #imagenes_ li div {
        width: 100px !important;
        height: 100px !important;
    }
    
    .galeria-overlay h2 {
        font-size: 20px;
        margin: 15px 0 20px 0;
    }
}
