.contenedor {
    width: 100vw;
    height: 75vh;
    min-height: 75vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;   /* Centra horizontalmente */
    align-items: center;       /* Centra verticalmente */
    gap: 20px;
    background: transparent;
    margin: 0;
    padding: 0;
}
.BtAGLooking {
    width: 160px;
    height: 110px;
    background-color: aliceblue;
    border-color: aqua;
    color: #6c00c5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
    transition: background 0.2s;
}
.BtAGLooking .icono-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;
}
.BtAGLooking svg {
    display: block;
}