@charset "utf-8";
/* CSS Document */

/* Estilo para botones personalizados con imagen y texto centrado */
.boton-imagen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

/* Texto del botón */
.boton-imagen span {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Imagen responsive dentro del botón */
.boton-icono {
    width: 50px;
    height: auto;
}

/* Ajustes por tamaño de pantalla */
@media (min-width: 768px) {
    .boton-icono {
        width: 60px;
    }
}

@media (min-width: 992px) {
    .boton-icono {
        width: 70px;
    }

    .boton-imagen span {
        font-size: 1.1rem;
    }
}