.ListaDesplegable {
    display: none;
	margin-bottom: 10px;
}

.show {
    display: block;
}

.boton-desplegable-pelu {
    width: 100%;
    padding: 8px 12px;
    background-color: #e6e6e6;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    border: none;
    /* Agregamos esta línea para eliminar el borde */
    outline: none;
    /* Agregamos esta línea para eliminar el contorno de enfoque */
    margin-top: 2px;
}

.boton-desplegable-pelu:hover {
    transform: scale(1.02);
    z-index: 100;
    background: #f4d4b4;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
}

.boton-desplegable-pelu:active {
    background-color: #f4d4b4;
}

.boton-desplegable-estetica {
    width: 100%;
    padding: 8px 12px;
    background-color: #e6e6e6;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    border: none;
    /* Agregamos esta línea para eliminar el borde */
    outline: none;
    /* Agregamos esta línea para eliminar el contorno de enfoque */
    margin-top: 2px;
}

.boton-desplegable-estetica:hover {
    transform: scale(1.02);
    z-index: 100;
    background: #d4ecec;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
}

.boton-desplegable-estetica:active {
    background-color: #d4ecec;
}